Index: lib/Mail/SpamAssassin/PerMsgStatus.pm =================================================================== RCS file: /cvsroot/spamassassin/spamassassin/lib/Mail/SpamAssassin/PerMsgStatus.pm,v retrieving revision 1.282 diff -u -r1.282 PerMsgStatus.pm --- lib/Mail/SpamAssassin/PerMsgStatus.pm 18 Feb 2003 21:35:43 -0000 1.282 +++ lib/Mail/SpamAssassin/PerMsgStatus.pm 25 Feb 2003 02:36:01 -0000 @@ -578,10 +578,11 @@ # This is the new message. # jm: add a SpamAssassin Received header to note markup time etc. # emulates the fetchmail style. - my $newmsg = "Received: from localhost [127.0.0.1] by ".hostname."\n". - "\twith SpamAssassin (". Mail::SpamAssassin::Version()." ". - $Mail::SpamAssassin::SUB_VERSION . ");\n". - "\t". strftime ("%a, %d %b %Y %H:%M:%S %z", localtime)."\n"; + my $newmsg = "Received: from localhost [127.0.0.1] by " . hostname . "\n" . + "\twith SpamAssassin (" . Mail::SpamAssassin::Version() . " " . + $Mail::SpamAssassin::SUB_VERSION . ");\n" . + "\t" . strftime("%a, %d %b %Y %H:%M:%S ", localtime) . + Mail::SpamAssassin::Util::local_tz() . "\n"; # remove first line if it is "From " if ($original =~ s/^(From (.*?)\n)//s) {