Added SMTP connection options.

This commit is contained in:
Ylian Saint-Hilaire
2019-09-16 10:49:35 -07:00
parent cb27ef4e8b
commit e6fdc3be33
8 changed files with 14 additions and 27 deletions

View File

@@ -145,6 +145,11 @@
"host": "smtp.myserver.com",
"port": 25,
"from": "myemail@myserver.com",
"tls": false
"__tls__": "When 'tls' is set to true, TLS is used immidiatly when connecting. For SMTP servers that use TLSSTART, set this to 'false' and TLS will still be used.",
"tls": false,
"___tlscertcheck__": "When set to false, the TLS certificate of the SMTP server is not checked.",
"_tlscertcheck": false,
"__tlsstrict__": "When set to true, TLS cypher setup is more limited, SSLv2 and SSLv3 are not allowed.",
"_tlsstrict": true
}
}