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

@@ -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 {