[ID 20001122.002] [PATCH 5.7.0@7795] two small patches to perlbug
Philip Newton [Wed, 22 Nov 2000 14:25:53 +0000 (15:25 +0100)]
Message-Id: <3A1BD771.25462.1939FAD@localhost>

Be case-understanding also on 's', and use the -oi of sendmail
not to terminate the transmission on a lone '.'.

p4raw-id: //depot/perl@7803

utils/perlbug.PL

index 2033eee..d323913 100644 (file)
@@ -776,7 +776,7 @@ EOF
                Edit();
            } elsif ($action =~ /^[qc]/i) { # <C>ancel, <Q>uit
                Cancel();
-           } elsif ($action =~ /^s/) {
+           } elsif ($action =~ /^s/i) {
                paraprint <<EOF;
 I'm sorry, but I didn't understand that. Please type "send" or "save".
 EOF
@@ -844,7 +844,7 @@ report. We apologize for the inconvenience.
 So you may attempt to find some way of sending your message, it has
 been left in the file `$filename'.
 EOF
-       open(SENDMAIL, "|$sendmail -t") || die "'|$sendmail -t' failed: $!";
+       open(SENDMAIL, "|$sendmail -t -oi") || die "'|$sendmail -t -oi' failed: $!";
 sendout:
        print SENDMAIL "To: $address\n";
        print SENDMAIL "Subject: $subject\n";