Redmine is a free opensource project management tool. You can host it on your own server and can do all the customization and configuration. In this post, we will discuss how to enable the email notification in redmine, follow the below instructions.
add following entry in cofig/configuration.yml in redmine.
default: # Outgoing emails configuration (see examples above) email_delivery: delivery_method: :smtp smtp_settings: tls: true enable_starttls_auto: true address: smtp.gmail.com port: 587 domain: smtp.gmail.com authentication: :plain user_name: "your email id" password: "your password"
Change the email ID and password with your actual account in the above code snippet.
Now restart Redmine using the following command:
touch tmp/restart.txt
I hope, after doing all the above changes you will start getting email configuration in your inbox. Feel free to comment if you face any issues.
Leave a Reply