2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 06/25/2004 *
4 * =================== Last change: 05/05/2005 *
6 * -------------------------------------------------------------------- *
7 * File : what-autopurge.php *
8 * -------------------------------------------------------------------- *
9 * Short description : AutoPurge configuration *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : AutoPurge-Konfiguration *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2011 by Mailer Developer Team *
20 * For more information visit: http://www.mxchange.org *
22 * This program is free software; you can redistribute it and/or modify *
23 * it under the terms of the GNU General Public License as published by *
24 * the Free Software Foundation; either version 2 of the License, or *
25 * (at your option) any later version. *
27 * This program is distributed in the hope that it will be useful, *
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
30 * GNU General Public License for more details. *
32 * You should have received a copy of the GNU General Public License *
33 * along with this program; if not, write to the Free Software *
34 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
36 ************************************************************************/
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
47 // Data was submitted so we store it
48 adminSaveSettingsFromPostData();
50 // Output de-/activation selections
51 $content['ap_inactive_selection'] = addSelectionBox('yn', getAutopurgeInactive() , 'autopurge_inactive');
52 $content['ap_unconfirmed_selection'] = addSelectionBox('yn', getConfig('autopurge_unconfirmed'), 'autopurge_unconfirmed');
53 $content['ap_tasks_selection'] = addSelectionBox('yn', getConfig('autopurge_tasks') , 'autopurge_tasks');
54 $content['ap_del_mails_selection'] = addSelectionBox('yn', getConfig('ap_del_mails') , 'ap_del_mails');
56 // Output notification selections
57 $content['ap_notify_inactive'] = addSelectionBox('yn', getConfig('ap_in_notify') , 'ap_in_notify');
58 $content['ap_notify_unconfirmed'] = addSelectionBox('yn', getConfig('ap_un_notify') , 'ap_un_notify');
59 $content['ap_notify_tasks'] = addSelectionBox('yn', getConfig('ap_tasks_notify'), 'ap_tasks_notify');
60 $content['ap_notify_del_mails'] = addSelectionBox('yn', getConfig('ap_dm_notify') , 'ap_dm_notify');
62 // Output time selection boxes
63 $content['ap_in_since'] = createConfigurationTimeSelections('ap_inactive_since' , 'MWDh');
64 $content['ap_in_time'] = createConfigurationTimeSelections('ap_inactive_time' , 'MWDh');
65 $content['ap_un_time'] = createConfigurationTimeSelections('ap_unconfirmed_time', 'MWDh');
66 $content['ap_task_time'] = createConfigurationTimeSelections('ap_tasks_time' , 'MWDh');
67 $content['ap_del_mails_time'] = createConfigurationTimeSelections('ap_dm_timeout' , 'MWDh');
69 // Mail confirmation links
70 $content['auto_purge'] = createConfigurationTimeSelections('auto_purge', 'MWD');
72 // Prepare more Y/N selections
73 foreach (array('auto_purge_active') as $entry) {
74 $content[$entry . '_y'] = '';
75 $content[$entry . '_n'] = '';
76 $content[$entry . '_' . strtolower(getConfig('auto_purge_active'))] = ' checked="checked"';
80 loadTemplate('admin_config_autopurge', false, $content);