Home
last modified time | relevance | path

Searched defs:SMTPConf (Results 1 – 5 of 5) sorted by relevance

/dports/security/vuls/vuls-0.13.7/vendor/github.com/knqyf263/gost/config/
H A Dconfig.go24 type SMTPConf struct { struct
25 SMTPAddr string
26 SMTPPort string `valid:"port"`
28 User string
29 Password string
30 From string
31 To []string
32 Cc []string
33 SubjectPrefix string
35 UseThisTime bool
/dports/net-mgmt/bosun/bosun-0.9.0-preview/docs/
H A Dsystem_configuration.md311 ### SMTPConf subsection
314 #### EmailFrom
317 #### Host
320 #### Username
323 #### Password
326 #### Example
/dports/security/vuls/vuls-0.13.7/vendor/github.com/knqyf263/gost/notifier/
H A Demail.go25 func NewEMailSender(config config.SMTPConf) EMailSender {
/dports/security/vuls/vuls-0.13.7/config/
H A Dconfig.go386 type SMTPConf struct { struct
387 SMTPAddr string `toml:"smtpAddr,omitempty" json:"-"`
388 SMTPPort string `toml:"smtpPort,omitempty" valid:"port" json:"-"`
389 User string `toml:"user,omitempty" json:"-"`
390 Password string `toml:"password,omitempty" json:"-"`
391 From string `toml:"from,omitempty" json:"-"`
392 To []string `toml:"to,omitempty" json:"-"`
393 Cc []string `toml:"cc,omitempty" json:"-"`
394 SubjectPrefix string `toml:"subjectPrefix,omitempty" json:"-"`
410 func (c *SMTPConf) Validate() (errs []error) {
/dports/net-mgmt/bosun/bosun-0.9.0-preview/cmd/bosun/conf/
H A Dsystem.go56 SMTPConf SMTPConf member
249 type SMTPConf struct { struct
250 EmailFrom string
251 Host string
252 Username string
253 Password string `json:"-"`