2 /************************************************************************
3 * MXChange v0.2.1 Start: 05/29/2004 *
4 * =============== Last change: 11/26/2004 *
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 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 - 2008 by Roland Haeder *
21 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
37 ************************************************************************/
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
45 // Abort if autopurge is not active or disabled by admin
46 if ((!EXT_IS_ACTIVE('autopurge')) || (getConfig('auto_purge_active') != 'Y')) {
51 // Search for mails from deleted members?
52 if (getConfig('ap_del_mails') == 'Y') {
53 // Okay, let's check for them...
54 $result_mails = SQL_QUERY_ESC("SELECT `sender`
55 FROM `{!_MYSQL_PREFIX!}_pool`
56 WHERE `data_type`='DELETED' AND `timestamp` <= (UNIX_TIMESTAMP() - %s)
57 ORDER BY `sender` ASC",
58 array(getConfig('ap_dm_timeout')), __FILE__, __LINE__);
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)) {
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__));
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();
76 // Reset query (to prevent possible errors) ...;
77 $result_mails = SQL_QUERY_ESC("SELECT `sender`
78 FROM `{!_MYSQL_PREFIX!}_pool`
79 WHERE `data_type`='DELETED' AND timestamp <= (UNIX_TIMESTAMP() - %s)
80 ORDER BY `sender` ASC",
81 array(getConfig('ap_dm_timeout')), __FILE__, __LINE__);
87 SQL_FREERESULT($result_mails);
89 // Now let's check for stats entries as well;
90 $result_mails = SQL_QUERY_ESC("SELECT `sender`
91 FROM `{!_MYSQL_PREFIX!}_user_stats`
92 WHERE `data_type`='DELETED' AND `timestamp_send` <= (UNIX_TIMESTAMP() - %s)
93 ORDER BY `sender` ASC",
94 array(getConfig('ap_dm_timeout')), __FILE__, __LINE__);
96 // Do we have "purged" mails?
97 if (SQL_NUMROWS($result_mails) > 0) {
98 // Okay, check for their sender's
99 while ($content = SQL_FETCHARRAY($result_mails)) {
101 $found = SQL_NUMROWS(SQL_QUERY_ESC("SELECT `userid` FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `userid`=%s LIMIT 1",
102 array(bigintval($content['sender'])), __FILE__, __LINE__));
104 // Okay we found some mails!
105 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_stats` WHERE `sender`=%s",
106 array(bigintval($content['sender'])), __FILE__, __LINE__);
107 $DELETED += SQL_AFFECTEDROWS();
109 // Reset query (to prevent possible errors) ...
110 $result_mails = SQL_QUERY_ESC("SELECT `sender`
111 FROM `{!_MYSQL_PREFIX!}_user_stats`
112 WHERE `data_type`='DELETED' AND timestamp_send <= (UNIX_TIMESTAMP() - %s)
113 ORDER BY `sender` ASC",
114 array(getConfig('ap_dm_timeout')), __FILE__, __LINE__);
120 SQL_FREERESULT($result_mails);
122 // Do we have deleted mails and the admin want's to receive a notification
123 if (($DELETED > 0) && (getConfig('ap_dm_notify') == 'Y')) {
124 // Send out email to admin
125 sendAdminNotification(getMessage('AUTOPURGE_ADMIN_DEL_MAILS_SUBJECT'), 'admin_autopurge_del_mails', $DELETED, '');