Plugins Directory » Redmine Mail Reminder
Author: | Jethro Yu | |
---|---|---|
Website: | https://github.com/Hopebaytech/redmine_mail_reminder | |
Code repository: | https://github.com/Hopebaytech/redmine_mail_reminder.git | |
Registered on: | 2015-03-20 (over 9 years ago) | |
Current version: | 3.0.3 | |
Compatible with: | Redmine 3.0.x, 2.6.x, 2.5.x | |
User ratings: |
This plugin is original from discussion http://www.redmine.org/boards/3/topics/27087 made by Michael Kling ,
I have forked it and try to maintain this plugin.
Description¶
Because we didn't like to configure rake tasks for email reminders for every project needs and it also lacked some specific filters - we decided to create our own reminder plugin.
Only one cron job has to be created which handles all the remindes which are easily configurable in the redmine system by any user who owns the specific rights.
Reminders can be configured per project, they are selecting the issues which it should remind via a custom query (so you are free to select whatever conditions you want).
It is possible to send the reminder daily (define interval every 1st-every 6th), weekly (define weekday) or monthly (define day of month) to specific roles inside the project. (See also screenshot for that)
Any feedback is welcome :)
Screenshots¶
Installation notes
You can download the plugin here: https://github.com/Hopebaytech/redmine_mail_reminder
Installation instructions are given in the readme.
Changelog
3.0.3 (2015-05-13)
Compatible with Redmine 3.0.x, 2.6.x, 2.5.x.
Branch redmine3.0 for 3.0.x
Branch redmine2.6 for 2.5.x, 2.6.x
At 2015/05/13 (2.6/3.0 Branch) this plugin is renamed from redmine_issue_reminder to redmine_mail_reminder, in order to avoid conflict with existed redmine_issue_reminder.
- rename your redmine_issue_reminder directory ({REDMINE_ROOT}/plugins/redmine_issue_reminder) to redmine_mail_reminder
- connect to your redmine's SQL database
- run the following SQL script
update schema_migrations set version=replace(version, 'redmine_issue_reminder', 'redmine_mail_reminder') where version like '%redmine_issue_reminder%'; - run the following SQL script
update settings set name=replace(name, 'issue', 'mail') where name = 'plugin_redmine_issue_reminder'; - pull new version source from github
- run the following rake
rake redmine:plugins:migrate NAME=redmine_mail_reminder
restart your web server (usually /etc/init.d/apache2 restart)
2.6.5 (2015-05-13)
Compatible with Redmine 2.6.x, 2.5.x.
At 2015/05/13 (2.6/3.0 Branch) this plugin is renamed from redmine_issue_reminder to redmine_mail_reminder, in order to avoid conflict with existed redmine_issue_reminder.
- rename your redmine_issue_reminder directory ({REDMINE_ROOT}/plugins/redmine_issue_reminder) to redmine_mail_reminder
- connect to your redmine's SQL database
- run the following SQL script
update schema_migrations set version=replace(version, 'redmine_issue_reminder', 'redmine_mail_reminder') where version like '%redmine_issue_reminder%'; - run the following SQL script
update settings set name=replace(name, 'issue', 'mail') where name = 'plugin_redmine_issue_reminder'; - pull new version source from github
- run the following rake
rake redmine:plugins:migrate NAME=redmine_mail_reminder
restart your web server (usually /etc/init.d/apache2 restart)
3.0.0 (2015-03-20)
Compatible with Redmine 3.0.x, 2.6.x, 2.5.x, 2.0.x.