diff --git a/Changes b/Changes index d15630a..1d4bc4c 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ 0.20 - development + clamav plugin, thanks to Matt Sergeant, matt@sergeant.org. + Enabling this might require you to increase your memory limits in + the run file. http://www.clamav.org/ + + Make the spamassassin plugin not stop the next content plugins from + running. + Store hooks runtime config globally so they will work within the transaction objects too. @@ -15,10 +22,6 @@ 0.12 - 2002/10/17 - clamav plugin, thanks to Matt Sergeant, matt@sergeant.org. - Enabling this might require you to increase your memory limits in - the run file. http://www.clamav.org/ - Better error messages when a plugin fails Remove some debug messages in the log diff --git a/plugins/spamassassin b/plugins/spamassassin index 195db2d..0c812e2 100644 --- a/plugins/spamassassin +++ b/plugins/spamassassin @@ -72,5 +72,5 @@ sub check_spam { last if $h[0] eq "Spam" and $h[1] =~ m/^False/; } - return (OK); + return (DECLINED); }