From 5c972e5506970c7f7f4464c87c2a0211a8875edd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ask=20Bj=C3=B8rn=20Hansen?= Date: Thu, 11 Mar 2004 09:34:38 +0000 Subject: [PATCH] SpamAssassin plugin Outlook compatibility fix (Thanks to Gergely Risko) git-svn-id: https://svn.perl.org/qpsmtpd/trunk@224 958fd67b-6ff1-0310-b445-bb7760255be9 --- Changes | 5 +++++ plugins/spamassassin | 1 + 2 files changed, 6 insertions(+) diff --git a/Changes b/Changes index 1d95837..6b603aa 100644 --- a/Changes +++ b/Changes @@ -5,6 +5,11 @@ $Include feature in config/plugins +0.27 - 2004/03/11 + + SpamAssassin plugin Outlook compatibility fix (Thanks to Gergely Risko) + + 0.27 - 2004/03/10 Support for unix sockets in the spamassassin plugin (requires SA diff --git a/plugins/spamassassin b/plugins/spamassassin index a836634..3622e9a 100644 --- a/plugins/spamassassin +++ b/plugins/spamassassin @@ -157,6 +157,7 @@ sub check_spam { } my $tests = ; + $tests =~ s/\015//; # hack for outlook $flag = $flag eq 'True' ? 'Yes' : 'No'; $self->log(6, "check_spam: finished reading from spamd");