]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Wasn't using the 'emailsuffix' param.
authorterry%mozilla.org <>
Sat, 14 Aug 1999 00:10:01 +0000 (00:10 +0000)
committerterry%mozilla.org <>
Sat, 14 Aug 1999 00:10:01 +0000 (00:10 +0000)
whineatnews.pl

index 1f3d19cf6e5217ebb4d7141897ef35e71f7b261b..6be5f895e2298a1389447edc199ab288b3bb45b0 100755 (executable)
@@ -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}}) {