Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
4aa7e263
Commit
4aa7e263
authored
Jul 12, 2008
by
mkanat%bugzilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 444185: Make email_in.pl send errors with From as "mailfrom".
Patch By Vincent Castellano <surye80@gmail.com> r=mkanat, a=mkanat
parent
f1b362df
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
email_in.pl
email_in.pl
+3
-1
No files found.
email_in.pl
View file @
4aa7e263
...
...
@@ -310,7 +310,9 @@ sub die_handler {
$msg
=~
s/at .+ line.*$//ms
;
$msg
=~
s/^Compilation failed in require.+$//ms
;
$msg
=
html_strip
(
$msg
);
my
$reply
=
reply
(
to
=>
$input_email
,
top_post
=>
1
,
body
=>
"$msg\n"
);
my
$from
=
Bugzilla
->
params
->
{
'mailfrom'
};
my
$reply
=
reply
(
to
=>
$input_email
,
from
=>
$from
,
top_post
=>
1
,
body
=>
"$msg\n"
);
MessageToMTA
(
$reply
->
as_string
);
}
print
STDERR
"$msg\n"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment