diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-05-26 21:25:56 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-05-26 21:25:56 +0100 |
commit | ac257bca1b9f9a5252f469436e753360eaf016ff (patch) | |
tree | 3b8f0c3bbeaa085f7b7a98e532ea86f6c7844de6 | |
parent | ce6dd7ac67d25be0b07a1a8e14ca2b4d04c6b70f (diff) | |
download | rspamd-ac257bca1b9f9a5252f469436e753360eaf016ff.tar.gz rspamd-ac257bca1b9f9a5252f469436e753360eaf016ff.zip |
[Conf] Add missing groups for whitelist module symbols
Issue: #4169
-rw-r--r-- | conf/scores.d/whitelist_group.conf | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/conf/scores.d/whitelist_group.conf b/conf/scores.d/whitelist_group.conf index 5f1a5eaf5..c0d20442d 100644 --- a/conf/scores.d/whitelist_group.conf +++ b/conf/scores.d/whitelist_group.conf @@ -23,33 +23,41 @@ symbols = { "WHITELIST_SPF" { weight = -1.0; description = "Mail comes from the whitelisted domain and has a valid SPF policy"; + groups = ["spf"]; } "BLACKLIST_SPF" { weight = 1.0; description = "Mail comes from the whitelisted domain and has no valid SPF policy"; + groups = ["spf"]; } "WHITELIST_DKIM" { weight = -1.0; description = "Mail comes from the whitelisted domain and has a valid DKIM signature"; + groups = ["dkim"]; } "BLACKLIST_DKIM" { weight = 2.0; description = "Mail comes from the whitelisted domain and has non-valid DKIM signature"; + groups = ["dkim"]; } "WHITELIST_SPF_DKIM" { weight = -3.0; description = "Mail comes from the whitelisted domain and has valid SPF and DKIM policies"; + groups = ["spf", "dkim"]; } "BLACKLIST_SPF_DKIM" { weight = 3.0; description = "Mail comes from the whitelisted domain and has no valid SPF policy or a bad DKIM signature"; + groups = ["spf", "dkim"]; } "WHITELIST_DMARC" { weight = -7.0; description = "Mail comes from the whitelisted domain and has valid DMARC and DKIM policies"; + groups = ["dmarc", "spf", "dkim"]; } "BLACKLIST_DMARC" { weight = 6.0; description = "Mail comes from the whitelisted domain and has failed DMARC and DKIM policies"; + groups = ["dmarc", "spf", "dkim"]; } } |