summaryrefslogtreecommitdiffstats
path: root/processmail
diff options
context:
space:
mode:
authordave%intrec.com <>2000-09-02 13:26:36 +0200
committerdave%intrec.com <>2000-09-02 13:26:36 +0200
commitd4f0014aa753fcab4a4fc32f0ee13e5a3d31ac76 (patch)
treed442dfb54847be821dff5135215dd34f24b37418 /processmail
parentd733399f5e933a3b7579b4fd0c623c241bd9b1b9 (diff)
downloadbugzilla-d4f0014aa753fcab4a4fc32f0ee13e5a3d31ac76.tar.gz
bugzilla-d4f0014aa753fcab4a4fc32f0ee13e5a3d31ac76.tar.xz
Removing duplicate variable declaration from patch for bug 50698. The
sendmail deferred vs immediate delivery Param is now honored even in Perl 5.6.
Diffstat (limited to 'processmail')
-rwxr-xr-xprocessmail4
1 files changed, 2 insertions, 2 deletions
diff --git a/processmail b/processmail
index 6004f6632..d96a6f96e 100755
--- a/processmail
+++ b/processmail
@@ -587,7 +587,7 @@ sub NewProcessOnePerson ($$\@\%\%\%$$$$) {
my $sendmailparam = "-ODeliveryMode=deferred";
if (Param("sendmailnow")) {
- my $sendmailparam = "";
+ $sendmailparam = "";
}
open(SENDMAIL, "|/usr/lib/sendmail $sendmailparam -t") ||
die "Can't open sendmail";
@@ -654,7 +654,7 @@ sub ProcessOneBug {
# harmless.
my $sendmailparam = "-ODeliveryMode=deferred";
if (Param("sendmailnow")) {
- my $sendmailparam = "";
+ $sendmailparam = "";
}
open(SENDMAIL,
"|/usr/lib/sendmail $sendmailparam -t") ||