X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fautopurge%2Fpurge-mails.php;h=83584677776085fa5f208aafb22e5160666e9d7b;hb=5e9e2e145dc720e1459a6f1f51f2a32f1fcc9b6d;hp=765c775836f6ce8df1a1092633d929ba85e96679;hpb=58bd7e0df5e4bee593b7ad46d66d3b1acbec2886;p=mailer.git diff --git a/inc/autopurge/purge-mails.php b/inc/autopurge/purge-mails.php index 765c775836..8358467777 100644 --- a/inc/autopurge/purge-mails.php +++ b/inc/autopurge/purge-mails.php @@ -43,7 +43,7 @@ if (!defined('__SECURITY')) { } // END - if // Abort if autopurge is not active or disabled by admin -if ((!isExtensionActive('autopurge')) || (getConfig('auto_purge_active') != 'Y') || (getConfig('ap_del_mails') != 'Y')) { +if ((!isExtensionActive('autopurge')) || (!isAutoPurgingActive()) || (getConfig('ap_del_mails') != 'Y')) { // Abort here return false; } // END - if @@ -54,7 +54,8 @@ $result_mails = SQL_QUERY("SELECT FROM `{?_MYSQL_PREFIX?}_pool` WHERE - `data_type`='DELETED' AND `timestamp` <= (UNIX_TIMESTAMP() - {?ap_dm_timeout?}) + `data_type`='DELETED' AND + `timestamp` <= (UNIX_TIMESTAMP() - {?ap_dm_timeout?}) ORDER BY `sender` ASC", __FILE__, __LINE__); @@ -62,7 +63,7 @@ ORDER BY $deletedStats = '0'; // Do we have "purged" mails? -if (SQL_NUMROWS($result_mails) > 0) { +if (!SQL_HASZERONUMS($result_mails)) { // Okay, check for their sender's while ($content = SQL_FETCHARRAY($result_mails)) { // Check now... @@ -80,7 +81,8 @@ if (SQL_NUMROWS($result_mails) > 0) { FROM `{?_MYSQL_PREFIX?}_pool` WHERE - `data_type`='DELETED' AND timestamp <= (UNIX_TIMESTAMP() - {?ap_dm_timeout?}) + `data_type`='DELETED' AND + `timestamp` <= (UNIX_TIMESTAMP() - {?ap_dm_timeout?}) ORDER BY `sender` ASC", __FILE__, __LINE__); } // END - if @@ -101,7 +103,7 @@ ORDER BY `userid` ASC", __FILE__, __LINE__); // Do we have "purged" mails? -if (SQL_NUMROWS($result_mails) > 0) { +if (!SQL_HASZERONUMS($result_mails)) { // Okay, check for their sender's while ($content = SQL_FETCHARRAY($result_mails)) { // Check now... @@ -115,7 +117,7 @@ if (SQL_NUMROWS($result_mails) > 0) { // Reset query (to prevent possible errors) ... $result_mails = SQL_QUERY("SELECT - `userid` AS userid + `userid` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE @@ -132,7 +134,7 @@ SQL_FREERESULT($result_mails); // Do we have deleted mails and the admin want's to receive a notification if (($deletedStats > 0) && (getConfig('ap_dm_notify') == 'Y')) { // Send out email to admin - sendAdminNotification('{--ADMIN_AUTOPURGE_DEL_MAILS_SUBJECT--}', 'admin_autopurge_del_mails', $deletedStats); + sendAdminNotification('{--ADMIN_AUTOPURGE_DELETE_MAILS_SUBJECT--}', 'admin_autopurge_del_mails', $deletedStats); } // END - if //