]> git.donarmstrong.com Git - debbugs.git/commitdiff
[project @ 2002-07-10 04:50:17 by doogie]
authordoogie <>
Wed, 10 Jul 2002 11:50:17 +0000 (03:50 -0800)
committerdoogie <>
Wed, 10 Jul 2002 11:50:17 +0000 (03:50 -0800)
Change -odq to -odb in sendmail call.

scripts/service.in

index 10e787e257481967a5b13607c9417f37f308f6e8..dc724112823e000e9bc56648cc43fb43a476e02c 100755 (executable)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: service.in,v 1.47 2002/07/10 04:48:01 doogie Exp $
+# $Id: service.in,v 1.48 2002/07/10 04:50:17 doogie Exp $
 # ^ more or less ^
 #
 # Usage: service <code>.nn
@@ -633,7 +633,7 @@ sub sendmailmessage {
     $c= open(D,"|-");
     defined($c) || &quit("mailing forking for sendmail: $!");
     if (!$c) { # ie, we are the child process
-        exec '/usr/lib/sendmail','-f'."$gMaintainerEmail",'-odq','-oem','-oi',get_addresses(@recips);
+        exec '/usr/lib/sendmail','-f'."$gMaintainerEmail",'-odb','-oem','-oi',get_addresses(@recips);
         die $!;
     }
     print(D $message) || &quit("writing to sendmail process: $!");