Make Conversation Cleanup Configurable

This commit is contained in:
miqrogroove 2018-06-21 07:43:40 -04:00 committed by GitHub
parent e84c48b979
commit 62e61a75f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -323,10 +323,11 @@ class DBClean {
Config::set('system', 'dbclean-last-id-9', $last_id);
} elseif ($stage == 10) {
$last_id = Config::get('system', 'dbclean-last-id-10', 0);
$days = Config::get('system', 'dbclean-expire-conversation', 7);
logger("Deleting old conversations. Last created: ".$last_id);
$r = dba::p("SELECT `received`, `item-uri` FROM `conversation`
WHERE `received` < UTC_TIMESTAMP() - INTERVAL 90 DAY
WHERE `received` < UTC_TIMESTAMP() - INTERVAL $days DAY
ORDER BY `received` LIMIT ".intval($limit));
$count = dba::num_rows($r);
if ($count > 0) {