* chore(deps): bump github.com/emersion/go-smtp from 0.20.2 to 0.21.0 Bumps [github.com/emersion/go-smtp](https://github.com/emersion/go-smtp) from 0.20.2 to 0.21.0. - [Release notes](https://github.com/emersion/go-smtp/releases) - [Commits](https://github.com/emersion/go-smtp/compare/v0.20.2...v0.21.0) --- updated-dependencies: - dependency-name: github.com/emersion/go-smtp dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * fix(reporter/email): use DialStartTLS instead of StartTLS --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: MaineK00n <mainek00n.1229@gmail.com>
73 lines
2.1 KiB
Go
73 lines
2.1 KiB
Go
package config
|
|
|
|
import (
|
|
"github.com/asaskevich/govalidator"
|
|
"golang.org/x/xerrors"
|
|
)
|
|
|
|
// SMTPConf is smtp config
|
|
type SMTPConf struct {
|
|
SMTPAddr string `toml:"smtpAddr,omitempty" json:"-"`
|
|
SMTPPort string `toml:"smtpPort,omitempty" valid:"port" json:"-"`
|
|
TLSMode string `toml:"tlsMode,omitempty" json:"-"`
|
|
TLSInsecureSkipVerify bool `toml:"tlsInsecureSkipVerify,omitempty" json:"-"`
|
|
User string `toml:"user,omitempty" json:"-"`
|
|
Password string `toml:"password,omitempty" json:"-"`
|
|
From string `toml:"from,omitempty" json:"-"`
|
|
To []string `toml:"to,omitempty" json:"-"`
|
|
Cc []string `toml:"cc,omitempty" json:"-"`
|
|
SubjectPrefix string `toml:"subjectPrefix,omitempty" json:"-"`
|
|
Enabled bool `toml:"-" json:"-"`
|
|
}
|
|
|
|
func checkEmails(emails []string) (errs []error) {
|
|
for _, addr := range emails {
|
|
if len(addr) == 0 {
|
|
return
|
|
}
|
|
if ok := govalidator.IsEmail(addr); !ok {
|
|
errs = append(errs, xerrors.Errorf("Invalid email address. email: %s", addr))
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// Validate SMTP configuration
|
|
func (c *SMTPConf) Validate() (errs []error) {
|
|
if !c.Enabled {
|
|
return
|
|
}
|
|
emails := []string{}
|
|
emails = append(emails, c.From)
|
|
emails = append(emails, c.To...)
|
|
emails = append(emails, c.Cc...)
|
|
|
|
if emailErrs := checkEmails(emails); 0 < len(emailErrs) {
|
|
errs = append(errs, emailErrs...)
|
|
}
|
|
|
|
if c.SMTPAddr == "" {
|
|
errs = append(errs, xerrors.New("email.smtpAddr must not be empty"))
|
|
}
|
|
if c.SMTPPort == "" {
|
|
errs = append(errs, xerrors.New("email.smtpPort must not be empty"))
|
|
}
|
|
switch c.TLSMode {
|
|
case "", "None", "STARTTLS", "SMTPS":
|
|
default:
|
|
errs = append(errs, xerrors.New(`email.tlsMode accepts ["", "None", "STARTTLS", "SMTPS"]`))
|
|
}
|
|
if len(c.To) == 0 {
|
|
errs = append(errs, xerrors.New("email.To required at least one address"))
|
|
}
|
|
if len(c.From) == 0 {
|
|
errs = append(errs, xerrors.New("email.From required at least one address"))
|
|
}
|
|
|
|
_, err := govalidator.ValidateStruct(c)
|
|
if err != nil {
|
|
errs = append(errs, err)
|
|
}
|
|
return
|
|
}
|