From 38b6f636746948a8d28e244b2ddb2e135b8443eb Mon Sep 17 00:00:00 2001 From: Alan Date: Mon, 22 Jan 2024 13:12:11 +0800 Subject: [PATCH] extra match for bad sender --- DataObjects/Core_notify_sender_blacklist.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DataObjects/Core_notify_sender_blacklist.php b/DataObjects/Core_notify_sender_blacklist.php index 9c27a566..d60cfc5f 100644 --- a/DataObjects/Core_notify_sender_blacklist.php +++ b/DataObjects/Core_notify_sender_blacklist.php @@ -19,7 +19,8 @@ class Pman_Core_DataObjects_Core_notify_sender_blacklist extends DB_DataObject function messageIsBlacklisted($err) { $match = array( - 'BLOCK-SEND-ER' + 'BLOCK-SEND-ER', + 'sender is listed on the block mail' // 'sniper? ); foreach($match as $str) { if (strpos($err, $str) !== false) { -- 2.39.2