diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-04-23 20:43:05 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-04-23 20:43:05 +0200 |
commit | dd5b2c5e6c1b39c151ed9f6689f97dde32b71a6e (patch) | |
tree | e380305861337dc06b323ca06f979e53bd36a75b | |
parent | 89921163138ca7318b6f1d2905a66f37c8b40ae6 (diff) | |
parent | 624031a7a1e26daba0be481165cab0da1af6be07 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/steps/mail/sendmail.inc | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -24,6 +24,7 @@ CHANGELOG Roundcube Webmail - Fix invalid page title for some folders (1489804) - Fix redundant alert message on over-size uploads (#1489817) - Fix next message display after removing a message (#1489800) +- Fix missing Mail-Followup-To header in sent mail (#1489829) RELEASE 1.0.0 ------------- diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index 01a32a12c..04ba94f5e 100644 --- a/program/steps/mail/sendmail.inc +++ b/program/steps/mail/sendmail.inc @@ -201,7 +201,7 @@ if (!empty($headers['Reply-To'])) { $headers['Mail-Reply-To'] = $headers['Reply-To']; } if ($hdr = rcube_utils::get_input_value('_followupto', rcube_utils::INPUT_POST, TRUE, $message_charset)) { - $headers['Mail-Followup-To'] = rcmail_email_input_format(); + $headers['Mail-Followup-To'] = rcmail_email_input_format($hdr); } // remember reply/forward UIDs in special headers |