Update readme, resend interval 10m

This commit is contained in:
Neil Alexander
2021-07-09 23:45:29 +01:00
parent 5838d89581
commit 3d96c6186b
2 changed files with 1 additions and 2 deletions

View File

@@ -80,7 +80,6 @@ There are a few important notes:
There are probably all sorts of bugs, but the ones that we know of are:
* IMAP behaviour might not be entirely spec-compliant in all cases, so your mileage with mail clients might vary;
* SMTP queues up outbound mails in memory rather than in the database right now — if you restart Yggmail, any unsent mails will be lost;
* IMAP search isn't implemented yet and will instead return all mails.
The code's also a bit of a mess, so sorry about that.

View File

@@ -43,7 +43,7 @@ func (qs *Queues) manager() {
for _, destination := range destinations {
_, _ = qs.queueFor(destination)
}
time.AfterFunc(time.Minute*5, qs.manager)
time.AfterFunc(time.Minute*10, qs.manager)
}
func (qs *Queues) QueueFor(from string, rcpts []string, content []byte) error {