|
@ -83,4 +83,19 @@ BikeBike::Application.configure do |
|
|
|
|
|
|
|
|
# Use default logging formatter so that PID and timestamp are not suppressed. |
|
|
# Use default logging formatter so that PID and timestamp are not suppressed. |
|
|
config.log_formatter = ::Logger::Formatter.new |
|
|
config.log_formatter = ::Logger::Formatter.new |
|
|
|
|
|
|
|
|
|
|
|
config.action_mailer.delivery_method = :smtp |
|
|
|
|
|
config.action_mailer.smtp_settings = { |
|
|
|
|
|
:enable_starttls_auto => true, |
|
|
|
|
|
:address => 'mail.bikebike.org', |
|
|
|
|
|
:domain => 'bikebike.org', |
|
|
|
|
|
:port => 587, |
|
|
|
|
|
:authentication => :plain, |
|
|
|
|
|
:enable_starttls_auto => true, |
|
|
|
|
|
:openssl_verify_mode => 'none', |
|
|
|
|
|
:user_name => 'info@bikebike.org', |
|
|
|
|
|
:password => 'NewOrleans@)!#' |
|
|
|
|
|
} |
|
|
|
|
|
config.action_mailer.raise_delivery_errors = true |
|
|
|
|
|
config.action_mailer.perform_deliveries = true |
|
|
end |
|
|
end |
|
|