mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 09:19:06 +01:00
Fix #214
This commit is contained in:
parent
9c3aa6936a
commit
63baf76ab2
4 changed files with 5 additions and 3 deletions
2
gogs.go
2
gogs.go
|
@ -17,7 +17,7 @@ import (
|
|||
"github.com/gogits/gogs/modules/setting"
|
||||
)
|
||||
|
||||
const APP_VER = "0.4.1.0602 Alpha"
|
||||
const APP_VER = "0.4.1.0603 Alpha"
|
||||
|
||||
func init() {
|
||||
runtime.GOMAXPROCS(runtime.NumCPU())
|
||||
|
|
|
@ -26,7 +26,7 @@ func NewMailMessageFrom(To []string, from, subject, body string) Message {
|
|||
|
||||
// Create New mail message use MailFrom and MailUser
|
||||
func NewMailMessage(To []string, subject, body string) Message {
|
||||
return NewMailMessageFrom(To, setting.MailService.User, subject, body)
|
||||
return NewMailMessageFrom(To, setting.MailService.From, subject, body)
|
||||
}
|
||||
|
||||
func GetMailTmplData(user *models.User) map[interface{}]interface{} {
|
||||
|
|
|
@ -330,6 +330,7 @@ func newSessionService() {
|
|||
type Mailer struct {
|
||||
Name string
|
||||
Host string
|
||||
From string
|
||||
User, Passwd string
|
||||
}
|
||||
|
||||
|
@ -363,6 +364,7 @@ func newMailService() {
|
|||
User: Cfg.MustValue("mailer", "USER"),
|
||||
Passwd: Cfg.MustValue("mailer", "PASSWD"),
|
||||
}
|
||||
MailService.From = Cfg.MustValue("mailer", "FROM", MailService.User)
|
||||
log.Info("Mail Service Enabled")
|
||||
}
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
0.4.1.0602 Alpha
|
||||
0.4.1.0603 Alpha
|
Loading…
Reference in a new issue