From 2b9f5bf80911872ca809061bd46d8fc7f64c2929 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Fri, 2 Jun 2006 17:50:15 +0000 Subject: Bug 339862: Move Bugzilla::BugMail::MessageToMTA() in a separate module - Patch by Frédéric Buclin r=mkanat a=justdave MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- whineatnews.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'whineatnews.pl') diff --git a/whineatnews.pl b/whineatnews.pl index 62e6388ac..c3f0a7677 100755 --- a/whineatnews.pl +++ b/whineatnews.pl @@ -33,7 +33,7 @@ use lib '.'; require "globals.pl"; use Bugzilla; -use Bugzilla::BugMail; +use Bugzilla::Mailer; use Bugzilla::Util; # Whining is disabled if whinedays is zero @@ -83,7 +83,7 @@ foreach my $email (sort (keys %bugs)) { $msg .= " -> ${urlbase}show_bug.cgi?id=$i\n"; } - Bugzilla::BugMail::MessageToMTA($msg); + MessageToMTA($msg); print "$email " . join(" ", @{$bugs{$email}}) . "\n"; } -- cgit v1.2.3-24-g4f1b