]> source.dussan.org Git - rspamd.git/commitdiff
[Conf] Add missing groups for whitelist module symbols
authorVsevolod Stakhov <vsevolod@rspamd.com>
Thu, 26 May 2022 20:25:56 +0000 (21:25 +0100)
committerVsevolod Stakhov <vsevolod@rspamd.com>
Thu, 26 May 2022 20:25:56 +0000 (21:25 +0100)
Issue: #4169

conf/scores.d/whitelist_group.conf

index 5f1a5eaf5c95acfead0dd23f0355587406d7aea2..c0d20442d18e7324942d21687b666f12d7d5685f 100644 (file)
@@ -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"];
     }
 }