diff options
author | Alexander Mankuta <alex+github@pointless.one> | 2017-04-10 22:48:30 +0300 |
---|---|---|
committer | wxcafé <wxcafe@users.noreply.github.com> | 2017-04-10 21:48:30 +0200 |
commit | 0dbbc16c69652afe63d0b3dd49c06939351e3bc6 (patch) | |
tree | 5bbf6805686ddbfece30eeddeb12cc004fe97f3c /app.json | |
parent | f690320fb93ea1a884a292f9e099eb1bc0834b6d (diff) |
More SMTP customization (#1372)
* Allow SMTP auth method customization * Add SMTP openssl_verify_mode option support Allows one use self-signed certs with their SMTP server. * Add SMTP enable_starttls_auto option support
Diffstat (limited to 'app.json')
-rw-r--r-- | app.json | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app.json b/app.json index 29c1f9f9c..6c4294c79 100644 --- a/app.json +++ b/app.json @@ -79,6 +79,18 @@ "SMTP_FROM_ADDRESS": { "description": "Address to send emails from", "required": false + }, + "SMTP_AUTH_METHOD": { + "description": "Authentication method to use with SMTP server. Default is 'plain'.", + "required": false + }, + "SMTP_OPENSSL_VERIFY_MODE": { + "description": "SMTP server certificate verification mode. Defaults is 'peer'.", + "required": false + }, + "SMTP_ENABLE_STARTTLS_AUTO": { + "description": "Enable STARTTLS if SMTP server supports it? Default is true.", + "required": false } }, "buildpacks": [ |