diff options
author | Andrew Lewis <nerf@judo.za.org> | 2016-08-19 12:10:11 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2016-08-19 12:10:11 +0200 |
commit | 6c336d86dadce66fdb8f77248b057a02f98b4044 (patch) | |
tree | 2d50b3451d9f28374570aac4c388dabad3b75e04 /rules/forwarding.lua | |
parent | 9933eb12cb6d689328ec07e3e05567ffaef86f2e (diff) | |
download | rspamd-6c336d86dadce66fdb8f77248b057a02f98b4044.tar.gz rspamd-6c336d86dadce66fdb8f77248b057a02f98b4044.zip |
[Minor] Zero scoring on some informational symbols
Diffstat (limited to 'rules/forwarding.lua')
-rw-r--r-- | rules/forwarding.lua | 6 |
1 files changed, 3 insertions, 3 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" } |