From 79885c830264013233f695b8b66f879ab640bc01 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Fri, 3 Jun 2005 04:24:08 +0000 Subject: [PATCH] Bug 295213: whine mail still goes out even though whinedays = "0" - Patch by Marc Schumann r=LpSolit a=myk --- defparams.pl | 5 +++-- whineatnews.pl | 3 +++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/defparams.pl b/defparams.pl index 60a2d7726e..8534615ab4 100644 --- a/defparams.pl +++ b/defparams.pl @@ -770,8 +770,9 @@ Configure bugmail: %urlbase%userprefs.cgi?tab=email { name => 'whinedays', - desc => 'The number of days that we\'ll let a bug sit untouched in a NEW ' . - 'state before our cronjob will whine at the owner.', + desc => q{The number of days that we'll let a bug sit untouched in a NEW + state before our cronjob will whine at the owner.
+ Set to 0 to disable whining.}, type => 't', default => 7 }, diff --git a/whineatnews.pl b/whineatnews.pl index 286b0c5429..16be900ad8 100755 --- a/whineatnews.pl +++ b/whineatnews.pl @@ -33,6 +33,9 @@ require "globals.pl"; use Bugzilla::BugMail; +# Whining is disabled if whinedays is zero +exit unless Param('whinedays') >= 1; + my $dbh = Bugzilla->dbh; SendSQL("SELECT bug_id, short_desc, login_name " . "FROM bugs INNER JOIN profiles ON userid = assigned_to " . -- 2.47.3