]> git.donarmstrong.com Git - debbugs.git/commitdiff
[project @ 2001-08-16 07:22:21 by doogie]
authordoogie <>
Thu, 16 Aug 2001 14:22:21 +0000 (06:22 -0800)
committerdoogie <>
Thu, 16 Aug 2001 14:22:21 +0000 (06:22 -0800)
Tell sendmail to queue outgoing mail for later delivery, instead of
immediate delivery.

scripts/service.in

index 1867c76101608a231a5f476ecb291b1f6c27fff1..4a8b5cdc98ddb04d8a846f1d7eba1b23489c4ca5 100755 (executable)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: service.in,v 1.38 2001/08/16 07:21:36 doogie Exp $
+# $Id: service.in,v 1.39 2001/08/16 07:22:21 doogie Exp $
 # ^ more or less ^
 #
 # Usage: service <code>.nn
@@ -604,7 +604,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",'-odi','-oem','-oi',get_addresses(@recips);
+        exec '/usr/lib/sendmail','-f'."$gMaintainerEmail",'-odq','-oem','-oi',get_addresses(@recips);
         die $!;
     }
     print(D $message) || &quit("writing to sendmail process: $!");