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
69aa4d37
Commit
69aa4d37
authored
Oct 12, 2001
by
gerv%gerv.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 52782 - whineatnews.pl email should use the 'sendmailnow' Param. Patch by…
Bug 52782 - whineatnews.pl email should use the 'sendmailnow' Param. Patch by e.maryniak@pobox.com, r=gerv.
parent
732514db
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
whineatnews.pl
whineatnews.pl
+4
-1
No files found.
whineatnews.pl
View file @
69aa4d37
...
@@ -62,7 +62,10 @@ foreach my $email (sort (keys %bugs)) {
...
@@ -62,7 +62,10 @@ foreach my $email (sort (keys %bugs)) {
foreach
my
$i
(
@
{
$bugs
{
$email
}})
{
foreach
my
$i
(
@
{
$bugs
{
$email
}})
{
$msg
.=
" ${urlbase}show_bug.cgi?id=$i\n"
$msg
.=
" ${urlbase}show_bug.cgi?id=$i\n"
}
}
open
(
SENDMAIL
,
"|/usr/lib/sendmail -t"
)
||
die
"Can't open sendmail"
;
my
$sendmailparam
=
Param
(
'sendmailnow'
)
?
''
:
"-ODeliveryMode=deferred"
;
open
SENDMAIL
,
"|/usr/lib/sendmail $sendmailparam -t"
or
die
"Can't open sendmail"
;
print
SENDMAIL
$msg
;
print
SENDMAIL
$msg
;
close
SENDMAIL
;
close
SENDMAIL
;
print
"$email "
.
join
(
" "
,
@
{
$bugs
{
$email
}})
.
"\n"
;
print
"$email "
.
join
(
" "
,
@
{
$bugs
{
$email
}})
.
"\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