From 21081836ba2c408aad04591980f5551a58fdb89d Mon Sep 17 00:00:00 2001
From: Alukardd <alukardd@alukardd.org>
Date: Sun, 7 Dec 2014 16:07:48 +0300
Subject: [PATCH] Allow send mail without authentication if SMTP server allow
 this

---
 modules/mailer/mailer.go | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/modules/mailer/mailer.go b/modules/mailer/mailer.go
index df3efb610b..474e1481cd 100644
--- a/modules/mailer/mailer.go
+++ b/modules/mailer/mailer.go
@@ -127,7 +127,10 @@ func Send(msg *Message) (int, error) {
 		return 0, fmt.Errorf("empty email body")
 	}
 
-	auth := smtp.PlainAuth("", setting.MailService.User, setting.MailService.Passwd, host[0])
+	var auth smtp.Auth
+	if len(setting.MailService.Passwd) > 0 {
+		auth = smtp.PlainAuth("", setting.MailService.User, setting.MailService.Passwd, host[0])
+	}
 
 	if msg.Massive {
 		// send mail to multiple emails one by one