summaryrefslogtreecommitdiffstats
path: root/whine.pl
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@redhat.com>2014-05-29 16:18:24 +0200
committerDavid Lawrence <dkl@redhat.com>2014-05-29 16:18:24 +0200
commit1af952ceaa1c06a10e0eeb6f139e5a5652002e98 (patch)
tree9c8adcb754e6f28b85fc3fa180dd348ac332a75a /whine.pl
parent049ea3d136ca73c82f5aa530f328d2596f8e6090 (diff)
downloadbugzilla-1af952ceaa1c06a10e0eeb6f139e5a5652002e98.tar.gz
bugzilla-1af952ceaa1c06a10e0eeb6f139e5a5652002e98.tar.xz
Bug 1016273: Bugzilla whine emails missing change to From header made by bug 1010751
Diffstat (limited to 'whine.pl')
-rwxr-xr-xwhine.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/whine.pl b/whine.pl
index e6161cfeb..a1ff34a1d 100755
--- a/whine.pl
+++ b/whine.pl
@@ -97,7 +97,8 @@ my $sth_schedules_by_event = $dbh->prepare(
# Send whines from the address in the 'mailfrom' Parameter so that all
# Bugzilla-originated mail appears to come from a single address.
-my $fromaddress = Bugzilla->params->{'mailfrom'};
+my $fromaddress = '"' . template_var('terms')->{'BugzillaTitle'} . '"' .
+ ' <' . Bugzilla->params->{'mailfrom'} . '>';
# get the current date and time
my ($now_sec, $now_minute, $now_hour, $now_day, $now_month, $now_year,