Commit 79cd8e82 authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Bug 405453: Make Bugzilla encode all outgoing email headers.

Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=himorin, a=mkanat
parent a43231dd
...@@ -96,8 +96,11 @@ sub MessageToMTA { ...@@ -96,8 +96,11 @@ sub MessageToMTA {
$email->header_set('MIME-Version', '1.0') if !$email->header('MIME-Version'); $email->header_set('MIME-Version', '1.0') if !$email->header('MIME-Version');
# Encode the headers correctly in quoted-printable # Encode the headers correctly in quoted-printable
foreach my $header qw(From To Cc Reply-To Sender Errors-To Subject) { foreach my $header ($email->header_names) {
if (my $value = $email->header($header)) { my @values = $email->header($header);
# We don't recode headers that happen multiple times.
next if scalar(@values) > 1;
if (my $value = $values[0]) {
if (Bugzilla->params->{'utf8'} && !utf8::is_utf8($value)) { if (Bugzilla->params->{'utf8'} && !utf8::is_utf8($value)) {
utf8::decode($value); utf8::decode($value);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment