quotes around smtp_port in synapse config file prevented from sending mail
This commit is contained in:
parent
5a23955cdf
commit
4b8223fd63
2 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@
|
|||
SYNAPSE_REPORT_STATS: "no"
|
||||
UID: "{{ site.user_uid }}"
|
||||
GID: "{{ site.user_gid }}"
|
||||
tags: config
|
||||
tags: config
|
||||
|
||||
|
||||
############################
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue