From 1b2e3bf1411c8b3a34d42569127b97f1b5df4435 Mon Sep 17 00:00:00 2001 From: illspirit Date: Fri, 20 Dec 2013 20:50:17 -0500 Subject: [PATCH] Fix smtp settings, added password --- config/environments/production.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index 3acb771c5d7..017bd7b0970 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -37,7 +37,8 @@ Discourse::Application.configure do address: GlobalSetting.smtp_address, port: GlobalSetting.smtp_port, domain: GlobalSetting.smtp_domain, - user_name: GlobalSetting.smtp_password, + user_name: GlobalSetting.smtp_user_name, + password: GlobalSetting.smtp_password, authentication: 'plain', enable_starttls_auto: GlobalSetting.smtp_enable_start_tls }