aboutsummaryrefslogtreecommitdiffstats
path: root/conf/scores.d
diff options
context:
space:
mode:
authorheraklit256 <37872459+heraklit256@users.noreply.github.com#>2018-08-07 16:34:30 +0200
committerheraklit256 <37872459+heraklit256@users.noreply.github.com#>2018-08-07 16:34:30 +0200
commit1ecd691570fcdbb3d093948d78dbacd33f8d3ea3 (patch)
treec7c531e7f0a54c2278f31c6f465d15c57e8b9498 /conf/scores.d
parent19b524dc47f1465db7329be57c02f27e7aca215b (diff)
downloadrspamd-1ecd691570fcdbb3d093948d78dbacd33f8d3ea3.tar.gz
rspamd-1ecd691570fcdbb3d093948d78dbacd33f8d3ea3.zip
add negative weight to DNSWL entries
However, a message must be correctly DKIM signed to get some more negative weight in case an received IP is listed with medium or high trust at DNSWL. This supersedes a first patch without the DKIM condition.
Diffstat (limited to 'conf/scores.d')
-rw-r--r--conf/scores.d/rbl_group.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/scores.d/rbl_group.conf b/conf/scores.d/rbl_group.conf
index 6c48cf3bb..2b9d9483c 100644
--- a/conf/scores.d/rbl_group.conf
+++ b/conf/scores.d/rbl_group.conf
@@ -29,15 +29,15 @@ symbols = {
description = "Sender listed at https://www.dnswl.org, no trust";
}
"RCVD_IN_DNSWL_LOW" {
- weight = 0.0;
+ weight = -0.5;
description = "Sender listed at https://www.dnswl.org, low trust";
}
"RCVD_IN_DNSWL_MED" {
- weight = 0.0;
+ weight = -0.5;
description = "Sender listed at https://www.dnswl.org, medium trust";
}
"RCVD_IN_DNSWL_HI" {
- weight = 0.0;
+ weight = -0.5;
description = "Sender listed at https://www.dnswl.org, high trust";
}