For @free.fr email address

Don't use any tls plugin !!!

add in config/environnements/development.rb

ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.raise_delivery_errors = false
ActionMailer::Base.default_charset = "utf-8"

ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
  :port => 25,
  :domain => 'free.fr',
  :address => 'smtp.free.fr',
  :pop3_auth => {
    :server => 'pop.free.fr',
    :user_name => 'dhh',
    :password => 'secret',
    :expires => 1.hour # expiration time for the credentials
  }
}
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to