From 7d2c06b300911c0b2cb411164aad609326a7064f Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Tue, 12 Oct 1999 01:23:21 +0000 Subject: Make "rescanall" only check bugs which have changed in the last two days. --- processmail | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'processmail') diff --git a/processmail b/processmail index 7cb3c7d6e..6abd157ac 100755 --- a/processmail +++ b/processmail @@ -369,7 +369,7 @@ if ($#ARGV == 1) { if ($ARGV[0] eq "rescanall") { print "
Collecting bug ids...\n"; - SendSQL("select bug_id from bugs order by bug_id"); + SendSQL("select bug_id from bugs where to_days(now()) - to_days(delta_ts) <= 2 order by bug_id"); my @list; while (my @row = FetchSQLData()) { push @list, $row[0]; -- cgit v1.2.3-24-g4f1b