From 712074091c34cbd445c4ba823d0d6d63a31557d2 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Mon, 27 Apr 2009 16:15:49 +0200 Subject: [PATCH] spamassassin: Mark messages as spam with score > 20. Previously all messages would be marked and exim would set the threshold, but this is about to change. --- etc/spamassassin/local.cf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/spamassassin/local.cf b/etc/spamassassin/local.cf index b2501ef..0ac80b6 100644 --- a/etc/spamassassin/local.cf +++ b/etc/spamassassin/local.cf @@ -22,10 +22,10 @@ internal_networks 130.89.175.0/24 # kat internal_networks 130.89.168.160/32 -# Treat any score as spam. Exim checks the spamscore against its own -# threshold for denial. Exim also sets the spam headers and should do so for -# every message, not just ones with a high spamscore. -required_score -100.0 +# Mark any messages with score > 20 as spam, making exim reject them at the +# door. Any messages with lower spamscores should be filtered by users +# themselves. +required_score 20.0 # Report template. Should fit within 78 character (dots below). # ........................................................................ -- 2.30.2