diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2024-02-08 21:10:41 +0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-08 21:10:41 +0600 |
commit | fcc81b8d4006057f962937831e7ed021919bdde3 (patch) | |
tree | 5427d43eff678d24185ba212361f383315f1b534 | |
parent | 700701543fa6114205cdf858bbede25d5bb99ca4 (diff) | |
parent | a5c80541154fdb648f93f87d90381f4ddabe887a (diff) | |
download | rspamd-fcc81b8d4006057f962937831e7ed021919bdde3.tar.gz rspamd-fcc81b8d4006057f962937831e7ed021919bdde3.zip |
Merge pull request #4803 from fatalbanana/surbl_config
[Minor] Add more returnbits to surbl configuration
-rw-r--r-- | conf/modules.d/rbl.conf | 2 | ||||
-rw-r--r-- | conf/scores.d/surbl_group.conf | 12 |
2 files changed, 14 insertions, 0 deletions
diff --git a/conf/modules.d/rbl.conf b/conf/modules.d/rbl.conf index 79dfc84ea..ef87c4c5a 100644 --- a/conf/modules.d/rbl.conf +++ b/conf/modules.d/rbl.conf @@ -212,8 +212,10 @@ rbl { returnbits = { CRACKED_SURBL = 128; ABUSE_SURBL = 64; + CT_SURBL = 32; MW_SURBL_MULTI = 16; PH_SURBL_MULTI = 8; + DM_SURBL = 4; SURBL_BLOCKED = 1; } } diff --git a/conf/scores.d/surbl_group.conf b/conf/scores.d/surbl_group.conf index 25e8ed7e2..89579ca15 100644 --- a/conf/scores.d/surbl_group.conf +++ b/conf/scores.d/surbl_group.conf @@ -50,6 +50,18 @@ symbols = { one_shot = true; groups = ["surblorg"]; } + "CT_SURBL" { + weight = 0.0; + description = "A domain in the message is listed in SURBL as a clicktracker"; + one_shot = true; + groups = ["surblorg"]; + } + "DM_SURBL" { + weight = 0.0; + description = "A domain in the message is listed in SURBL as belonging to a disposable email service"; + one_shot = true; + groups = ["surblorg"]; + } "RSPAMD_URIBL" { weight = 4.5; |