From: Reed Loden Date: Sun, 24 Oct 2010 22:18:53 +0000 (-0700) Subject: Bug 600230 - Add a unique Message-ID to all outgoing e-mails. X-Git-Tag: bugzilla-4.1.1~184 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d2c0c7c3db756b1877ac7e0b322bb993f610d9a;p=thirdparty%2Fbugzilla.git Bug 600230 - Add a unique Message-ID to all outgoing e-mails. [r=LpSolit a=LpSolit] --- diff --git a/Bugzilla/Mailer.pm b/Bugzilla/Mailer.pm index d4a41b7638..5ee6fd2eb8 100644 --- a/Bugzilla/Mailer.pm +++ b/Bugzilla/Mailer.pm @@ -208,7 +208,9 @@ sub build_thread_marker { $threadingmarker = "Message-ID: "; } else { - $threadingmarker = "In-Reply-To: " . + my $rand_bits = generate_random_password(10); + $threadingmarker = "Message-ID: " . + "\nIn-Reply-To: " . "\nReferences: "; }