As suggested by Mike Rylander, keep the escape_email_header helper
around to avoid breaking templates that already adopted it, but make it
a no-op as the SendEmail reactor now encodes the email headers of
interest by default.
Signed-off-by: Dan Scott <dscott@laurentian.ca>
Signed-off-by: Dan Wells <dbw2@calvin.edu>
},
# encode email headers in UTF-8, per RFC2231
+ # now a no-op as we automatically encode the headers in the SendEmail
+ # reactor, but we need to leave this here to avoid breaking templates
+ # that might have once used it
escape_email_header => sub {
my $str = shift;
- $str = encode("MIME-Header", $str);
return $str;
},