From a1d4a70b117f8a501a1a45f1fe2440fa63301634 Mon Sep 17 00:00:00 2001 From: Gorden Mende Date: Tue, 4 Oct 2022 08:46:42 +0200 Subject: [PATCH] committing changes in /etc after apt run Package changes: -rspamd 3.2-1~bullseye amd64 +rspamd 3.3-2~bullseye amd64 -tzdata 2021a-1+deb11u5 all +tzdata 2021a-1+deb11u6 all --- rspamd/scores.d/whitelist_group.conf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/rspamd/scores.d/whitelist_group.conf b/rspamd/scores.d/whitelist_group.conf index 5f1a5eaf..c0d20442 100644 --- a/rspamd/scores.d/whitelist_group.conf +++ b/rspamd/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"]; } }