Hello,

I was trying out qmail following 'Life with qmail' by
Dave Sill.
After installation and what not, he specifies that a
link is to be created as follows:

    ln -s /var/qmail/supervise/qmail-send
/var/qmail/supervise/qmail-smtpd /service

Now the problem is that my RH7.1 installation does not
have the /service directory. 
So I created the directory manually and executed the
above command. Fine.

When I finally tried to start qmail using the qmailctl
script, I get the following message:
-----------
Starting qmail
qmail-send supervise not running
qmail-smtpd supervise not running
-----------

I'll include the relevant portion of the qmailctl
script:
-----------
case "$1" in
  start)
    echo "Starting qmail"
    if svok /service/qmail-send ; then
      svc -u /service/qmail-send
    else
      echo qmail-send supervise not running
    fi
    if svok /service/qmail-smtpd ; then
      svc -u /service/qmail-smtpd
    else
      echo qmail-smtpd supervise not running
    fi
-----------

Where have I gone wrong?

Thanks

Ajay Shankar

__________________________________________________
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/

_______________________________________________
linux-india-help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/linux-india-help

Reply via email to