mirror of
https://github.com/Crazyco-xyz/48hr.email.git
synced 2025-07-01 14:37:09 +02:00
shorter interval for purge operations
This commit is contained in:
parent
38cd67f881
commit
5eaaad5a5d
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue