Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15433959
D10232.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
800 B
Referenced Files
None
Subscribers
None
D10232.diff
View Options
diff --git a/src/applications/metamta/storage/PhabricatorMetaMTAMail.php b/src/applications/metamta/storage/PhabricatorMetaMTAMail.php
--- a/src/applications/metamta/storage/PhabricatorMetaMTAMail.php
+++ b/src/applications/metamta/storage/PhabricatorMetaMTAMail.php
@@ -96,6 +96,15 @@
}
public function addRawTos(array $raw_email) {
+
+ // Strip addresses down to bare emails, since the MailAdapter API currently
+ // requires we pass it just the address (like `alincoln@logcabin.org`), not
+ // a full string like `"Abraham Lincoln" <alincoln@logcabin.org>`.
+ foreach ($raw_email as $key => $email) {
+ $object = new PhutilEmailAddress($email);
+ $raw_email[$key] = $object->getAddress();
+ }
+
$this->setParam('raw-to', $raw_email);
return $this;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Mar 26, 1:22 AM (1 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7561834
Default Alt Text
D10232.diff (800 B)
Attached To
Mode
D10232: Fix verbose email addresses being passed to mail adapters
Attached
Detach File
Event Timeline
Log In to Comment