Skip to content
Snippets Groups Projects
Commit 3333bdea authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

IPs listed in dnsbl_exmempt.cfg are exempt from RBL lookups

parent 6e85eec8
Branches
No related tags found
No related merge requests found
...@@ -3047,7 +3047,7 @@ function dnsbl_exempt(ip) { ...@@ -3047,7 +3047,7 @@ function dnsbl_exempt(ip) {
return true; return true;
if(ip.indexOf("127.") == 0) if(ip.indexOf("127.") == 0)
return true; return true;
return false; return system.findstr(system.ctrl_dir + "dnsbl_exempt.cfg", ip);
} }
function check_dnsbl(ip, rbl) { function check_dnsbl(ip, rbl) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment