diff options
author | Andrew Lewis <nerf@judo.za.org> | 2015-06-29 18:38:32 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2015-06-29 18:38:49 +0200 |
commit | 8fcfe11dc7efe15bdea2e9737afc17edf6d8b70a (patch) | |
tree | 43bb5c4479e9f365cb814688d7a8e180b70b14d8 /conf/modules.conf | |
parent | 2c605eacc29e02d093c16fa90c155143b828a609 (diff) | |
download | rspamd-8fcfe11dc7efe15bdea2e9737afc17edf6d8b70a.tar.gz rspamd-8fcfe11dc7efe15bdea2e9737afc17edf6d8b70a.zip |
Silence errors; yield unknown results from RBLs; fix scoring for DNSWL
Diffstat (limited to 'conf/modules.conf')
-rw-r--r-- | conf/modules.conf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/conf/modules.conf b/conf/modules.conf index 4a6f296e5..a767e32ba 100644 --- a/conf/modules.conf +++ b/conf/modules.conf @@ -123,6 +123,7 @@ rbl { symbol = "RBL_SPAMHAUS"; rbl = "zen.spamhaus.org"; ipv6 = true; + unknown = true; returncodes { RBL_SPAMHAUS_SBL = "127.0.0.2"; RBL_SPAMHAUS_CSS = "127.0.0.3"; @@ -148,6 +149,7 @@ rbl { rbl = "swl.spamhaus.org"; ipv6 = true; is_whitelist = true; + unknown = true; whitelist_exception = "RWL_SPAMHAUS_WL"; returncodes { RWL_SPAMHAUS_WL_IND = "127.0.2.2"; @@ -158,6 +160,8 @@ rbl { } mailspike_bl { + symbol = "RBL_MAILSPIKE"; + unknown = true; rbl = "bl.mailspike.net"; returncodes { RBL_MAILSPIKE_ZOMBIE = "127.0.0.2"; @@ -168,8 +172,11 @@ rbl { } mailspike_wl { + symbol = "RWL_MAILSPIKE"; rbl = "wl.mailspike.net"; is_whitelist = true; + unknown = true; + whitelist_exception = "RWL_MAILSPIKE"; whitelist_exception = "RWL_MAILSPIKE_POSSIBLE"; returncodes { RWL_MAILSPIKE_POSSIBLE = "127.0.0.17"; @@ -197,6 +204,7 @@ rbl { sorbs { symbol = "RBL_SORBS"; rbl = "dnsbl.sorbs.net"; + unknown = true; returncodes { # http:// www.sorbs.net/general/using.shtml RBL_SORBS_HTTP = "127.0.0.2"; @@ -228,6 +236,8 @@ rbl { rbl = "list.dnswl.org"; ipv6 = true; is_whitelist = true; + unknown = true; + whitelist_exception = "RCVD_IN_DNSWL"; whitelist_exception = "DNSWL_BLOCKED"; returncodes { RCVD_IN_DNSWL_NONE = "127.0.%d+.0"; |