mirror of
https://github.com/mjl-/mox.git
synced 2025-07-12 17:04:39 +03:00
disable tls session tickets to workaround deliverability issues with incoming email from microsoft
for issue #237
This commit is contained in:
@ -1920,7 +1920,8 @@ func loadTLSKeyCerts(configFile, kind string, ctls *config.TLS) error {
|
||||
certs = append(certs, cert)
|
||||
}
|
||||
ctls.Config = &tls.Config{
|
||||
Certificates: certs,
|
||||
Certificates: certs,
|
||||
SessionTicketsDisabled: true,
|
||||
}
|
||||
ctls.ConfigFallback = ctls.Config
|
||||
return nil
|
||||
|
Reference in New Issue
Block a user