From 3820de7d8c9d6850a12246224663f6613f859359 Mon Sep 17 00:00:00 2001 From: john Date: Sun, 14 Dec 2025 18:44:06 +0000 Subject: [PATCH] Update authelia/configuration.yml Add in SMTP parameters to allow notifications and changes of password --- authelia/configuration.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/authelia/configuration.yml b/authelia/configuration.yml index 837aa3c..a7ccbeb 100644 --- a/authelia/configuration.yml +++ b/authelia/configuration.yml @@ -1123,7 +1123,7 @@ notifier: ## (only works for unauthenticated connections) ## - validate the SMTP server x509 certificate during the TLS handshake against the hosts trusted certificates ## (configure in tls section) - # smtp: + smtp: ## The SMTP host to connect to. # host: 127.0.0.1 @@ -1134,22 +1134,23 @@ notifier: # timeout: 5s ## 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. ## 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. ## 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 ' format. - # sender: "Authelia " + sender: "john.study55@gmail.com" ## HELO/EHLO Identifier. Some SMTP Servers may reject the default of localhost. # identifier: localhost ## 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. ## It's not important what it is except if your email server only allows local delivery.