From 3a4e0045be4df1c3eeee74ad4d3fa2d8186dc6f6 Mon Sep 17 00:00:00 2001 From: Bob Trahan Date: Sat, 26 Jan 2013 09:14:19 -0800 Subject: [PATCH] make conpherence reply handler work Summary: it doesn't work right now. updating this regex should fix it methinks Test Plan: gotta push it live Reviewers: chad, epriestley Reviewed By: chad CC: aran, Korvin Maniphest Tasks: T2399 Differential Revision: https://secure.phabricator.com/D4663 --- .../metamta/storage/PhabricatorMetaMTAReceivedMail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/metamta/storage/PhabricatorMetaMTAReceivedMail.php b/src/applications/metamta/storage/PhabricatorMetaMTAReceivedMail.php index 65474813d8..b78cc9b5f6 100644 --- a/src/applications/metamta/storage/PhabricatorMetaMTAReceivedMail.php +++ b/src/applications/metamta/storage/PhabricatorMetaMTAReceivedMail.php @@ -93,7 +93,7 @@ final class PhabricatorMetaMTAReceivedMail extends PhabricatorMetaMTADAO { $prefixPattern = ($single_handle_prefix) ? preg_quote($single_handle_prefix, '/') . '\+' : ''; - $pattern = "/^{$prefixPattern}((?:D|T|C)\d+)\+([\w]+)\+([a-f0-9]{16})@/U"; + $pattern = "/^{$prefixPattern}((?:D|T|C|E)\d+)\+([\w]+)\+([a-f0-9]{16})@/U"; $phabricator_address = null; $receiver_name = null;