1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-06 14:35:56 +02:00

[ticket/17292] Use new spamhaus.org check url

PHPBB3-17292
This commit is contained in:
Christian Schnegelberger 2024-02-22 19:16:54 +01:00
parent eabe2632dc
commit 00b8cb1e52

View File

@ -1474,12 +1474,12 @@ class session
}
$dnsbl_check = array(
'sbl.spamhaus.org' => ['http://www.spamhaus.org/query/bl?ip=', 'check_dnsbl_spamhaus'],
'sbl.spamhaus.org' => ['https://check.spamhaus.org/listed/?searchterm=', 'check_dnsbl_spamhaus'],
);
if ($mode == 'register')
{
$dnsbl_check['bl.spamcop.net'] = ['http://spamcop.net/bl.shtml?', 'check_dnsbl_ipv4_generic'];
$dnsbl_check['bl.spamcop.net'] = ['https://spamcop.net/bl.shtml?', 'check_dnsbl_ipv4_generic'];
}
if ($ip)