Skip to content

Commit 78c5972

Browse files
committed
Fix antispam block for unsubscribe anonymous users
1 parent 39bdbd6 commit 78c5972

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

conf/_application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* Release date (ISO)
2222
* @global string
2323
*/
24-
$app_date = '2019-02-26';
24+
$app_date = '2019-02-27';
2525

2626
/**
2727
* Long version string for checking differences

htsrv/anon_unsubscribe.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@
3232
case 'comment':
3333
// Unsubscribe anonymous user from notifications of replies on Items where the user posted a comment:
3434

35-
// Stop a request from the blocked IP addresses or Domains:
36-
antispam_block_request();
35+
// We always want to allow someone to unsubscribe from email they don't want to receive. Even if they are a suspected spammer themselves.
36+
// Do NOT Stop a request from the blocked IP addresses or Domains:
37+
//antispam_block_request();
3738

3839
if( !is_email( $anon_email ) )
3940
{

0 commit comments

Comments
 (0)