quick fix for a silly error i was having today with redmine not sending email anymore. open config/environment.rb and add the following lines
ActionMailer::Base::raise_delivery_errors = true
ActionMailer::Base::smtp_settings[:enable_starttls_auto] = false
it should solve the problem