From dc562f716ec4bfaf62387bd37355c542fc295353 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ask=20Bj=C3=B8rn=20Hansen?= Date: Wed, 6 Nov 2002 11:03:00 +0000 Subject: [PATCH] make the spamassassin plugin not stop processing of content plugins git-svn-id: https://svn.perl.org/qpsmtpd/trunk@98 958fd67b-6ff1-0310-b445-bb7760255be9 --- Changes | 11 +++++++---- plugins/spamassassin | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) 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); }