From 4e2bfc82a0a1d70e3e0e79d27b9bcee8dfc25077 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Sat, 1 Jan 2005 21:44:15 +0000 Subject: Bug 59351 - move all calls to sendmail to a central place. Patch by mkanat; r=gerv,vladd; a=justdave. --- CGI.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'CGI.pl') diff --git a/CGI.pl b/CGI.pl index 0d03562fe..163c83a56 100644 --- a/CGI.pl +++ b/CGI.pl @@ -44,6 +44,7 @@ use Bugzilla::Util; use Bugzilla::Config; use Bugzilla::Constants; use Bugzilla::Error; +use Bugzilla::BugMail; # Shut up misguided -w warnings about "used only once". For some reason, # "use vars" chokes on me when I try it here. @@ -225,9 +226,7 @@ sub MailPassword { "login" => $login, "password" => $password}); - open SENDMAIL, "|/usr/lib/sendmail -t -i"; - print SENDMAIL $msg; - close SENDMAIL; + Bugzilla::BugMail::MessageToMTA($msg); } sub PutHeader { -- cgit v1.2.3-24-g4f1b