aboutsummaryrefslogtreecommitdiffstats
path: root/rules
diff options
context:
space:
mode:
authorAndrew Lewis <nerf@judo.za.org>2016-08-19 12:10:11 +0200
committerAndrew Lewis <nerf@judo.za.org>2016-08-19 12:10:11 +0200
commit6c336d86dadce66fdb8f77248b057a02f98b4044 (patch)
tree2d50b3451d9f28374570aac4c388dabad3b75e04 /rules
parent9933eb12cb6d689328ec07e3e05567ffaef86f2e (diff)
downloadrspamd-6c336d86dadce66fdb8f77248b057a02f98b4044.tar.gz
rspamd-6c336d86dadce66fdb8f77248b057a02f98b4044.zip
[Minor] Zero scoring on some informational symbols
Diffstat (limited to 'rules')
-rw-r--r--rules/forwarding.lua6
-rw-r--r--rules/misc.lua6
-rw-r--r--rules/regexp/upstream_spam_filters.lua2
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'
}