Skip to content
Snippets Groups Projects
Unverified Commit 8ad61e21 authored by Peter Rotich's avatar Peter Rotich Committed by GitHub
Browse files

Merge pull request #33 from aydreeihn/issue/mailer-typo

Mailer Typo:
parents c13f6230 7253baf2
Branches
Tags
No related merge requests found
...@@ -655,7 +655,7 @@ class EmailDataParser { ...@@ -655,7 +655,7 @@ class EmailDataParser {
//Skip virtual Delivered-To addresses //Skip virtual Delivered-To addresses
if ($source == 'delivered-to') continue; if ($source == 'delivered-to') continue;
$name = $this->mime_decode(@$addr->personal); $name = trim(@$addr->personal, '"');
$email = strtolower($addr->mailbox).'@'.$addr->host; $email = strtolower($addr->mailbox).'@'.$addr->host;
$data['recipients'][] = array( $data['recipients'][] = array(
'source' => sprintf(_S("Email (%s)"), $source), 'source' => sprintf(_S("Email (%s)"), $source),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment