Redmine - Email notifications are not sent when comment issues via email
In Redmine, user create and comment issues via email like a ticket system using ruby script (rdm-mailhandler) or redmine task ( redmine:email:receive_imap ) following this article: http://www.redmine.org/projects/redmine/wiki/RedmineReceivingEmails Example: getting emails from IMAP server and create or update an issue: create a cronjob to run the following command: */30 * * * * rake -f /path/to/redmine/appdir/Rakefile --silent redmine:email:receive_imap RAILS_ENV=production host=imap.foo.bar username=redmine@somenet.foo password=xx project=myproject unknown_user=create no_permission_check=1 no_account_notice=1 The above command will fetch emails from IMAP server when a user sent email to the server account (username=redmine@somenet.foo). Read the body, if there is issue id, create a new issue. If the email has id of an existing issue, add the message as an update. In addition, If the sender is not an existing use , it will create a new account without notify the sender. If ...