summaryrefslogtreecommitdiffstats
path: root/whineatnews.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-08-14 02:10:01 +0200
committerterry%mozilla.org <>1999-08-14 02:10:01 +0200
commit324d41e5920031b73c64ea07230109d73ffd7b5a (patch)
tree4e1cfcda244b9b753af41d587b3b4d1c68177487 /whineatnews.pl
parente5ca1ec863768d3b5e620563416a436d846db461 (diff)
downloadbugzilla-324d41e5920031b73c64ea07230109d73ffd7b5a.tar.gz
bugzilla-324d41e5920031b73c64ea07230109d73ffd7b5a.tar.xz
Wasn't using the 'emailsuffix' param.
Diffstat (limited to 'whineatnews.pl')
-rwxr-xr-xwhineatnews.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/whineatnews.pl b/whineatnews.pl
index 1f3d19cf6..6be5f895e 100755
--- a/whineatnews.pl
+++ b/whineatnews.pl
@@ -50,10 +50,11 @@ while (@row = FetchSQLData()) {
my $template = Param('whinemail');
my $urlbase = Param('urlbase');
+my $emailsuffix = Param('emailsuffix');
foreach my $email (sort (keys %bugs)) {
my %substs;
- $substs{'email'} = $email;
+ $substs{'email'} = $email . $emailsuffix;
my $msg = PerformSubsts($template, \%substs);
foreach my $i (@{$bugs{$email}}) {