summaryrefslogtreecommitdiffstats
path: root/conf/modules.d/phishing.conf
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2016-07-26 19:01:30 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2016-07-26 19:02:19 +0100
commit6c28bbc16ba4b122f5ed16f748883818e32a410b (patch)
tree4d6b36c35f1c51a2f394aab448855082b2bea730 /conf/modules.d/phishing.conf
parentf28ccc4b9f10c82ed37de97a2b8bef6b997f3f65 (diff)
downloadrspamd-6c28bbc16ba4b122f5ed16f748883818e32a410b.tar.gz
rspamd-6c28bbc16ba4b122f5ed16f748883818e32a410b.zip
[Fix] Really fix local.d includes
Diffstat (limited to 'conf/modules.d/phishing.conf')
-rw-r--r--conf/modules.d/phishing.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/modules.d/phishing.conf b/conf/modules.d/phishing.conf
index 8875a3898..8bf428e76 100644
--- a/conf/modules.d/phishing.conf
+++ b/conf/modules.d/phishing.conf
@@ -14,9 +14,6 @@
# See https://rspamd.com/doc/tutorials/writing_rules.html for details
phishing {
- .include(try=true,priority=5) "${DBDIR}/dynamic/phishing.conf"
- .include(try=true,priority=1) "$LOCAL_CONFDIR/local.d/phishing.conf"
- .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/phishing.conf"
symbol = "PHISHING";
# Disabled by default
openphish_enabled = false;
@@ -32,4 +29,7 @@ phishing {
"$LOCAL_CONFDIR/local.d/redirectors.inc:LOCAL_REDIRECTOR_FALSE"
];
+ .include(try=true,priority=5) "${DBDIR}/dynamic/phishing.conf"
+ .include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/phishing.conf"
+ .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/phishing.conf"
}