Christian Boltz 11 years ago
parent 8e3c1822a6
commit ae2ed69138

@ -17,6 +17,7 @@ Changes since 2.3.6 release
- fix creating superadmin in setup.php with MariaDB (more strict SQL) - fix creating superadmin in setup.php with MariaDB (more strict SQL)
- trim() localpart in create-mailbox to avoid mailbox names with leading space - trim() localpart in create-mailbox to avoid mailbox names with leading space
- mark vacation_notification.notified field as latin1 to avoid overlong index - mark vacation_notification.notified field as latin1 to avoid overlong index
- vacation.pl: encode subject
Version 2.3.6 - 2013/01/02 - SVN r1417 (postfixadmin-2.3 branch) Version 2.3.6 - 2013/01/02 - SVN r1417 (postfixadmin-2.3 branch)
---------------------------------------------------------------- ----------------------------------------------------------------

@ -445,9 +445,8 @@ sub send_vacation_email {
'headers' => 'X-Loop: Postfix Admin Virtual Vacation', 'headers' => 'X-Loop: Postfix Admin Virtual Vacation',
); );
my %mail; my %mail;
# I believe Mail::Sender qp encodes the subject, so we no longer need to.
%mail = ( %mail = (
'subject' => $subject, 'subject' => encode_mimewords($subject, 'Charset', 'UTF-8'),
'from' => $from, 'from' => $from,
'to' => $to, 'to' => $to,
'msg' => encode_base64($body) 'msg' => encode_base64($body)

Loading…
Cancel
Save