Welcome Guest | Login

451 Could not complete sender verify callout?


Hi, I am getting this error when  my notification plugin tries to send an e email. I believe I am using smtp. Ive read that smtp is the default mailer? this is what I have in my environment.rb.


Rails::Initializer.run do |config|
config.frameworks -= [ :action_web_service ]
...
end



ActionMailer::Base.server_settings = {
:address  => "localhost",
:port  => 25,
:domain  => "mydomain",
:user_name  => "admin@mydomain",
:password  => "myPass",
:authentication  => :login
}

any ideas? thanks

2007-06-12 09:48 PM

Hello,

Can you provide us the exact URL to send the e-mails, so that we can recreate the issue.

2007-06-12 10:07 PM

Regards,
Rahul
You should be able to just use sendmail
ActionMailer::Base.delivery_method = :sendmail  
ActionMailer::Base.perform_deliveries = true  
ActionMailer::Base.raise_delivery_errors = true  
ActionMailer::Base.default_charset = "utf-8"
that's all you need in your environment.rb

2007-06-13 03:10 AM


Hello Guest! In order to post you must be an active client with us, please log in or sign up.