diff options
author | James Moore <hello@jmoore.me> | 2017-04-13 10:51:49 -0700 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-13 19:51:49 +0200 |
commit | d9dc0fe84e1f7def5e7b423edbca6eeac6815f1c (patch) | |
tree | e5863c0027b770596735da5a7c8fc5e7a12bf7c0 /config/environments | |
parent | 55b56e3f95fc909def16fce9c6b9a799deac18b8 (diff) |
smtp delivery type fix (#1556)
* delivery fix # Conflicts: # config/environments/production.rb * added stub in .env file * reordered and added a comment
Diffstat (limited to 'config/environments')
-rw-r--r-- | config/environments/production.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/environments/production.rb b/config/environments/production.rb index 37a10fd4d..0b0ae29c8 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -104,7 +104,8 @@ Rails.application.configure do :enable_starttls_auto => ENV['SMTP_ENABLE_STARTTLS_AUTO'] || true, } - config.action_mailer.delivery_method = :smtp + config.action_mailer.delivery_method = ENV.fetch('SMTP_DELIVERY_METHOD', 'smtp').to_sym + config.react.variant = :production |