Commit 5d158911 authored by olav%bkor.dhs.org's avatar olav%bkor.dhs.org

Bug 365317: Must add 'MIME-Version: 1.0' to avoid charset being possibly ignored

Patch By Olav Vitters <olav@bkor.dhs.org> r=mkanat a=mkanat
parent 31d86bb1
......@@ -58,6 +58,9 @@ sub MessageToMTA {
$part->encoding_set('quoted-printable') if !is_7bit_clean($part->body);
}
# MIME-Version must be set otherwise some mailsystems ignore the charset
$email->header_set('MIME-Version', '1.0') if !$email->header('MIME-Version');
# Encode the headers correctly in quoted-printable
foreach my $header qw(From To Cc Reply-To Sender Errors-To Subject) {
if (my $value = $email->header($header)) {
......
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