For the benefit of others:
an ActionMailer configuration like the one below (taken from the wiki
page) did not work for me:
ActionMailer::Base.smtp_settings = {
:address => "smtp.example.com",
:domain => "example.com",
:user_name => "[email protected]",
:password => "supersecret",
:authentication => :login
}
but a configuration like this does:
ActionMailer::Base.smtp_settings = {
:address => "smtp.example.com",
:domain => "example.com",
:port => 25
}
Using Radiant 0.8.0 with Mailer extension, postfix 2.5.1 on MacOsX
server 10.4.11.
Good luck,
Jan
_______________________________________________
Radiant mailing list
Post: [email protected]
Search: http://radiantcms.org/mailing-list/search/
Site: http://lists.radiantcms.org/mailman/listinfo/radiant