|
|
|
@ -57,4 +57,16 @@ Simpledns::Application.configure do
|
|
|
|
|
|
|
|
|
|
# Send deprecation notices to registered listeners |
|
|
|
|
config.active_support.deprecation = :notify |
|
|
|
|
|
|
|
|
|
config.action_mailer.default_url_options = { :host => 'http://simpledns.heroku.com' } |
|
|
|
|
config.action_mailer.delivery_method = :smtp |
|
|
|
|
config.action_mailer.smtp_settings = { |
|
|
|
|
:address => "smtp.gmail.com", |
|
|
|
|
:port => 587, |
|
|
|
|
:domain => 'simpledns.heroku.com', |
|
|
|
|
:user_name => 'simpledns.office', |
|
|
|
|
:password => 'jablonskis', |
|
|
|
|
:authentication => 'plain', |
|
|
|
|
:enable_starttls_auto => true |
|
|
|
|
} |
|
|
|
|
end |
|
|
|
|