Project

General

Profile

Actions

Defect #14400

open

Email Reminder doesn't have the right behavior

Added by Benjamin Billon almost 11 years ago. Updated over 10 years ago.

Status:
New
Priority:
Normal
Assignee:
-
Category:
Email notifications
Target version:
-
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Affected version:

Description

Hello there,

Let's start by a small complaint.
Here https://github.com/chantra/redmine_whining/issues/25, it is said that

redmine now include the rake task send_reminders.
So this plugin is now redundant.

WELL, not exactly. Redmine Whining had the bright idea to send a reminder to assignees who didn't process a ticket for X days.
The send_reminders now included in Redmine sends a reminder to assignees whose issue's due date is in X days.
Quite a difference here, notably when the due date is empty or rarely used.

While patching send_reminders (./app/models/mailer.rb) to meet my needs, I've encountered the following:

scope = Issue.open.where("#{Issue.table_name}.assigned_to_id IS NOT NULL" +
      " AND #{Project.table_name}.status = #{Project::STATUS_ACTIVE}" +
      " AND #{Issue.table_name}.due_date >= ?", days.day.from_now.to_date
    )

for which the last line would generate something like
 AND issues.due_date >= 'Fri, 12 Jul 2013'

issues.due_date being of type DATE, that is just not going to work properly.

For those interested, I replaced the line by

" AND DATEDIFF(NOW(),#{Issue.table_name}.updated_on) >= ?", days


Files

Actions #1

Updated by Jan Niggemann (redmine.org team member) almost 11 years ago

  • Status changed from New to Closed
  • Resolution set to Invalid

This is not a defect in redmine.

Benjamin Billon wrote:

Let's start by a small complaint.
Here https://github.com/chantra/redmine_whining/issues/25, it is said that

redmine now include the rake task send_reminders.
So this plugin is now redundant.

WELL, not exactly. Redmine Whining had the bright idea to send a reminder to assignees who didn't process a ticket for X days.
The send_reminders now included in Redmine sends a reminder to assignees whose issue's due date is in X days.
Quite a difference here, notably when the due date is empty or rarely used.

Please tell the plugin developer that you disagree with his view and that he update his plugin.

Actions #2

Updated by Benjamin Billon almost 11 years ago

  • Status changed from Closed to Reopened

Sorry to insist, but as far as I understand, the Email Reminder is part of redmine: http://www.redmine.org/projects/redmine/wiki/RedmineReminderEmails
And the "days.day.from_now.to_date" part returning an invalid value for a MySQL Date type comparison, it would make the feature behavioring unexpectingly.

If not, I apologize for the noise.

Actions #3

Updated by Etienne Massip almost 11 years ago

You're right, but I'm not sure this is a Redmine issue, it's very likely that the AR DB adapter is responsible for the translation of the Date object into a format that the DB can understand.

Could you please give more details about your setup, as described in SubmittingBugs?

Actions #4

Updated by Etienne Massip almost 11 years ago

  • Category set to Email notifications
  • Status changed from Reopened to Needs feedback
  • Resolution deleted (Invalid)
Actions #5

Updated by Jan Niggemann (redmine.org team member) almost 11 years ago

Am I getting this wrong? OP points out that the rake task doesn't to the same as the plugin, and that is true, isn't it?

Actions #6

Updated by Benjamin Billon almost 11 years ago

Redmine version 2.3.0.stable
Ruby version 1.9.3 (x86_64-linux)
Rails version 3.2.13
Mysql Server version: 5.5.30-30.2 Percona Server (GPL), Release 30.2

jan jan> sorry, my initial post contained two main points: one about the plugin (which doesn't concern redmine itself indeed), and another one about what looked like a bug in the code (that I felt I had to report).

Actions #7

Updated by Jan Niggemann (redmine.org team member) over 10 years ago

  • Status changed from Needs feedback to New
Actions #8

Updated by Brad Langhorst over 10 years ago

I also had this itch... here's a patch to enable more fine grained control of reminder emails

Actions

Also available in: Atom PDF