Set timeout for operations

master
blallo 2020-04-28 23:44:51 +02:00
parent dc71cfdef4
commit 694c4ff93c
Signed by: blallo
GPG Key ID: 0CBE577C9B72DC3F
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package main
import ( import (
"os" "os"
"time"
mail "gopkg.in/mail.v2" mail "gopkg.in/mail.v2"
) )
@ -33,6 +34,7 @@ func deliverMessage(s *ServerConfig, m *mail.Message) error {
if s.Encryption { if s.Encryption {
dialer.StartTLSPolicy = mail.MandatoryStartTLS dialer.StartTLSPolicy = mail.MandatoryStartTLS
} }
dialer.Timeout = 30 * time.Second
return dialer.DialAndSend(m) return dialer.DialAndSend(m)
} }