Skip to content

Commit 1a2cbef

Browse files
committed
Initialise BLACKLIST_EMAIL_ON_BOUNCE to a much higher value and ensure bounce_unsubscribe_threshold follows it
1 parent e5a1b49 commit 1a2cbef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public_html/lists/admin/init.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,9 +496,9 @@
496496
define('EMAIL_ADDRESS_VALIDATION_LEVEL', 3);
497497
}
498498
if (!defined('BLACKLIST_EMAIL_ON_BOUNCE')) {
499-
define('BLACKLIST_EMAIL_ON_BOUNCE', 5);
499+
define('BLACKLIST_EMAIL_ON_BOUNCE', 50);
500500
}
501-
if ($bounce_unsubscribe_threshold < BLACKLIST_EMAIL_ON_BOUNCE) {
501+
if ($bounce_unsubscribe_threshold > BLACKLIST_EMAIL_ON_BOUNCE) {
502502
$bounce_unsubscribe_threshold = BLACKLIST_EMAIL_ON_BOUNCE;
503503
}
504504

0 commit comments

Comments
 (0)