Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15416441
D15575.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D15575.diff
View Options
diff --git a/src/applications/metamta/controller/PhabricatorMetaMTAMailgunReceiveController.php b/src/applications/metamta/controller/PhabricatorMetaMTAMailgunReceiveController.php
--- a/src/applications/metamta/controller/PhabricatorMetaMTAMailgunReceiveController.php
+++ b/src/applications/metamta/controller/PhabricatorMetaMTAMailgunReceiveController.php
@@ -28,14 +28,14 @@
pht('Mail signature is not valid. Check your Mailgun API key.'));
}
- $user = $request->getUser();
-
- $raw_headers = $request->getStr('headers');
- $raw_headers = explode("\n", rtrim($raw_headers));
+ $raw_headers = $request->getStr('message-headers');
$raw_dict = array();
- foreach (array_filter($raw_headers) as $header) {
- list($name, $value) = explode(':', $header, 2);
- $raw_dict[$name] = ltrim($value);
+ if (strlen($raw_headers)) {
+ $raw_headers = phutil_json_decode($raw_headers);
+ foreach ($raw_headers as $raw_header) {
+ list($name, $value) = $raw_header;
+ $raw_dict[$name] = $value;
+ }
}
$headers = array(
@@ -65,9 +65,25 @@
}
}
$received->setAttachments($file_phids);
- $received->save();
- $received->processReceivedMail();
+ try {
+ $received->save();
+ $received->processReceivedMail();
+ } catch (Exception $ex) {
+ // We can get exceptions here in two cases.
+
+ // First, saving the message may throw if we have already received a
+ // message with the same Message ID. In this case, we're declining to
+ // process a duplicate message, so failing silently is correct.
+
+ // Second, processing the message may throw (for example, if it contains
+ // an invalid !command). This will generate an email as a side effect,
+ // so we don't need to explicitly handle the exception here.
+
+ // In these cases, we want to return HTTP 200. If we do not, MailGun will
+ // re-transmit the message later.
+ phlog($ex);
+ }
$response = new AphrontWebpageResponse();
$response->setContent(pht("Got it! Thanks, Mailgun!\n"));
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Mar 21, 11:06 AM (4 d, 16 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7715389
Default Alt Text
D15575.diff (2 KB)
Attached To
Mode
D15575: Improve error and header behaviors for Mailgun received mail webhook
Attached
Detach File
Event Timeline
Log In to Comment