0
|
1 #!/usr/bin/env php
|
|
2 <?php
|
|
3 /*
|
|
4 +-----------------------------------------------------------------------+
|
|
5 | bin/cleandb.sh |
|
|
6 | |
|
|
7 | This file is part of the Roundcube Webmail client |
|
|
8 | Copyright (C) 2010-2015, The Roundcube Dev Team |
|
|
9 | |
|
|
10 | Licensed under the GNU General Public License version 3 or |
|
|
11 | any later version with exceptions for skins & plugins. |
|
|
12 | See the README file for a full license statement. |
|
|
13 | |
|
|
14 | PURPOSE: |
|
|
15 | Finally remove all db records marked as deleted some time ago |
|
|
16 | |
|
|
17 +-----------------------------------------------------------------------+
|
|
18 | Author: Thomas Bruederli <roundcube@gmail.com> |
|
|
19 +-----------------------------------------------------------------------+
|
|
20 */
|
|
21
|
|
22 define('INSTALL_PATH', realpath(__DIR__ . '/..') . '/' );
|
|
23
|
|
24 require INSTALL_PATH.'program/include/clisetup.php';
|
|
25
|
|
26 if (!empty($_SERVER['argv'][1]))
|
|
27 $days = intval($_SERVER['argv'][1]);
|
|
28 else
|
|
29 $days = 7;
|
|
30
|
|
31 rcmail_utils::db_clean($days);
|
|
32
|
|
33 ?>
|