committing changes in /etc made by "-bash"

Package changes:
This commit is contained in:
2022-10-04 15:28:51 +03:00
parent 20a9d17637
commit 991838e31f
6 changed files with 23 additions and 9 deletions

View File

@@ -87,7 +87,7 @@ symbols = {
groups = ["spamhaus"];
}
"RBL_SPAMHAUS_SBL" {
weight = 2.0;
weight = 4.0;
description = "From address is listed in ZEN SBL";
groups = ["spamhaus"];
}
@@ -127,7 +127,7 @@ symbols = {
groups = ["spamhaus"];
}
"RECEIVED_SPAMHAUS_SBL" {
weight = 1.0;
weight = 3.0;
description = "Received address is listed in ZEN SBL";
groups = ["spamhaus"];
one_shot = true;

View 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"];
}
}