mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
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 {
|
||||
|
||||
11
pkg/setting/setting_smtp.go
Normal file
11
pkg/setting/setting_smtp.go
Normal file
@@ -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