shorter interval for purge operations

pull/16/head
ClaraCrazy 2024-10-01 17:16:36 +02:00
parent 38cd67f881
commit 5eaaad5a5d
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class MailProcessingService extends EventEmitter {
this.imapService.once(ImapService.EVENT_INITIAL_LOAD_DONE, () =>
this._deleteOldMails()
)
setInterval(() => this._deleteOldMails(), 1000 * 3600 * 6)
setInterval(() => this._deleteOldMails(), 10 * 60 * 1000)
}
getMailSummaries(address) {