Add a few more initial logs

This commit is contained in:
ClaraCrazy 2025-12-12 22:46:07 +01:00
parent 243e2f95ca
commit a2db3d6977
No known key found for this signature in database
GPG key ID: EBBC896ACB497011

View file

@ -54,6 +54,8 @@ class MailProcessingService extends EventEmitter {
this.initialLoadDone = true
console.log(`Initial load done, got ${this.mailRepository.mailCount()} mails`)
console.log(`Fetching and deleting mails every ${this.config.imap.refreshIntervalSeconds} seconds`)
console.log(`Mails older than ${this.config.email.purgeTime.time} ${this.config.email.purgeTime.unit} will be deleted`)
console.log(`The example emails are: ${this.config.email.examples.uids.join(', ')}`)
}
onNewMail(mail) {