SF.net SVN: postfixadmin:[1597] trunk/VIRTUAL_VACATION/vacation.pl
Brought to you by:
christian_boltz,
gingerdog
From: <chr...@us...> - 2013-12-01 23:31:01
|
Revision: 1597 http://sourceforge.net/p/postfixadmin/code/1597 Author: christian_boltz Date: 2013-12-01 23:30:58 +0000 (Sun, 01 Dec 2013) Log Message: ----------- vacation.pl: - encode subject https://sourceforge.net/p/postfixadmin/bugs/272/ https://sourceforge.net/p/postfixadmin/patches/119/ Modified Paths: -------------- trunk/VIRTUAL_VACATION/vacation.pl Modified: trunk/VIRTUAL_VACATION/vacation.pl =================================================================== --- trunk/VIRTUAL_VACATION/vacation.pl 2013-12-01 22:29:25 UTC (rev 1596) +++ trunk/VIRTUAL_VACATION/vacation.pl 2013-12-01 23:30:58 UTC (rev 1597) @@ -512,9 +512,8 @@ 'on_errors' => 'die', # raise exception on error ); my %mail; - # I believe Mail::Sender qp encodes the subject, so we no longer need to. %mail = ( - 'subject' => $subject, + 'subject' => encode_mimewords($subject, 'Charset', 'UTF-8'), 'from' => $from, 'fake_from' => $friendly_from . " <$from>", 'to' => $to, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |