From a5441ecf4144e832c5236404aea281e3e362c787 Mon Sep 17 00:00:00 2001 From: Jeff Atwood Date: Thu, 21 Apr 2016 16:01:29 -0700 Subject: [PATCH] move email setting closer to SMTP settings --- samples/standalone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/standalone.yml b/samples/standalone.yml index 3d49abf..e8317af 100644 --- a/samples/standalone.yml +++ b/samples/standalone.yml @@ -44,10 +44,6 @@ env: ## will be set automatically by bootstrap based on detected CPUs, or you can override #UNICORN_WORKERS: 3 - ## TODO: List of comma delimited emails that will be made admin and developer - ## on initial signup example 'user1@example.com,user2@example.com' - DISCOURSE_DEVELOPER_EMAILS: 'me@example.com' - ## TODO: The domain name this Discourse instance will respond to DISCOURSE_HOSTNAME: 'discourse.example.com' @@ -55,6 +51,10 @@ env: ## hostname (-h option) as specified above (default "$hostname-$config") #DOCKER_USE_HOSTNAME: true + ## TODO: List of comma delimited emails that will be made admin and developer + ## on initial signup example 'user1@example.com,user2@example.com' + DISCOURSE_DEVELOPER_EMAILS: 'me@example.com' + ## TODO: The SMTP mail server used to validate new accounts and send notifications DISCOURSE_SMTP_ADDRESS: smtp.example.com # required #DISCOURSE_SMTP_PORT: 587 # (optional, default 587) -- 2.25.1