From cb6a5438ba9d1873212d6c156dddc6dc8aa07c13 Mon Sep 17 00:00:00 2001 From: Alan Date: Mon, 4 Mar 2024 11:47:51 +0800 Subject: [PATCH] update blacklist filters --- DataObjects/Core_notify_blacklist.php | 7 ++++++- DataObjects/Core_notify_sender_blacklist.php | 3 ++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/DataObjects/Core_notify_blacklist.php b/DataObjects/Core_notify_blacklist.php index e12ba860..305f0afc 100644 --- a/DataObjects/Core_notify_blacklist.php +++ b/DataObjects/Core_notify_blacklist.php @@ -37,7 +37,7 @@ class Pman_Core_DataObjects_Core_notify_blacklist extends DB_DataObject 'poor reputation', 'AntiSpam', 'ip address in rbl', - 'IP address blacklisted', + 'blacklisted', 'spamauditor.org', 'detect spam', 'message as spam', @@ -46,6 +46,11 @@ class Pman_Core_DataObjects_Core_notify_blacklist extends DB_DataObject 'blocked by sbl-xbl.spam', 'Sophos Anti Spam Engine', 'spam filters', + 'JunkMail', + 'block list', + 'Cloudmark Sender Intelligence', + 'Blocked by CSI', + ); foreach($match as $str) { diff --git a/DataObjects/Core_notify_sender_blacklist.php b/DataObjects/Core_notify_sender_blacklist.php index d60cfc5f..7ada6439 100644 --- a/DataObjects/Core_notify_sender_blacklist.php +++ b/DataObjects/Core_notify_sender_blacklist.php @@ -20,7 +20,8 @@ class Pman_Core_DataObjects_Core_notify_sender_blacklist extends DB_DataObject { $match = array( 'BLOCK-SEND-ER', - 'sender is listed on the block mail' // 'sniper? + 'sender is listed on the block mail', // 'sniper? + 'sender is in my black list', ); foreach($match as $str) { if (strpos($err, $str) !== false) { -- 2.39.2