added a few action_mailer config vars

This commit is contained in:
nilsding 2015-01-01 17:26:35 +01:00
parent ed6e91c33f
commit 6a1a1879d3
1 changed files with 6 additions and 4 deletions

View File

@ -60,10 +60,6 @@ Rails.application.configure do
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
# config.assets.precompile += %w( search.js )
# Ignore bad email addresses and do not raise email delivery errors.
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
# config.action_mailer.raise_delivery_errors = false
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
# the I18n.default_locale when a translation cannot be found).
config.i18n.fallbacks = true
@ -71,6 +67,12 @@ Rails.application.configure do
# Send deprecation notices to registered listeners.
config.active_support.deprecation = :notify
config.action_mailer.delivery_method = :sendmail
config.action_mailer.perform_deliveries = true
# Ignore bad email addresses and do not raise email delivery errors.
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
config.action_mailer.raise_delivery_errors = true
# Disable automatic flushing of the log to improve performance.
# config.autoflush_log = false