2019-04-24 21:52:08 +00:00
package schema
// FileSystemNotifierConfiguration represents the configuration of the notifier writing emails in a file.
type FileSystemNotifierConfiguration struct {
2020-01-21 20:56:44 +00:00
Filename string ` mapstructure:"filename" `
2019-04-24 21:52:08 +00:00
}
// SMTPNotifierConfiguration represents the configuration of the SMTP server to send emails with.
type SMTPNotifierConfiguration struct {
2021-01-04 10:28:55 +00:00
Host string ` mapstructure:"host" `
Port int ` mapstructure:"port" `
Username string ` mapstructure:"username" `
Password string ` mapstructure:"password" `
Identifier string ` mapstructure:"identifier" `
Sender string ` mapstructure:"sender" `
Subject string ` mapstructure:"subject" `
StartupCheckAddress string ` mapstructure:"startup_check_address" `
DisableRequireTLS bool ` mapstructure:"disable_require_tls" `
DisableHTMLEmails bool ` mapstructure:"disable_html_emails" `
TLS * TLSConfig ` mapstructure:"tls" `
TrustedCert string ` mapstructure:"trusted_cert" ` // Deprecated: Replaced with Global Option CertificatesDirectory. TODO: Remove in 4.28.
DisableVerifyCert * bool ` mapstructure:"disable_verify_cert" ` // Deprecated: Replaced with LDAPAuthenticationBackendConfiguration.TLS.SkipVerify. TODO: Remove in 4.28.
2019-04-24 21:52:08 +00:00
}
2020-01-05 23:03:16 +00:00
// NotifierConfiguration represents the configuration of the notifier to use when sending notifications to users.
2019-04-24 21:52:08 +00:00
type NotifierConfiguration struct {
[FEATURE] Notifier Startup Checks (#889)
* implement SMTP notifier startup check
* check dial, starttls, auth, mail from, rcpt to, reset, and quit
* log the error on failure
* implement mock
* misc optimizations, adjustments, and refactoring
* implement validate_skip config option
* fix comments to end with period
* fix suites that used smtp notifier without a smtp container
* add docs
* add file notifier startup check
* move file mode into const.go
* disable gosec linting on insecureskipverify since it's intended, warned, and discouraged
* minor PR commentary adjustment
* apply suggestions from code review
Co-Authored-By: Amir Zarrinkafsh <nightah@me.com>
2020-04-21 04:59:38 +00:00
DisableStartupCheck bool ` mapstructure:"disable_startup_check" `
FileSystem * FileSystemNotifierConfiguration ` mapstructure:"filesystem" `
SMTP * SMTPNotifierConfiguration ` mapstructure:"smtp" `
2019-04-24 21:52:08 +00:00
}
2020-04-09 00:21:28 +00:00
2020-04-20 21:03:38 +00:00
// DefaultSMTPNotifierConfiguration represents default configuration parameters for the SMTP notifier.
2020-04-09 00:21:28 +00:00
var DefaultSMTPNotifierConfiguration = SMTPNotifierConfiguration {
2020-11-04 23:22:10 +00:00
Subject : "[Authelia] {title}" ,
Identifier : "localhost" ,
2021-01-04 10:28:55 +00:00
TLS : & TLSConfig {
MinimumVersion : "TLS1.2" ,
} ,
2020-04-09 00:21:28 +00:00
}