Skip to content

Commit

Permalink
11.0.2: * [Mail/Watchers] Fixed an issue with specific conditions whe…
Browse files Browse the repository at this point in the history
…re an inbound message from a worker email address could be improperly identified as a watcher relay and remain in the email parser fail queue.
  • Loading branch information
jstanden committed Dec 19, 2024
1 parent e22f2f1 commit 3865084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/app/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ public function isWorkerRelayReply() {

// Try matching references
foreach(array_keys($target_message_ids) as $ref) {
if($ref && @preg_match('#\<(.*?)\@cerb\d{0,1}\>#', $ref)) {
if($ref && @preg_match('#\<(.*?)\.([a-f0-9]{8})\@cerb\>#', $ref)) {
return $ref;
}
}
Expand Down

0 comments on commit 3865084

Please sign in to comment.