Project

General

Profile

Bug #297

Updated by Daniel Curtis over 10 years ago

I encountered an error where email notifications were not being sent from redmine. The problem was a misconfiguration in the *config/configuration.yml* from the redmine folder. I added the correct configuration, similar to the following example: 
 <pre> 
 production: 
   delivery_method: :smtp 
   smtp_settings: 
     enable_starttls_auto: true 
     address: "smtp.example.com" 
     port: 587 
     domain: "project.example.com" 
     authentication: :login 
     user_name: "project@example.com" 
     password: "SuperSecretPassword" 
 </pre> 

 I also needed to update the *config/application.rb* file and change the following variable from: 
 > config.action_mailer.perform_deliveries = flase 
 to 
 > config.action_mailer.perform_deliveries = true

Back