From 19efd87b455fd4aa950fb36e378933d9e7445865 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Sat, 15 Jan 2011 01:08:08 +0100 Subject: Bug 623408: Message-ID is gone in bugmail for new bugs r=dkl a=LpSolit --- Bugzilla/BugMail.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Bugzilla') diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 048488e02..41b7a3cf1 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -393,8 +393,9 @@ sub _generate_bugmail { 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->content_type_set('multipart/alternative'); return $email; -- cgit v1.2.3-24-g4f1b