From: Michael Tremer Date: Wed, 31 Dec 2025 14:10:47 +0000 (+0000) Subject: dnsbl: Contact the API using its public domain name X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5c0c3e50e7c214ed8bed90716cb057fb3a76c71;p=ipfire.org.git dnsbl: Contact the API using its public domain name Signed-off-by: Michael Tremer --- diff --git a/src/backend/dnsbl.py b/src/backend/dnsbl.py index 772bf5ff..18329d0a 100644 --- a/src/backend/dnsbl.py +++ b/src/backend/dnsbl.py @@ -24,8 +24,7 @@ class DNSBL(Object): # Format the URL url = urllib.parse.urljoin( - #"https://api.dnsbl.ipfire.org", - "http://dnsbl01.haj.ipfire.org:8000", path, + "https://api.dnsbl.ipfire.org", path, ) # Append any query arguments to the URL