Skip to content
Snippets Groups Projects
Commit 4be5782a authored by Jared Hancock's avatar Jared Hancock
Browse files

oops: Fix regressing in bounce processing

parent fbc48660
Branches
Tags v1.9.7
No related merge requests found
...@@ -657,7 +657,7 @@ class MailFetcher { ...@@ -657,7 +657,7 @@ class MailFetcher {
$vars['in-reply-to'] = @$headers['in-reply-to'] ?: null; $vars['in-reply-to'] = @$headers['in-reply-to'] ?: null;
} }
// Fetch deliver status report // Fetch deliver status report
$data['message'] = $this->getDeliveryStatusMessage($mid) ?: $this->getBody($mid); $vars['message'] = $this->getDeliveryStatusMessage($mid) ?: $this->getBody($mid);
$vars['thread-type'] = 'N'; $vars['thread-type'] = 'N';
$vars['flags']['bounce'] = true; $vars['flags']['bounce'] = true;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment