diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-04-23 20:00:04 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-04-23 20:01:16 +0200 |
commit | 847e7548d5eb74d60a3a92e8b82eddb96085a82f (patch) | |
tree | cf0d77357fddaaf9c9ab70b96765452d6bc41d74 /program/steps | |
parent | 293d61b16f5f23e163baf235764d8174a63c7346 (diff) |
Fix missing Mail-Followup-To header in sent mail (#1489829)
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/sendmail.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index 2cd897e46..293eb718b 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 |