From ace5df96f846d02ef044d67c89667d7d23c47f75 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Mon, 6 Mar 2017 20:21:08 -0800 Subject: [PATCH] =?utf8?q?fix=20(well,=20kludge=20around)=20=3D=3FUTF-8=20?= =?utf8?q?Subject:,=20RT#37098?= --- httemplate/misc/email-customers.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/httemplate/misc/email-customers.html b/httemplate/misc/email-customers.html index 981d0e6da..0ed5ef380 100644 --- a/httemplate/misc/email-customers.html +++ b/httemplate/misc/email-customers.html @@ -355,7 +355,11 @@ if ( !$cgi->param('preview') ) { my $cust_msg = $msg_template->prepare(%msgopts); $from = $cust_msg->env_from; $html_body = $cust_msg->preview; - if ( $cust_msg->header =~ /^subject: (.*)/mi ) { +#hmm. this came in with the #37098 rewrite, but isn't on v3 :/ +# causing problems with mangling subject of unrelated things +# should probably decode instead of ignore the UTF-8 thing, but +# this at least masks the ugliness for now :/ + if ( $cust_msg->header =~ /^subject: (.*)/mi && $1 !~ /^\=\?UTF-8/ ) { $subject = $1; } } -- 2.11.0