The default configuration has no SMTP server defined

This commit is contained in:
Éloi Rivard 2021-12-07 17:18:41 +01:00
parent 63648900ed
commit c8f33cd77a
2 changed files with 11 additions and 7 deletions

View file

@ -144,10 +144,12 @@ LOCALE = "preferredLanguage"
PICTURE = "jpegPhoto"
ADDRESS = "postalAddress"
[SMTP]
HOST = "localhost"
PORT = 25
TLS = false
LOGIN = ""
PASSWORD = ""
FROM_ADDR = "admin@mydomain.tld"
# The SMTP server options. If not set, mail related features such as
# user invitations, and password reset emails, will be disabled.
# [SMTP]
# HOST = "localhost"
# PORT = 25
# TLS = false
# LOGIN = ""
# PASSWORD = ""
# FROM_ADDR = "admin@mydomain.tld"

View file

@ -151,6 +151,8 @@ LOCALE = "preferredLanguage"
PICTURE = "photo"
ADDRESS = "postalAddress"
# The SMTP server options. If not set, mail related features such as
# user invitations, and password reset emails, will be disabled.
[SMTP]
HOST = "localhost"
PORT = 25