From 98635cb612d6f976e5d3cd4ac613cdc59b285337 Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Mon, 13 Dec 2021 17:28:53 +0100 Subject: [PATCH] fix: close up and quote password --- homeserver.yaml.tmpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeserver.yaml.tmpl b/homeserver.yaml.tmpl index 6e18715..18cbc27 100644 --- a/homeserver.yaml.tmpl +++ b/homeserver.yaml.tmpl @@ -2118,7 +2118,7 @@ email: # authentication is attempted. # smtp_user: {{ env "SMTP_USER" }} - smtp_pass: {{ secret "smtp_password" }} + smtp_pass: "{{ secret "smtp_password" }}" # Uncomment the following to require TLS transport security for SMTP. # By default, Synapse will connect over plain text, and will then switch to @@ -2247,6 +2247,7 @@ email: # Subject to use when sending a verification email to assert an address's # ownership. #email_validation: "[%(server_name)s] Validate your email" + {{ end }}