From 2bf337dc280872461b82064a65aa91dc35a0ad86 Mon Sep 17 00:00:00 2001 From: Samuel Leweke Date: Thu, 12 Mar 2020 11:31:09 +0100 Subject: [PATCH] Fix escaping of SMTP_AUTH_MECHANISM in env template Correctly escapes the quotation marks of the SMTP_AUTH_MECHANISM variable in .env.template. The file is sourced by the shell and swallows the simple quotation marks. However, we need a proper JSON value, that is, it has to have quotation marks. This is fixed by adding escaped quotation marks. --- .env.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.template b/.env.template index 6a74fa52..2b3fb825 100644 --- a/.env.template +++ b/.env.template @@ -187,7 +187,7 @@ # SMTP_SSL=true # SMTP_USERNAME=username # SMTP_PASSWORD=password -# SMTP_AUTH_MECHANISM="Plain" +# SMTP_AUTH_MECHANISM="\"Plain\"" # SMTP_TIMEOUT=15 # vim: syntax=ini