|
|
@ -26,7 +26,10 @@ Entrydns::Application.configure do |
|
|
|
|
|
|
|
|
|
|
|
config.action_mailer.default_url_options = { :host => 'localhost:3000' } |
|
|
|
config.action_mailer.default_url_options = { :host => 'localhost:3000' } |
|
|
|
config.action_mailer.delivery_method = :smtp |
|
|
|
config.action_mailer.delivery_method = :smtp |
|
|
|
config.action_mailer.smtp_settings = {:address => "localhost", :port => 1025} |
|
|
|
config.action_mailer.smtp_settings = { |
|
|
|
|
|
|
|
:address => "localhost", |
|
|
|
|
|
|
|
:port => 1025 |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
config.eager_load = false |
|
|
|
config.eager_load = false |
|
|
|
end |
|
|
|
end |
|
|
|