From 6c336d86dadce66fdb8f77248b057a02f98b4044 Mon Sep 17 00:00:00 2001 From: Andrew Lewis Date: Fri, 19 Aug 2016 12:10:11 +0200 Subject: [PATCH] [Minor] Zero scoring on some informational symbols --- rules/forwarding.lua | 6 +++--- rules/misc.lua | 6 +++--- rules/regexp/upstream_spam_filters.lua | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/rules/forwarding.lua b/rules/forwarding.lua index 68d0c1095..65c5e3100 100644 --- a/rules/forwarding.lua +++ b/rules/forwarding.lua @@ -40,7 +40,7 @@ rspamd_config.FWD_GOOGLE = { end return false end, - score = 0.1, + score = 0.0, description = "Message was forwarded by Google", group = "forwarding" } @@ -64,7 +64,7 @@ rspamd_config.FWD_SRS = { end return false end, - score = 0.1, + score = 0.0, description = "Message was forwarded using SRS", group = "forwarding" } @@ -105,7 +105,7 @@ rspamd_config.FORWARDED = { end return false end, - score = 0.1, + score = 0.0, description = "Message was forwarded", group = "forwarding" } diff --git a/rules/misc.lua b/rules/misc.lua index cb5705404..c0dc201ab 100644 --- a/rules/misc.lua +++ b/rules/misc.lua @@ -306,7 +306,7 @@ rspamd_config.ENVFROM_PRVS = { end return false end, - score = 0.01, + score = 0.0, description = "Envelope From is a PRVS address that matches the From address", group = 'prvs' } @@ -334,7 +334,7 @@ rspamd_config.ENVFROM_VERP = { end return false end, - score = 0.01, + score = 0.0, description = "Envelope From is a VERP address", group = "mailing_list" } @@ -358,7 +358,7 @@ rspamd_config.RCVD_TLS_ALL = { return true end end, - score = 0.01, + score = 0.0, description = "All hops used encrypted transports", group = "encryption" } diff --git a/rules/regexp/upstream_spam_filters.lua b/rules/regexp/upstream_spam_filters.lua index 1e9829af3..f778ae3a8 100644 --- a/rules/regexp/upstream_spam_filters.lua +++ b/rules/regexp/upstream_spam_filters.lua @@ -20,7 +20,7 @@ local reconf = config['regexp'] reconf['PRECEDENCE_BULK'] = { re = 'Precedence=/bulk/Hi', - score = 0.1, + score = 0.0, description = "Message marked as bulk", group = 'upstream_spam_filters' } -- 2.39.5