Browse Source

[Conf] Add missing groups for whitelist module symbols

Issue: #4169
tags/3.3
Vsevolod Stakhov 1 year ago
parent
commit
ac257bca1b
No account linked to committer's email address
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      conf/scores.d/whitelist_group.conf

+ 8
- 0
conf/scores.d/whitelist_group.conf View File

"WHITELIST_SPF" { "WHITELIST_SPF" {
weight = -1.0; weight = -1.0;
description = "Mail comes from the whitelisted domain and has a valid SPF policy"; description = "Mail comes from the whitelisted domain and has a valid SPF policy";
groups = ["spf"];
} }
"BLACKLIST_SPF" { "BLACKLIST_SPF" {
weight = 1.0; weight = 1.0;
description = "Mail comes from the whitelisted domain and has no valid SPF policy"; description = "Mail comes from the whitelisted domain and has no valid SPF policy";
groups = ["spf"];
} }
"WHITELIST_DKIM" { "WHITELIST_DKIM" {
weight = -1.0; weight = -1.0;
description = "Mail comes from the whitelisted domain and has a valid DKIM signature"; description = "Mail comes from the whitelisted domain and has a valid DKIM signature";
groups = ["dkim"];
} }
"BLACKLIST_DKIM" { "BLACKLIST_DKIM" {
weight = 2.0; weight = 2.0;
description = "Mail comes from the whitelisted domain and has non-valid DKIM signature"; description = "Mail comes from the whitelisted domain and has non-valid DKIM signature";
groups = ["dkim"];
} }
"WHITELIST_SPF_DKIM" { "WHITELIST_SPF_DKIM" {
weight = -3.0; weight = -3.0;
description = "Mail comes from the whitelisted domain and has valid SPF and DKIM policies"; description = "Mail comes from the whitelisted domain and has valid SPF and DKIM policies";
groups = ["spf", "dkim"];
} }
"BLACKLIST_SPF_DKIM" { "BLACKLIST_SPF_DKIM" {
weight = 3.0; weight = 3.0;
description = "Mail comes from the whitelisted domain and has no valid SPF policy or a bad DKIM signature"; description = "Mail comes from the whitelisted domain and has no valid SPF policy or a bad DKIM signature";
groups = ["spf", "dkim"];
} }
"WHITELIST_DMARC" { "WHITELIST_DMARC" {
weight = -7.0; weight = -7.0;
description = "Mail comes from the whitelisted domain and has valid DMARC and DKIM policies"; description = "Mail comes from the whitelisted domain and has valid DMARC and DKIM policies";
groups = ["dmarc", "spf", "dkim"];
} }
"BLACKLIST_DMARC" { "BLACKLIST_DMARC" {
weight = 6.0; weight = 6.0;
description = "Mail comes from the whitelisted domain and has failed DMARC and DKIM policies"; description = "Mail comes from the whitelisted domain and has failed DMARC and DKIM policies";
groups = ["dmarc", "spf", "dkim"];
} }
} }

Loading…
Cancel
Save