From: doogie <> Date: Wed, 10 Jul 2002 11:50:17 +0000 (-0800) Subject: [project @ 2002-07-10 04:50:17 by doogie] X-Git-Tag: release/2.6.0~1058 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=610652148a2872ba922868c87e31c25b4a48f614;p=debbugs.git [project @ 2002-07-10 04:50:17 by doogie] Change -odq to -odb in sendmail call. --- diff --git a/scripts/service.in b/scripts/service.in index 10e787e2..dc724112 100755 --- a/scripts/service.in +++ b/scripts/service.in @@ -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 .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: $!");