From a394ba29b377f78509470227c3d333fc3e6bdac0 Mon Sep 17 00:00:00 2001 From: Jeff Nelson Date: Wed, 8 Nov 2017 07:11:03 -0500 Subject: [PATCH 1/3] Update 02-02-advanced-configuration.md Change TALK_SMTP_EMAIL to TALK_SMTP_FROM_EMAIL --- docs/_docs/02-02-advanced-configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_docs/02-02-advanced-configuration.md b/docs/_docs/02-02-advanced-configuration.md index 73e72e2cb..2f830a022 100644 --- a/docs/_docs/02-02-advanced-configuration.md +++ b/docs/_docs/02-02-advanced-configuration.md @@ -369,12 +369,12 @@ Then all the routes for the API will be expecting to be hit on `/talk/`, such as can perform the path stripping when serving an upstream proxy, but some CDN's cannot. You would use this option in the latter situation. -## TALK_SMTP_EMAIL +## TALK_SMTP_FROM_EMAIL The email address to send emails from using the SMTP provider in the format: ```plain -TALK_SMTP_EMAIL="The Coral Project" +TALK_SMTP_FROM_EMAIL="The Coral Project" ``` Including the name and email address. From d7a88cdc2a27adf7255a02aada2330300e8c8e36 Mon Sep 17 00:00:00 2001 From: Kim Gardner Date: Thu, 9 Nov 2017 11:18:58 +0000 Subject: [PATCH 2/3] Fix config key --- docs/_docs/02-02-advanced-configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_docs/02-02-advanced-configuration.md b/docs/_docs/02-02-advanced-configuration.md index 2f830a022..6c37aab12 100644 --- a/docs/_docs/02-02-advanced-configuration.md +++ b/docs/_docs/02-02-advanced-configuration.md @@ -369,7 +369,7 @@ Then all the routes for the API will be expecting to be hit on `/talk/`, such as can perform the path stripping when serving an upstream proxy, but some CDN's cannot. You would use this option in the latter situation. -## TALK_SMTP_FROM_EMAIL +## TALK_SMTP_FROM_ADDRESS The email address to send emails from using the SMTP provider in the format: From 247e05383e922e111d3d15959a6af1ddaaac02da Mon Sep 17 00:00:00 2001 From: Kim Gardner Date: Thu, 9 Nov 2017 11:23:48 +0000 Subject: [PATCH 3/3] One more fix --- docs/_docs/02-02-advanced-configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_docs/02-02-advanced-configuration.md b/docs/_docs/02-02-advanced-configuration.md index 6c37aab12..74099258d 100644 --- a/docs/_docs/02-02-advanced-configuration.md +++ b/docs/_docs/02-02-advanced-configuration.md @@ -374,7 +374,7 @@ cannot. You would use this option in the latter situation. The email address to send emails from using the SMTP provider in the format: ```plain -TALK_SMTP_FROM_EMAIL="The Coral Project" +TALK_SMTP_FROM_ADDRESS="The Coral Project" ``` Including the name and email address.