diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-04-16 09:25:17 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-04-16 09:25:17 +0000 |
| commit | 39eda9547488b2600bae2a94a779971bc9353381 (patch) | |
| tree | 54b29092df716f79f9df3b022b3fbad33c154b44 | |
| parent | 470afd9f281fc2e08395800eb9833135080214f4 (diff) | |
- allow to set threshold days as command line argument, set default value to '7'
- comment out the code for database without foreign keys (we rely on this feature in core code, so why not here?)
git-svn-id: https://svn.roundcube.net/trunk@3497 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rwxr-xr-x | roundcubemail/bin/cleandb.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/roundcubemail/bin/cleandb.php b/roundcubemail/bin/cleandb.php index c40a1cd6b..392d71b12 100755 --- a/roundcubemail/bin/cleandb.php +++ b/roundcubemail/bin/cleandb.php @@ -40,12 +40,18 @@ $db = $RCMAIL->get_dbh(); if (!$db->is_connected() || $db->is_error) die("No DB connection"); +if (!empty($_SERVER['argv'][1])) + $days = intval($_SERVER['argv'][1]); +else + $days = 7; + // remove all deleted records older than two days -$threshold = date('Y-m-d 00:00:00', time() - 2 * 86400); +$threshold = date('Y-m-d 00:00:00', time() - $days * 86400); foreach (array('contacts','contactgroups','identities') as $table) { // also delete linked records // could be skipped for databases which respect foreign key constraints +/* if ($table == 'contacts' || $table == 'contactgroups') { $ids = array(); $pk = $primary_keys[$table]; @@ -65,7 +71,7 @@ foreach (array('contacts','contactgroups','identities') as $table) { echo $db->affected_rows() . " records deleted from '".get_table_name('contactgroupmembers')."'\n"; } } - +*/ // delete outdated records $db->query( "DELETE FROM ".get_table_name($table)." |
