Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15383224
D7284.id16399.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
885 B
Referenced Files
None
Subscribers
None
D7284.id16399.diff
View Options
Index: src/applications/metamta/storage/PhabricatorMetaMTAMail.php
===================================================================
--- src/applications/metamta/storage/PhabricatorMetaMTAMail.php
+++ src/applications/metamta/storage/PhabricatorMetaMTAMail.php
@@ -383,10 +383,13 @@
switch ($key) {
case 'from':
$from = $value;
- $actor = $actors[$from];
-
- $actor_email = $actor->getEmailAddress();
- $actor_name = $actor->getName();
+ $actor_email = null;
+ $actor_name = null;
+ $actor = idx($actors, $from);
+ if ($actor) {
+ $actor_email = $actor->getEmailAddress();
+ $actor_name = $actor->getName();
+ }
$can_send_as_user = $actor_email &&
PhabricatorEnv::getEnvConfig('metamta.can-send-as-user');
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Mar 15, 3:52 PM (3 w, 4 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7680373
Default Alt Text
D7284.id16399.diff (885 B)
Attached To
Mode
D7284: Fix issue reported from github
Attached
Detach File
Event Timeline
Log In to Comment