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"
UID: "{{ site.user_uid }}"
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.
#
#smtp_port: 587
smtp_port: "{{ site.smtp_port }}"
smtp_port: {{ site.smtp_port }}
# Username/password for authentication to the SMTP server. By default, no
# authentication is attempted.