Skip to content

Commit

Permalink
Don't quote personal part of from address in attribution text
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Jul 28, 2014
1 parent 5a71ab6 commit f4a0597
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imp/lib/Prefs/AttribText.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function __construct($from, Horde_Mime_Headers $h)
'/%%/' => '%',

/* Name and email address of original sender. */
'/%f/' => $from,
'/%f/' => $from->writeAddress(array('noquote' => true)),

/* Senders email address(es). */
'/%a/' => implode(', ', $addressList),
Expand Down

0 comments on commit f4a0597

Please sign in to comment.