Page MenuHomestyx hydra

MetaMTAMailReceivedGarbageCollector.php
No OneTemporary

MetaMTAMailReceivedGarbageCollector.php

<?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);
}
}

File Metadata

Mime Type
text/x-php
Expires
Thu, Feb 6, 1:35 AM (8 h, 45 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
33774
Default Alt Text
MetaMTAMailReceivedGarbageCollector.php (665 B)

Event Timeline