summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-12-09 18:27:10 +0100
committerjocuri%softhome.net <>2004-12-09 18:27:10 +0100
commitf62da216845391cb81e3d90eb568d69682f99967 (patch)
tree016024e395b209c485ef3c82edbeb322a15ce452 /globals.pl
parent1aa21d6c316162bb1a5568cf7f3639aab2ff5ea3 (diff)
downloadbugzilla-f62da216845391cb81e3d90eb568d69682f99967.tar.gz
bugzilla-f62da216845391cb81e3d90eb568d69682f99967.tar.xz
Patch for bug 258709: Make expansion of voteremovedmail honour emailsuffix; patch by Marc Schumann <wurblzap@gmail.com>, r=vladd, a=justdave.
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/globals.pl b/globals.pl
index d1e751bb0..677047fe2 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;