diff --git a/admin/CF7_AntiSpam_Admin_Customizations.php b/admin/CF7_AntiSpam_Admin_Customizations.php index 3071068..f9790b6 100644 --- a/admin/CF7_AntiSpam_Admin_Customizations.php +++ b/admin/CF7_AntiSpam_Admin_Customizations.php @@ -828,6 +828,8 @@ public function cf7a_print_user_agent() { /** It prints the dnsbl info text */ public function cf7a_print_dnsbl() { printf( '

%s

', esc_html__( 'Check sender ip on DNS Blacklists, DNSBL are real-time lists of proven/recognised spam addresses. These may include lists of addresses of zombie computers or other machines used to send spam, Internet Service Providers (ISPs) that voluntarily host spammers, BUT they could also be users behind a proxy and that is why the method is no longer 100 per cent reliable. Add a DSNBL server url each line ', 'cf7-antispam' ) ); + /** Translators: %s%s%s - a spam score of xyz will be added */ + printf( '

%s%s%s

', esc_html__( '⚠️ Use the servers you trust as safe, and consider that for each server reporting the ip a spam score of ', 'cf7-antispam' ), floatval( $this->options['score']['_dnsbl'] ), esc_html__( ' will be added.', 'cf7-antispam' ) ); } /** It prints the honeypot info text */ diff --git a/engine/CF7_AntiSpam_Activator.php b/engine/CF7_AntiSpam_Activator.php index 84e1e5d..8fb9a83 100644 --- a/engine/CF7_AntiSpam_Activator.php +++ b/engine/CF7_AntiSpam_Activator.php @@ -116,15 +116,10 @@ public static function init_vars() { ), 'dnsbl_list' => array( /* ipv4 dnsbl */ - 'dnsbl-1.uceprotect.net', 'dnsbl-2.uceprotect.net', 'dnsbl-3.uceprotect.net', - 'dnsbl.sorbs.net', 'zen.spamhaus.org', - 'bl.spamcop.net', 'b.barracudacentral.org', - 'dnsbl.dronebl.org', - 'all.spamrats.com', /* ipv6 dnsbl but due to the unlimited number of ipv6 dnsl will have a lower impact */ 'bl.ipv6.spameatingmonkey.net', ),