From owner-freebsd-questions Fri Apr 5 18: 3:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from hivemind.trini0.org (bgp626680bgs.brick201.nj.comcast.net [68.39.132.244]) by hub.freebsd.org (Postfix) with SMTP id 8A9BC37B419 for ; Fri, 5 Apr 2002 18:03:12 -0800 (PST) Received: (qmail 385 invoked by uid 0); 6 Apr 2002 02:03:06 -0000 Received: from unknown (HELO trini0.org) (192.168.0.3) by hivemind.trini0.org with SMTP; 6 Apr 2002 02:03:06 -0000 Message-ID: <3CAE575A.9080708@trini0.org> Date: Fri, 05 Apr 2002 21:03:06 -0500 From: Gerard Samuel User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.9) Gecko/20020315 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD Questions Subject: qmail.sh startup?? Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hey all. I had to reboot my box today, and during boot up, it would stop after it started apache and mysql, and I would have to control-C to get it going. Then I noticed that I couldn't send any mail. I started the qmail start up script by hand and its cool now. Everything looks ok with it. What could be causing it to not start during bootup?? Thanks lrwxr-xr-x 1 root wheel 13 Mar 23 15:40 qmail.sh -> /var/qmail/rc -r-xr-xr-x 1 root qmail 439 Mar 28 15:07 rc #!/bin/sh # Using splogger to send the log through syslog. # Using qmail-local to deliver messages to ~/Mailbox by default. case "$1" in start) exec env - PATH="/var/qmail/bin:$PATH" \ qmail-start ./Mailbox splogger qmail& /usr/local/bin/tcpserver -x /etc/tcp.smtp.cdb -HR -c 200 0 smtp /var/qmail/bin/qmail-smtpd exit 0 ;; stop) exec killall qmail-send ;; *) echo "Usage: `basename $0` {start|stop}" >&2 exit 64 ;; esac To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message