]> git.mxchange.org Git - mailer.git/blobdiff - inc/purge/purge-mails.php
But only when it is not empty
[mailer.git] / inc / purge / purge-mails.php
index ca8282eacf01ee907bad4720dbceb15ee7262132..e3c41d4435055b0abde65baf6d4d92a2f5ab6ec8 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -43,7 +43,7 @@ if (!defined('__SECURITY')) {
 // Abort if autopurge is not active or disabled by admin
 if ((!isExtensionActive('autopurge')) || (!isAutoPurgingActive()) || (getConfig('ap_del_mails') != 'Y')) {
        // Abort here
-       return false;
+       return FALSE;
 } // END - if
 
 // Okay, let's check for deleted mails
@@ -60,7 +60,7 @@ ORDER BY
 // Init counter...
 $deletedStats = '0';
 
-// Do we have "purged" mails?
+// Is there "purged" mails?
 if (!SQL_HASZERONUMS($result_mails)) {
        // Okay, check for their sender's
        while ($content = SQL_FETCHARRAY($result_mails)) {
@@ -89,7 +89,7 @@ WHERE
 ORDER BY
        `userid` ASC", __FILE__, __LINE__);
 
-// Do we have "purged" mails?
+// Is there "purged" mails?
 if (!SQL_HASZERONUMS($result_mails)) {
        // Okay, check for their sender's
        while ($content = SQL_FETCHARRAY($result_mails)) {
@@ -118,10 +118,10 @@ ORDER BY
 // Free memory
 SQL_FREERESULT($result_mails);
 
-// Do we have deleted mails and the admin want's to receive a notification
+// Is there 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_DELETE_MAILS_SUBJECT--}', 'admin_autopurge_del_mails', $deletedStats);
+       sendAdminNotification('{--ADMIN_AUTOPURGE_DELETE_MAILS_SUBJECT--}', 'admin_purge_del_mails', $deletedStats);
 } // END - if
 
 // [EOF]