I would like to test mail sending in my local dev environement using my hostingrails account.
my dev config file :
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "mail.xxxxxxx.org",
:port => 26,
:authentification => :plain,
:user_name => "xxxxxxxxx",
:password => "xxxxxxxxxx"
}
THe errror I get :
504 CRAM-MD5 authentication mechanism not supported
can anybody help me?
thanks
jef