aboutsummaryrefslogtreecommitdiffstats
path: root/conf/modules.d/whitelist.conf
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2018-09-28 19:54:13 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2018-09-29 12:43:13 +0100
commitdcc7e9ad2b201f80b512d49aba79baac87eee675 (patch)
tree801ab5b07d9851ed2299e20bc24c3f9816b3c72e /conf/modules.d/whitelist.conf
parent181c7004141a4f07e276ba8dcf0ea98ee9250993 (diff)
downloadrspamd-dcc7e9ad2b201f80b512d49aba79baac87eee675.tar.gz
rspamd-dcc7e9ad2b201f80b512d49aba79baac87eee675.zip
[Conf] Specify whitelist symbols group
Diffstat (limited to 'conf/modules.d/whitelist.conf')
-rw-r--r--conf/modules.d/whitelist.conf10
1 files changed, 5 insertions, 5 deletions
diff --git a/conf/modules.d/whitelist.conf b/conf/modules.d/whitelist.conf
index 0b19002c8..ddf5bdad8 100644
--- a/conf/modules.d/whitelist.conf
+++ b/conf/modules.d/whitelist.conf
@@ -22,7 +22,7 @@ whitelist {
"fallback+file://${CONFDIR}/spf_whitelist.inc"
];
score = -1.0
- description = "Mail comes from the whitelisted domain and has a valid SPF policy";
+ inverse_symbol = "BLACKLIST_SPF";
}
"WHITELIST_DKIM" = {
@@ -31,8 +31,8 @@ whitelist {
"${DBDIR}/dkim_whitelist.inc.local",
"fallback+file://${CONFDIR}/dkim_whitelist.inc"
];
- description = "Mail comes from the whitelisted domain and has a valid DKIM signature";
- score = -1.0
+ score = -1.0;
+ inverse_symbol = "BLACKLIST_DKIM";
}
"WHITELIST_SPF_DKIM" = {
valid_spf = true;
@@ -43,7 +43,7 @@ whitelist {
"fallback+file://${CONFDIR}/spf_dkim_whitelist.inc"
];
score = -3.0;
- description = "Mail comes from the whitelisted domain and has valid SPF and DKIM policies";
+ inverse_symbol = "BLACKLIST_SPF_DKIM";
}
"WHITELIST_DMARC" = {
valid_dmarc = true;
@@ -53,7 +53,7 @@ whitelist {
"fallback+file://${CONFDIR}/dmarc_whitelist.inc"
];
score = -7.0;
- description = "Mail comes from the whitelisted domain and has valid DMARC and DKIM policies";
+ inverse_symbol = "BLACKLIST_DMARC";
}
}