Revert "apply patch for vacation body encoding - see #288"

This reverts commit c3d3a9dbc8.

See comment at: https://github.com/postfixadmin/postfixadmin/issues/288#issuecomment-522495422
pull/259/head
David Goodwin 5 years ago
parent e8fb276c2f
commit bc273a97e4

@ -18,7 +18,7 @@
use utf8; use utf8;
use DBI; use DBI;
use Encode qw(decode encode); use Encode qw(decode);
use MIME::EncWords qw(:all); use MIME::EncWords qw(:all);
use Email::Valid; use Email::Valid;
use strict; use strict;
@ -30,6 +30,7 @@ use Email::Simple::Creator;
use Try::Tiny; use Try::Tiny;
use Log::Log4perl qw(get_logger :levels); use Log::Log4perl qw(get_logger :levels);
use File::Basename; use File::Basename;
# ========== begin configuration ========== # ========== begin configuration ==========
# IMPORTANT: If you put passwords into this script, then remember # IMPORTANT: If you put passwords into this script, then remember
@ -483,7 +484,7 @@ sub send_vacation_email {
'Content-Type' => "text/plain; charset=utf-8", 'Content-Type' => "text/plain; charset=utf-8",
'X-Loop' => 'Postfix Admin Virtual Vacation', 'X-Loop' => 'Postfix Admin Virtual Vacation',
], ],
body => encode('UTF-8', $body), body => $body,
); );
if($test_mode == 1) { if($test_mode == 1) {

Loading…
Cancel
Save