From: jocuri%softhome.net <> Date: Thu, 9 Dec 2004 17:27:36 +0000 (+0000) Subject: Patch for bug 258709: Make expansion of voteremovedmail honour emailsuffix; patch... X-Git-Tag: bugzilla-2.18~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da1bf41d17095acd820aa71410860830f807eaf7;p=thirdparty%2Fbugzilla.git Patch for bug 258709: Make expansion of voteremovedmail honour emailsuffix; patch by Marc Schumann , r=vladd, a=justdave. --- 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;