I don't seem to be happening here...
config/environments/development.rb set... config.action_controller.consider_all_requests_local = false
application_controller.rb has.. include ExceptionNotifiable
and in script/console, I can see that... ExceptionNotifier.raise_delivery_errors (false) ExceptionNotifier.smtp_settings (as set in initializers/mailer.rb) ExceptionNotifier.sender_address (arbitrary but valid) ExceptionNotifier.perform_deliveries (true) ExceptionNotifier.exception_recipients (me)
Thus everything seems to be as expected and mail is working because Authlogic is sending 'activation' e-mails just fine.
Is there some other magic incantation that I am missing?
Craig