Update authelia/configuration.yml

Add in SMTP parameters to allow notifications and changes of password
This commit is contained in:
2025-12-14 18:44:06 +00:00
parent 8cd25f2c55
commit 3820de7d8c

View File

@@ -1123,7 +1123,7 @@ notifier:
## (only works for unauthenticated connections) ## (only works for unauthenticated connections)
## - validate the SMTP server x509 certificate during the TLS handshake against the hosts trusted certificates ## - validate the SMTP server x509 certificate during the TLS handshake against the hosts trusted certificates
## (configure in tls section) ## (configure in tls section)
# smtp: smtp:
## The SMTP host to connect to. ## The SMTP host to connect to.
# host: 127.0.0.1 # host: 127.0.0.1
@@ -1134,22 +1134,23 @@ notifier:
# timeout: 5s # timeout: 5s
## The username used for SMTP authentication. ## The username used for SMTP authentication.
# username: test username: john.study55@gmail.com
address: 'submission://smtp.gmail.com:587'
## The password used for SMTP authentication. ## The password used for SMTP authentication.
## Can also be set using a secret: https://www.authelia.com/c/secrets ## Can also be set using a secret: https://www.authelia.com/c/secrets
# password: password password: 'jmxn lvnv wdtx sxvf'
## The sender is used to is used for the MAIL FROM command and the FROM header. ## The sender is used to is used for the MAIL FROM command and the FROM header.
## If this is not defined and the username is an email, we use the username as this value. This can either be just ## If this is not defined and the username is an email, we use the username as this value. This can either be just
## an email address or the RFC5322 'Name <email address>' format. ## an email address or the RFC5322 'Name <email address>' format.
# sender: "Authelia <admin@example.com>" sender: "john.study55@gmail.com"
## HELO/EHLO Identifier. Some SMTP Servers may reject the default of localhost. ## HELO/EHLO Identifier. Some SMTP Servers may reject the default of localhost.
# identifier: localhost # identifier: localhost
## Subject configuration of the emails sent. {title} is replaced by the text from the notifier. ## Subject configuration of the emails sent. {title} is replaced by the text from the notifier.
# subject: "[Authelia] {title}" subject: "[Authelia] {title}"
## This address is used during the startup check to verify the email configuration is correct. ## This address is used during the startup check to verify the email configuration is correct.
## It's not important what it is except if your email server only allows local delivery. ## It's not important what it is except if your email server only allows local delivery.