[EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> I'm positive this has to be something simple, I just cann't see it.  I've
> researched the archives and documentation to no avail.

Yup, something simple.

> tcpserver accepts the connection and qmail places the mail in
> /opt/qmail/queue/todo (yes I compiled qmail to use opt in place of var) and
> then it just sits there.   Fot the life of me I can't figure out why
> qmail-smtpd dosen't spawn the next process.

qmail-smtpd calls qmail-queue, and that's it.  It's up to qmail-send to
pull messages out of the queue and deliver them, and you're not actually
starting any of the other qmail processes:

> #
> # Startup for Qmail
> #
> # /usr/local/bin/rblsmtpd -rrbl.maps.vix.com \
> # /usr/local/bin/rblsmtpd -rdul.maps.vix.com \
> 
> case "$1" in
> 'start')
> #        /usr/local/bin/supervise /opt/qmail/supervise/tcpserver-qmail-smtpd
>               /usr/local/bin/tcpserver -c 10 -u 103 -g 101 \
>               -x /etc/tcprules.d/qmail-smtpd.cdb \
>               0 smtp \
>               /opt/qmail/bin/qmail-smtpd 2>&1 | \
>               /opt/qmail/bin/splogger qmail &

You've started qmail-smtpd, but not qmail itself (i.e. qmail-start).
See "Life with qmail" for one example of a script to actually start qmail
proper.

Charles
-- 
-----------------------------------------------------------------------
Charles Cazabon                            <[EMAIL PROTECTED]>
GPL'ed software available at:  http://www.qcc.sk.ca/~charlesc/software/
Any opinions expressed are just that -- my opinions.
-----------------------------------------------------------------------

Reply via email to