rspamd/conf/modules.d/phishing.conf

36 řádky
1.3 KiB
Plaintext
Surový Normální zobrazení Historie

2016-03-10 20:16:01 +01:00
# Please don't modify this file as your changes might be overwritten with
# the next update.
#
2019-09-21 10:50:21 +02:00
# You can modify 'local.d/phishing.conf' to add and merge
# parameters defined inside this section
2016-03-10 20:16:01 +01:00
#
2019-09-21 10:50:21 +02:00
# You can modify 'override.d/phishing.conf' to strictly override all
# parameters defined inside this section
2016-03-10 20:16:01 +01:00
#
2019-09-21 10:50:21 +02:00
# See https://rspamd.com/doc/faq.html#what-are-the-locald-and-overrided-directories
# for details
2016-03-10 20:16:01 +01:00
#
2019-09-21 10:50:21 +02:00
# Module documentation can be found at https://rspamd.com/doc/modules/phishing.html
2016-03-10 20:16:01 +01:00
2015-08-07 16:21:10 +02:00
phishing {
2019-06-01 22:57:42 +02:00
symbol = "PHISHING";
# Disabled by default
openphish_enabled = false;
openphish_premium = false;
openphish_map = "https://www.openphish.com/feed.txt";
2020-01-28 20:08:53 +01:00
# Phishtank is disabled by default in the module, so let's enable it here explicitly
2019-06-01 22:57:42 +02:00
phishtank_enabled = true;
2019-06-01 22:57:42 +02:00
# Make exclusions for known redirectors
redirector_domains = [
"https://maps.rspamd.com/rspamd/redirectors.inc.zst:REDIRECTOR_FALSE",
2019-09-17 09:35:41 +02:00
"$LOCAL_CONFDIR/local.d/maps.d/redirectors.inc:LOCAL_REDIRECTOR_FALSE",
2019-06-01 22:57:42 +02:00
"$LOCAL_CONFDIR/local.d/redirectors.inc:LOCAL_REDIRECTOR_FALSE",
2019-09-17 09:35:41 +02:00
"fallback+file://${CONFDIR}/maps.d/redirectors.inc:REDIRECTOR_FALSE"
2019-06-01 22:57:42 +02:00
];
2019-06-01 22:57:42 +02:00
.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"
}