1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
<?php
require_once 'Horde/Maintenance.php';
require_once $GLOBALS['registry']->get('fileroot', 'imp') . '/lib/base.php';
/**
* $Horde: imp/lib/Maintenance/imp.php,v 1.19.10.8 2008/01/02 11:32:05 jan Exp $
*
* The Maintenance_IMP class defines the maintenance operations run upon
* login to IMP.
*
* Copyright 2001-2008 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
* @author Michael Slusarz <slusarz@horde.org>
* @since IMP 3.0
* @package Horde_Maintenance
*/
class Maintenance_IMP extends Maintenance {
/**
* Hash holding maintenance preference names.
*
* @var array
*/
var $maint_tasks = array(
'tos_agreement' => MAINTENANCE_FIRST_LOGIN,
'fetchmail_login' => MAINTENANCE_EVERY,
'rename_sentmail_monthly' => MAINTENANCE_MONTHLY,
'delete_sentmail_monthly' => MAINTENANCE_MONTHLY,
'delete_attachments_monthly' => MAINTENANCE_MONTHLY,
'purge_sentmail' => MAINTENANCE_MONTHLY,
'purge_spam' => MAINTENANCE_MONTHLY,
'purge_trash' => MAINTENANCE_MONTHLY
);
}
|