diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-06-03 09:57:35 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-06-03 09:57:35 +0200 |
commit | ad2ba95dcd196bf21c159c57f9198a0674f5125d (patch) | |
tree | 7faa0779c00d2b1ca6bd85a9b165263fff0cf687 | |
parent | 5df4fe56d509a5c9702506a79f32dcd81d7adc41 (diff) |
Fix so bounces addresses in Sender headers are skipped on Reply-All (#1489011)
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/steps/mail/compose.inc | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Fix so bounces addresses in Sender headers are skipped on Reply-All (#1489011) - Fix bug where serialized strings were truncated in PDO::quote() (#1489142) - Improved handling of Reply-To/Bcc addresses of identity in compose form (#1489016) - Fix displaying messages with invalid self-closing HTML tags (#1489137) diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 140554514..ebdd7a075 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -327,7 +327,8 @@ foreach ($parts as $header) { $fvalue .= $v; if ($v = $MESSAGE->headers->cc) $fvalue .= (!empty($fvalue) ? $separator : '') . $v; - if ($v = $MESSAGE->headers->get('Sender', false)) + // Use Sender header (#1489011) + if (($v = $MESSAGE->headers->get('Sender', false)) && strpos($v, '-bounces@') === false) $fvalue .= (!empty($fvalue) ? $separator : '') . $v; // When To: and Reply-To: are the same we add From: address to the list (#1489037) |