|
@@ -46,8 +46,8 @@ INVITATION_CODE=try-huginn
|
|
|
# Outgoing email settings. To use Gmail or Google Apps, put your Google Apps domain or gmail.com
|
|
|
# as the SMTP_DOMAIN and your Gmail username and password as the SMTP_USER_NAME and SMTP_PASSWORD.
|
|
|
#
|
|
|
-# PLEASE NOTE: In order to enable emails locally (e.g., when not in the production Rails environment),
|
|
|
-# you must also change config.action_mailer.perform_deliveries in config/environments/development.rb.
|
|
|
+# PLEASE NOTE: In order to enable emails locally (e.g., when not in the production Rails environment),
|
|
|
+# you must also set SEND_EMAIL_IN_DEVELOPMENT to true below.
|
|
|
|
|
|
SMTP_DOMAIN=your-domain-here.com
|
|
|
SMTP_USER_NAME=you@gmail.com
|
|
@@ -57,6 +57,9 @@ SMTP_PORT=587
|
|
|
SMTP_AUTHENTICATION=plain
|
|
|
SMTP_ENABLE_STARTTLS_AUTO=true
|
|
|
|
|
|
+# Send emails when running in the development Rails environment.
|
|
|
+SEND_EMAIL_IN_DEVELOPMENT=false
|
|
|
+
|
|
|
# The address from which system emails will appear to be sent.
|
|
|
EMAIL_FROM_ADDRESS=from_address@gmail.com
|
|
|
|