diff options
| author | Michel Etienne | 2015-01-09 16:11:33 +0100 |
|---|---|---|
| committer | Michel Etienne | 2015-01-09 16:11:33 +0100 |
| commit | 83f9d8cf48fb832b43f0ea08d6ee53eef1be734a (patch) | |
| tree | 68e44e3f377a67dbd607ff7de9d7be2558b205ae /config/environments/development.rb | |
| parent | 913bc3b257a8e3066388a8f2260756e97756a225 (diff) | |
| parent | ef4cc372d9dffe91354fb5ea5b44ef46a86677c4 (diff) | |
| download | chouette-core-83f9d8cf48fb832b43f0ea08d6ee53eef1be734a.tar.bz2 | |
add tests for hub export
Diffstat (limited to 'config/environments/development.rb')
| -rw-r--r-- | config/environments/development.rb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config/environments/development.rb b/config/environments/development.rb index 0d33ac03c..3d7819639 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -69,10 +69,11 @@ ChouetteIhm::Application.configure do # Configure the e-mail address which will be shown in Devise::Maile config.mailer_sender = "appli@chouette.mobi" - ActionMailer::Base.smtp_settings = { - :address => "smtp.samle.com", - :domain => "sample.com" - } + config.action_mailer.delivery_method = :sendmail + # change to true to allow email to be sent during development + config.action_mailer.perform_deliveries = true + config.action_mailer.raise_delivery_errors = true + config.action_mailer.default :charset => "utf-8" # api key to geoportail IGN (development key 3 month validity) # config.geoportail_api_key = "f1t6wihbh98njlbaf5cuzxy4" |
