From d4f0014aa753fcab4a4fc32f0ee13e5a3d31ac76 Mon Sep 17 00:00:00 2001 From: "dave%intrec.com" <> Date: Sat, 2 Sep 2000 11:26:36 +0000 Subject: Removing duplicate variable declaration from patch for bug 50698. The sendmail deferred vs immediate delivery Param is now honored even in Perl 5.6. --- processmail | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'processmail') 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") || -- cgit v1.2.3-24-g4f1b