Began work on emailing service #1456
This commit is contained in:
@@ -114,6 +114,9 @@ var (
|
||||
|
||||
ReportingEnabled bool
|
||||
GoogleAnalyticsId string
|
||||
|
||||
// SMTP email settings
|
||||
Smtp SmtpSettings
|
||||
)
|
||||
|
||||
type CommandLineArgs struct {
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
package setting
|
||||
|
||||
type SmtpSettings struct {
|
||||
Host string
|
||||
User string
|
||||
Password string
|
||||
CertFile string
|
||||
KeyFile string
|
||||
FromAddress string
|
||||
SkipVerify bool
|
||||
}
|
||||
Reference in New Issue
Block a user