1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-02 01:48:23 +01:00
phorge-phorge/src/applications/metamta/garbagecollector/MetaMTAMailReceivedGarbageCollector.php

30 lines
665 B
PHP
Raw Normal View History

<?php
final class MetaMTAMailReceivedGarbageCollector
extends PhabricatorGarbageCollector {
const COLLECTORCONST = 'metamta.received';
public function getCollectorName() {
return pht('Mail (Received)');
}
public function getDefaultRetentionPolicy() {
return phutil_units('90 days in seconds');
}
protected function collectGarbage() {
$table = new PhabricatorMetaMTAReceivedMail();
$conn_w = $table->establishConnection('w');
queryfx(
$conn_w,
'DELETE FROM %T WHERE dateCreated < %d LIMIT 100',
$table->getTableName(),
$this->getGarbageEpoch());
return ($conn_w->getAffectedRows() == 100);
}
}