mirror of
https://github.com/mattermost/mattermost.git
synced 2026-08-26 21:27:40 -05:00
Fixing build
This commit is contained in:
+1
-1
@@ -10,7 +10,7 @@
|
||||
"ServiceSettings": {
|
||||
"SiteName": "Mattermost Preview",
|
||||
"Domain": "",
|
||||
"Mode" : "prod",
|
||||
"Mode" : "dev",
|
||||
"AllowTesting" : false,
|
||||
"UseSSL": false,
|
||||
"Port": "8065",
|
||||
|
||||
+10
-6
@@ -40,23 +40,27 @@ func SendMail(to, subject, body string) *model.AppError {
|
||||
|
||||
auth := smtp.PlainAuth("", Cfg.EmailSettings.SMTPUsername, Cfg.EmailSettings.SMTPPassword, host)
|
||||
|
||||
var conn net.Conn
|
||||
var err error
|
||||
|
||||
if Cfg.EmailSettings.UseTLS {
|
||||
tlsconfig := &tls.Config{
|
||||
InsecureSkipVerify: true,
|
||||
ServerName: host,
|
||||
}
|
||||
|
||||
conn, err := tls.Dial("tcp", Cfg.EmailSettings.SMTPServer, tlsconfig)
|
||||
conn, err = tls.Dial("tcp", Cfg.EmailSettings.SMTPServer, tlsconfig)
|
||||
if err != nil {
|
||||
return model.NewAppError("SendMail", "Failed to open TLS connection", err.Error())
|
||||
}
|
||||
defer conn.Close()
|
||||
} else {
|
||||
conn, err = net.Dial("tcp", Cfg.EmailSettings.SMTPServer)
|
||||
if err != nil {
|
||||
return model.NewAppError("SendMail", "Failed to open connection", err.Error())
|
||||
}
|
||||
}
|
||||
|
||||
conn, err := net.Dial("tcp", Cfg.EmailSettings.SMTPServer)
|
||||
if err != nil {
|
||||
return model.NewAppError("SendMail", "Failed to open connection", err.Error())
|
||||
}
|
||||
defer conn.Close()
|
||||
|
||||
c, err := smtp.NewClient(conn, host)
|
||||
if err != nil {
|
||||
|
||||
Reference in New Issue
Block a user