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 {
|
[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
|
|
|
Host string `mapstructure:"host"`
|
|
|
|
Port int `mapstructure:"port"`
|
|
|
|
Username string `mapstructure:"username"`
|
|
|
|
Password string `mapstructure:"password"`
|
2020-11-04 23:22:10 +00:00
|
|
|
Identifier string `mapstructure:"identifier"`
|
[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
|
|
|
Sender string `mapstructure:"sender"`
|
|
|
|
Subject string `mapstructure:"subject"`
|
|
|
|
TrustedCert string `mapstructure:"trusted_cert"`
|
|
|
|
StartupCheckAddress string `mapstructure:"startup_check_address"`
|
|
|
|
DisableVerifyCert bool `mapstructure:"disable_verify_cert"`
|
|
|
|
DisableRequireTLS bool `mapstructure:"disable_require_tls"`
|
2020-08-21 02:16:23 +00:00
|
|
|
DisableHTMLEmails bool `mapstructure:"disable_html_emails"`
|
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",
|
2020-04-09 00:21:28 +00:00
|
|
|
}
|