From aeb737ecd470acb46e422a9b308004e9fc6c2478 Mon Sep 17 00:00:00 2001 From: "jocuri%softhome.net" Date: Thu, 9 Dec 2004 09:27:10 +0000 Subject: [PATCH] Patch for bug 258709: Make expansion of voteremovedmail honour emailsuffix; patch by Marc Schumann , r=vladd, a=justdave. --- webtools/bugzilla/globals.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtools/bugzilla/globals.pl b/webtools/bugzilla/globals.pl index d1e751bb0dac..677047fe2d69 100644 --- a/webtools/bugzilla/globals.pl +++ b/webtools/bugzilla/globals.pl @@ -1415,7 +1415,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;