quotes around smtp_port in synapse config file prevented from sending mail

This commit is contained in:
LUXEY Adrien 2020-08-31 18:26:48 +02:00
parent 5a23955cdf
commit 4b8223fd63
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@
SYNAPSE_REPORT_STATS: "no" SYNAPSE_REPORT_STATS: "no"
UID: "{{ site.user_uid }}" UID: "{{ site.user_uid }}"
GID: "{{ site.user_gid }}" GID: "{{ site.user_gid }}"
tags: config tags: config
############################ ############################

View file

@ -1628,7 +1628,7 @@ email:
# The port on the mail server for outgoing SMTP. Defaults to 25. # The port on the mail server for outgoing SMTP. Defaults to 25.
# #
#smtp_port: 587 #smtp_port: 587
smtp_port: "{{ site.smtp_port }}" smtp_port: {{ site.smtp_port }}
# Username/password for authentication to the SMTP server. By default, no # Username/password for authentication to the SMTP server. By default, no
# authentication is attempted. # authentication is attempted.