diff options
author | heraklit256 <37872459+heraklit256@users.noreply.github.com#> | 2018-08-07 16:34:30 +0200 |
---|---|---|
committer | heraklit256 <37872459+heraklit256@users.noreply.github.com#> | 2018-08-07 16:34:30 +0200 |
commit | 1ecd691570fcdbb3d093948d78dbacd33f8d3ea3 (patch) | |
tree | c7c531e7f0a54c2278f31c6f465d15c57e8b9498 /conf/scores.d | |
parent | 19b524dc47f1465db7329be57c02f27e7aca215b (diff) | |
download | rspamd-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.conf | 6 |
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"; } |