CruiseControl.rb: Error in plugin EmailNotifier: 501 5.1.7 Bad sender address syntax?
Posted
by Justin
on Stack Overflow
See other posts from Stack Overflow
or by Justin
Published on 2010-05-07T04:29:46Z
Indexed on
2010/05/07
4:38 UTC
Read the original article
Hit count: 338
Hi guys,
I can't seem to figure this out. I setup my email address in cruisecontrol.rb but no matter how I set it, it always gives me this error.
Current settings are:
project/cruise_config.rb:
project.email_notifier.emails = ['[email protected]']
project.email_notifier.from = '[email protected]'
site_config.rb:
ActionMailer::Base.smtp_settings = {
:address => "localhost",
:domain => "myemail.com",
}
I've even tried
ActionMailer::Base.delivery_method = :sendmail
Configuration.email_from = '[email protected]'
Any thoughts as to why my cruisecontrol can't send an e-mail? Thanks!
Justin
© Stack Overflow or respective owner