From f4eb90cba3429d9b91ef0344c585ec82022c85d6 Mon Sep 17 00:00:00 2001 From: Charlie Brady Date: Mon, 20 Jul 2009 13:02:38 +0200 Subject: [PATCH] Fix spamassassin plugin log noise if spam score is 0.0 --- Changes | 2 ++ plugins/spamassassin | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 94d2b27..89d9760 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,6 @@ + Fix spamassassin plugin log noise if spam score is 0.0 + Disconnect host in rhsbl (Charlie Brady) POD cleanups (Steve Kemp) diff --git a/plugins/spamassassin b/plugins/spamassassin index 9aadb84..1a1b4b1 100644 --- a/plugins/spamassassin +++ b/plugins/spamassassin @@ -188,7 +188,7 @@ sub hook_data_post { # check_spam } } - my $tests = ; + my $tests = || ''; close SPAMD; $tests =~ s/\015//; # hack for outlook $flag = $flag eq 'True' ? 'Yes' : 'No';