mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
df016be29e
* fix(notification): incorrect date header format The date header in the email envelopes was incorrectly formatted missing a space between the `Date:` header and the value of this header. This also refactors the notification templates system allowing people to manually override the envelope itself. * test: fix tests and linting issues * fix: misc issues * refactor: misc refactoring * docs: add example for envelope with message id * refactor: organize smtp notifier * refactor: move subject interpolation * refactor: include additional placeholders * docs: fix missing link * docs: gravity * fix: rcpt to command * refactor: remove mid * refactor: apply suggestions Co-authored-by: Amir Zarrinkafsh <nightah@me.com> * refactor: include pid Co-authored-by: Amir Zarrinkafsh <nightah@me.com>
47 lines
1.9 KiB
Go
47 lines
1.9 KiB
Go
package schema
|
|
|
|
import (
|
|
"net/mail"
|
|
"time"
|
|
)
|
|
|
|
// FileSystemNotifierConfiguration represents the configuration of the notifier writing emails in a file.
|
|
type FileSystemNotifierConfiguration struct {
|
|
Filename string `koanf:"filename"`
|
|
}
|
|
|
|
// SMTPNotifierConfiguration represents the configuration of the SMTP server to send emails with.
|
|
type SMTPNotifierConfiguration struct {
|
|
Host string `koanf:"host"`
|
|
Port int `koanf:"port"`
|
|
Timeout time.Duration `koanf:"timeout"`
|
|
Username string `koanf:"username"`
|
|
Password string `koanf:"password"`
|
|
Identifier string `koanf:"identifier"`
|
|
Sender mail.Address `koanf:"sender"`
|
|
Subject string `koanf:"subject"`
|
|
StartupCheckAddress mail.Address `koanf:"startup_check_address"`
|
|
DisableRequireTLS bool `koanf:"disable_require_tls"`
|
|
DisableHTMLEmails bool `koanf:"disable_html_emails"`
|
|
TLS *TLSConfig `koanf:"tls"`
|
|
}
|
|
|
|
// NotifierConfiguration represents the configuration of the notifier to use when sending notifications to users.
|
|
type NotifierConfiguration struct {
|
|
DisableStartupCheck bool `koanf:"disable_startup_check"`
|
|
FileSystem *FileSystemNotifierConfiguration `koanf:"filesystem"`
|
|
SMTP *SMTPNotifierConfiguration `koanf:"smtp"`
|
|
TemplatePath string `koanf:"template_path"`
|
|
}
|
|
|
|
// DefaultSMTPNotifierConfiguration represents default configuration parameters for the SMTP notifier.
|
|
var DefaultSMTPNotifierConfiguration = SMTPNotifierConfiguration{
|
|
Timeout: time.Second * 5,
|
|
Subject: "[Authelia] {title}",
|
|
Identifier: "localhost",
|
|
StartupCheckAddress: mail.Address{Name: "Authelia Test", Address: "test@authelia.com"},
|
|
TLS: &TLSConfig{
|
|
MinimumVersion: "TLS1.2",
|
|
},
|
|
}
|