mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 20:54:22 -06:00
12 lines
184 B
Go
12 lines
184 B
Go
|
package setting
|
||
|
|
||
|
type SmtpSettings struct {
|
||
|
Host string
|
||
|
User string
|
||
|
Password string
|
||
|
CertFile string
|
||
|
KeyFile string
|
||
|
FromAddress string
|
||
|
SkipVerify bool
|
||
|
}
|