1
0
Fork 0
forked from forgejo/forgejo
This commit is contained in:
Unknown 2014-06-03 12:51:53 -04:00
parent 9c3aa6936a
commit 63baf76ab2
4 changed files with 5 additions and 3 deletions

View file

@ -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")
}