Browse Source

[Conf] Restore ability to disable phishtank

tags/1.8.1
Alexander Moisseev 5 years ago
parent
commit
fda9e074ec
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      conf/modules.d/phishing.conf
  2. 1
    1
      src/plugins/lua/phishing.lua

+ 1
- 1
conf/modules.d/phishing.conf View File

@@ -20,7 +20,7 @@ phishing {
openphish_premium = false;
openphish_map = "https://www.openphish.com/feed.txt";
# Disabled by default
phishtank_enabled = false;
phishtank_enabled = true;

# Make exclusions for known redirectors
redirector_domains = [

+ 1
- 1
src/plugins/lua/phishing.lua View File

@@ -40,7 +40,7 @@ local phishtank_suffix = 'phishtank.rspamd.com'
-- Not enabled by default as their feed is quite large
local openphish_premium = false
-- Published via DNS
local phishtank_enabled = true
local phishtank_enabled = false
local generic_service_hash
local openphish_hash
local generic_service_data = {}

Loading…
Cancel
Save