diff options
author | alecpl <alec@alec.pl> | 2010-12-01 10:49:20 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-12-01 10:49:20 +0000 |
commit | 53604a0550f9940584b7e4d4260b96714ae0edbf (patch) | |
tree | ef9c4350d314315c1b0212617a2ffbd05c39a554 /program/steps/mail/sendmail.inc | |
parent | b46edc0f906e00f8cff42541f49f0d58181c836c (diff) |
- Fix setting charset of attachment filenames (#1487122)
Diffstat (limited to 'program/steps/mail/sendmail.inc')
-rw-r--r-- | program/steps/mail/sendmail.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index 796e7782b..95b490969 100644 --- a/program/steps/mail/sendmail.inc +++ b/program/steps/mail/sendmail.inc @@ -513,9 +513,10 @@ if (is_array($_SESSION['compose']['attachments'])) ($attachment['data'] ? false : true), ($ctype == 'message/rfc822' ? '8bit' : 'base64'), ($ctype == 'message/rfc822' ? 'inline' : 'attachment'), - $message_charset, '', '', + '', '', '', $CONFIG['mime_param_folding'] ? 'quoted-printable' : NULL, - $CONFIG['mime_param_folding'] == 2 ? 'quoted-printable' : NULL + $CONFIG['mime_param_folding'] == 2 ? 'quoted-printable' : NULL, + '', RCMAIL_CHARSET ); } } |