Browse Source

smtp delivery type fix (#1556)

* delivery fix

# Conflicts:
#	config/environments/production.rb

* added stub in .env file

* reordered and added a comment
closed-social-glitch-2
James Moore 7 years ago
committed by Eugen
parent
commit
d9dc0fe84e
2 changed files with 3 additions and 1 deletions
  1. +1
    -0
      .env.production.sample
  2. +2
    -1
      config/environments/production.rb

+ 1
- 0
.env.production.sample View File

@ -35,6 +35,7 @@ SMTP_PORT=587
SMTP_LOGIN=
SMTP_PASSWORD=
SMTP_FROM_ADDRESS=notifications@example.com
#SMTP_DELIVERY_METHOD=smtp # delivery method can also be sendmail
#SMTP_AUTH_METHOD=plain
#SMTP_OPENSSL_VERIFY_MODE=peer
#SMTP_ENABLE_STARTTLS_AUTO=true

+ 2
- 1
config/environments/production.rb View File

@ -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

Loading…
Cancel
Save