Better TLS Configuration

This commit is contained in:
Uriel Fanelli 2023-06-18 19:19:55 +02:00
parent 1af4d062fd
commit 223b65994c
1 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,6 @@ func init() {
if os.Getenv("USETLS") == "true" {
log.Println("Preparing TLS Keys")
ZMakecert()
ZangSmtpServer.ConfigureTLS(CrtFile, KeyFile)
ZangSmtpServer.TLSListener = false
ZangSmtpServer.TLSRequired = true
log.Println("Using TLS: ", ZangSmtpServer.TLSRequired)
@ -59,6 +58,8 @@ func init() {
func main() {
log.Println("Starting the server....")
ZangSmtpServer.ConfigureTLS(CrtFile, KeyFile)
defer log.Println("Shutting down the server")