summaryrefslogtreecommitdiffstats
path: root/email_in.pl
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@redhat.com>2014-06-05 21:57:59 +0200
committerDavid Lawrence <dkl@redhat.com>2014-06-05 21:58:22 +0200
commit685776f18291c4c0ee0ce729318b36d025be55f4 (patch)
tree109c8600d26ec11bf9b57cfe2745b1a4957940c3 /email_in.pl
parentac9980ad764eeaadca73a73cdcab554587135629 (diff)
downloadbugzilla-685776f18291c4c0ee0ce729318b36d025be55f4.tar.gz
bugzilla-685776f18291c4c0ee0ce729318b36d025be55f4.tar.xz
Bug 1016273: Bugzilla whine emails missing change to From header made by bug 1010751
Diffstat (limited to 'email_in.pl')
-rwxr-xr-xemail_in.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/email_in.pl b/email_in.pl
index 928758a9e..34e57c90c 100755
--- a/email_in.pl
+++ b/email_in.pl
@@ -387,8 +387,7 @@ sub die_handler {
$msg =~ s/at .+ line.*$//ms;
$msg =~ s/^Compilation failed in require.+$//ms;
$msg = html_strip($msg);
- my $from = '"' . template_var('terms')->{'BugzillaTitle'} . '"' .
- ' <' . Bugzilla->params->{'mailfrom'} . '>';
+ my $from = Bugzilla->params->{'mailfrom'};
my $reply = reply(to => $input_email, from => $from, top_post => 1,
body => "$msg\n");
MessageToMTA($reply->as_string);