From 8503f76747d47160d5d8239e275a7d6d8965dacd Mon Sep 17 00:00:00 2001 From: Eugene Bujak Date: Wed, 10 Oct 2018 00:59:09 +0300 Subject: [PATCH] Add default disabled hosts filters. --- config.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config.go b/config.go index 46838663..4860c2a9 100644 --- a/config.go +++ b/config.go @@ -79,6 +79,9 @@ var config = configuration{ }, Filters: []filter{ {Enabled: true, URL: "https://adguardteam.github.io/AdGuardSDNSFilter/Filters/filter.txt"}, + {Enabled: false, URL: "https://adaway.org/hosts.txt", Title: "AdAway"}, + {Enabled: false, URL: "https://hosts-file.net/ad_servers.txt", Title: "hpHosts - Ad and Tracking servers only"}, + {Enabled: false, URL: "http://www.malwaredomainlist.com/hostslist/hosts.txt", Title: "MalwareDomainList.com Hosts List"}, }, }