aboutsummaryrefslogtreecommitdiffstats
path: root/conf/modules.d
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2017-01-09 17:33:30 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2017-01-09 17:33:30 +0000
commit9a037c9aad08e0ecc7232b1879d5d80a34e55dba (patch)
tree9c156f713848ac94c855345712920f1bc999e92e /conf/modules.d
parent0e0491025bc0ddd4f9e907162b59d3f5fed847d0 (diff)
downloadrspamd-9a037c9aad08e0ecc7232b1879d5d80a34e55dba.tar.gz
rspamd-9a037c9aad08e0ecc7232b1879d5d80a34e55dba.zip
[Conf] Allow to edit all local maps from WebUI by default
Diffstat (limited to 'conf/modules.d')
-rw-r--r--conf/modules.d/mime_types.conf5
-rw-r--r--conf/modules.d/surbl.conf10
-rw-r--r--conf/modules.d/whitelist.conf20
3 files changed, 28 insertions, 7 deletions
diff --git a/conf/modules.d/mime_types.conf b/conf/modules.d/mime_types.conf
index 6fd3c1da8..04117e543 100644
--- a/conf/modules.d/mime_types.conf
+++ b/conf/modules.d/mime_types.conf
@@ -14,7 +14,10 @@
# See https://rspamd.com/doc/tutorials/writing_rules.html for details
mime_types {
- file = "${CONFDIR}/mime_types.inc";
+ file = [
+ "${CONFDIR}/mime_types.inc",
+ "${DBDIR}/mime_types.inc.local"
+ ]
# Match specific extensions to specific content types
extension_map = {
diff --git a/conf/modules.d/surbl.conf b/conf/modules.d/surbl.conf
index 3a051719b..2d5711b0d 100644
--- a/conf/modules.d/surbl.conf
+++ b/conf/modules.d/surbl.conf
@@ -14,8 +14,14 @@
# See https://rspamd.com/doc/tutorials/writing_rules.html for details
surbl {
- whitelist = "file://$CONFDIR/surbl-whitelist.inc";
- exceptions = "file://$CONFDIR/2tld.inc";
+ whitelist = [
+ "${CONFDIR}/surbl-whitelist.inc",
+ "${DBDIR}/surbl-whitelist.inc.local"
+ ];
+ exceptions = [
+ "${CONFDIR}/2tld.inc",
+ "${DBDIR}/2tld.inc.local"
+ ];
rules {
"SURBL_MULTI" {
diff --git a/conf/modules.d/whitelist.conf b/conf/modules.d/whitelist.conf
index b8637ed79..de8b9b516 100644
--- a/conf/modules.d/whitelist.conf
+++ b/conf/modules.d/whitelist.conf
@@ -17,27 +17,39 @@ whitelist {
rules {
"WHITELIST_SPF" = {
valid_spf = true;
- domains = "${CONFDIR}/spf_whitelist.inc";
+ domains = [
+ "${CONFDIR}/spf_whitelist.inc",
+ "${DBDIR}/spf_whitelist.inc.local",
+ ];
score = -1.0
description = "Mail comes from the whitelisted domain and has a valid SPF policy";
}
"WHITELIST_DKIM" = {
valid_dkim = true;
- domains = "${CONFDIR}/dkim_whitelist.inc";
+ domains = [
+ "${CONFDIR}/dkim_whitelist.inc",
+ "${DBDIR}/dkim_whitelist.inc.local",
+ ];
description = "Mail comes from the whitelisted domain and has a valid DKIM signature";
score = -1.0
}
"WHITELIST_SPF_DKIM" = {
valid_spf = true;
valid_dkim = true;
- domains = "${CONFDIR}/spf_dkim_whitelist.inc";
+ domains = [
+ "${CONFDIR}/spf_dkim_whitelist.inc",
+ "${DBDIR}/spf_dkim_whitelist.inc.local",
+ ];
score = -3.0;
description = "Mail comes from the whitelisted domain and has valid SPF and DKIM policies";
}
"WHITELIST_DMARC" = {
valid_dmarc = true;
- domains = "${CONFDIR}/dmarc_whitelist.inc";
+ domains = [
+ "${CONFDIR}/dmarc_whitelist.inc",
+ "${DBDIR}/dmarc_whitelist.inc.local",
+ ];
score = -7.0;
description = "Mail comes from the whitelisted domain and has valid DMARC and DKIM policies";
}