Fix rejected mails not being quarantized properly if they are tagged

master
Aaron Larisch 2019-03-11 15:29:30 +01:00
parent 96d99b9faf
commit 40a826a347
1 changed files with 3 additions and 0 deletions

View File

@ -84,6 +84,9 @@ $rcpt_final_mailboxes = array();
// Loop through all rcpts
foreach (json_decode($rcpts, true) as $rcpt) {
// Remove tag
$rcpt = preg_replace('/^(.*?)\+.*(@.*)$/', '$1$2', $rcpt);
// Break rcpt into local part and domain part
$parsed_rcpt = parse_email($rcpt);