Browse Source

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.
pull/900/head
Samuel Leweke 5 years ago
parent
commit
2bf337dc28
  1. 2
      .env.template

2
.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

Loading…
Cancel
Save