From: jocuri%softhome.net <> Date: Thu, 9 Dec 2004 17:27:10 +0000 (+0000) Subject: Patch for bug 258709: Make expansion of voteremovedmail honour emailsuffix; patch... X-Git-Tag: bugzilla-2.19.2~82 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f62da216845391cb81e3d90eb568d69682f99967;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 d1e751bb0d..677047fe2d 100644 --- a/globals.pl +++ b/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;