Fixes for reset
[mailer.git] / inc / autopurge / purge-mails.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 05/29/2004 *
4  * ===============                              Last change: 11/26/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : autopurge.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Automatical purging of outdated mail links       *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Auto-Loeschung von veralteten Mail-Links         *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } // END - if
43
44 // Abort if autopurge is not active or disabled by admin
45 if ((!isExtensionActive('autopurge')) || (getConfig('auto_purge_active') != 'Y') || (getConfig('ap_del_mails') != 'Y')) {
46         // Abort here
47         return false;
48 } // END - if
49
50 // Okay, let's check for deleted mails
51 $result_mails = SQL_QUERY("SELECT
52         `sender`
53 FROM
54         `{?_MYSQL_PREFIX?}_pool`
55 WHERE
56         `data_type`='DELETED' AND `timestamp` <= (UNIX_TIMESTAMP() - {?ap_dm_timeout?})
57 ORDER BY
58         `sender` ASC", __FILE__, __LINE__);
59
60 // Reset counter...
61 $DELETED = 0;
62
63 // Do we have "purged" mails?
64 if (SQL_NUMROWS($result_mails) > 0) {
65         // Okay, check for their sender's
66         while ($content = SQL_FETCHARRAY($result_mails)) {
67                 // Check now...
68                 $fount = SQL_NUMROWS(SQL_QUERY_ESC("SELECT userid FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1",
69                         array(bigintval($content['sender'])), __FILE__, __LINE__));
70                 if ($found == 0) {
71                         // Okay we found some mails!
72                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_pool` WHERE `sender`=%s",
73                                 array(bigintval($content['sender'])), __FILE__, __LINE__);
74                         $DELETED += SQL_AFFECTEDROWS();
75
76                         // Reset query (to prevent possible errors) ...;
77                         $result_mails = SQL_QUERY("SELECT
78         `sender`
79 FROM
80         `{?_MYSQL_PREFIX?}_pool`
81 WHERE
82         `data_type`='DELETED' AND timestamp <= (UNIX_TIMESTAMP() - {?ap_dm_timeout?})
83 ORDER BY
84         `sender` ASC", __FILE__, __LINE__);
85                 }
86         }
87 }
88
89 // Free memory
90 SQL_FREERESULT($result_mails);
91
92 // Now let's check for stats entries as well;
93 $result_mails = SQL_QUERY("SELECT
94         `userid` AS sender
95 FROM
96         `{?_MYSQL_PREFIX?}_user_stats`
97 WHERE
98         `timestamp_send` <= (UNIX_TIMESTAMP() - {?ap_dm_timeout?})
99 ORDER BY
100         `sender` ASC", __FILE__, __LINE__);
101
102 // Do we have "purged" mails?
103 if (SQL_NUMROWS($result_mails) > 0) {
104         // Okay, check for their sender's
105         while ($content = SQL_FETCHARRAY($result_mails)) {
106                 // Check now...
107                 $found = SQL_NUMROWS(SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1",
108                         array(bigintval($content['sender'])), __FILE__, __LINE__));
109                 if ($found == 0) {
110                         // Okay we found some mails!
111                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `sender`=%s",
112                                 array(bigintval($content['sender'])), __FILE__, __LINE__);
113                         $DELETED += SQL_AFFECTEDROWS();
114
115                         // Reset query (to prevent possible errors) ...
116                         $result_mails = SQL_QUERY("SELECT
117         `userid` AS sender
118 FROM
119         `{?_MYSQL_PREFIX?}_user_stats`
120 WHERE
121         `timestamp_send` <= (UNIX_TIMESTAMP() - {?ap_dm_timeout?})
122 ORDER BY
123         `sender` ASC", __FILE__, __LINE__);
124                 }
125         }
126 }
127
128 // Free memory
129 SQL_FREERESULT($result_mails);
130
131 // Do we have deleted mails and the admin want's to receive a notification
132 if (($DELETED > 0) && (getConfig('ap_dm_notify') == 'Y')) {
133         // Send out email to admin
134         sendAdminNotification(getMessage('AUTOPURGE_ADMIN_DEL_MAILS_SUBJECT'), 'admin_autopurge_del_mails', $DELETED, '');
135 } // END - if
136
137 //
138 ?>