From da1bf41d17095acd820aa71410860830f807eaf7 Mon Sep 17 00:00:00 2001 From: "jocuri%softhome.net" <> Date: Thu, 9 Dec 2004 17:27:36 +0000 Subject: [PATCH] Patch for bug 258709: Make expansion of voteremovedmail honour emailsuffix; patch by Marc Schumann , r=vladd, a=justdave. --- globals.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/globals.pl b/globals.pl index e31c8e7179..55e4907f8b 100644 --- a/globals.pl +++ b/globals.pl @@ -1376,7 +1376,7 @@ sub RemoveVotes { if (open(SENDMAIL, "|/usr/lib/sendmail $sendmailparm -t -i")) { my %substs; - $substs{"to"} = $name; + $substs{"to"} = $name . Param('emailsuffix'); $substs{"bugid"} = $id; $substs{"reason"} = $reason; -- 2.47.3