Commit 19efd87b authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 623408: Message-ID is gone in bugmail for new bugs

r=dkl a=LpSolit
parent a9ec34d1
...@@ -393,8 +393,9 @@ sub _generate_bugmail { ...@@ -393,8 +393,9 @@ sub _generate_bugmail {
body => $msg_html, body => $msg_html,
), ),
); );
my $email = new Email::MIME($msg_header); # TT trims the trailing newline, and threadingmarker may be ignored.
my $email = new Email::MIME("$msg_header\n");
$email->parts_set(\@parts); $email->parts_set(\@parts);
$email->content_type_set('multipart/alternative'); $email->content_type_set('multipart/alternative');
return $email; return $email;
......
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