mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-09-18 17:48:00 +08:00
chore!(all): attempt to update beego to v2
BREAKING CHANGE: beego has update to v2, and this version of mindoc IS NOT TESTED AND STABLE!!!
This commit is contained in:
@@ -17,7 +17,7 @@ import (
|
||||
"regexp"
|
||||
"strconv"
|
||||
"strings"
|
||||
"github.com/astaxie/beego"
|
||||
"github.com/beego/beego/v2/adapter/logs"
|
||||
)
|
||||
|
||||
var (
|
||||
@@ -229,7 +229,6 @@ func (c *SMTPClient) SendTLS(m Mail, message bytes.Buffer) error {
|
||||
return err
|
||||
}
|
||||
|
||||
|
||||
ct, err = smtp.NewClient(conn, c.host)
|
||||
if err != nil {
|
||||
log.Println(err)
|
||||
@@ -247,8 +246,8 @@ func (c *SMTPClient) SendTLS(m Mail, message bytes.Buffer) error {
|
||||
//}
|
||||
|
||||
fmt.Println(c.smtpAuth)
|
||||
if ok,s := ct.Extension("AUTH"); ok {
|
||||
beego.Info(s)
|
||||
if ok, s := ct.Extension("AUTH"); ok {
|
||||
logs.Info(s)
|
||||
// Auth
|
||||
if err = ct.Auth(c.smtpAuth); err != nil {
|
||||
log.Println("Auth Error:",
|
||||
|
Reference in New Issue
Block a user