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"
|
SYNAPSE_REPORT_STATS: "no"
|
||||||
UID: "{{ site.user_uid }}"
|
UID: "{{ site.user_uid }}"
|
||||||
GID: "{{ site.user_gid }}"
|
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.
|
# 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.
|
||||||
|
|
Loading…
Reference in a new issue