On 11. juni. 2009, at 17.50, Martin Pettersson wrote: > I'm trying to use smtp... > I get a message "A password confirmation link has been sent to your > email address" but nothing arrives... Can I log the dialog between > the smtp and the actionmailer?
Setting action_mailer.raise_delivery_errors=true should raise an error if Rails is unable to deliver the message to the SMTP server, so I the message is probably "successfully" delivered to your SMTP server. If you have access to the SMTP server, its mail logs could give some hints as to what's happening. Or you could increase the logging level in Gitorious (ie. config.log_level = :debug in config/production.rb) while debugging should provide some more information about the communication with the SMTP server. Just remember to set it back when you're done debugging, or the log would grow rapidly… Regards, - Marius --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Gitorious" 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/gitorious?hl=en -~----------~----~----~----~------~----~------~--~---
