"Subba Rao" <[EMAIL PROTECTED]> wrote:
>Thank you very much for replying. When I use the
>"ps -waux" options, I do see the processes.
You're welcome. Glad that helped.
>$ mail user2 < .profile
>
>It went into sendmailq. The "mailq" command lists it as
>a sendmail job.
>
>If all the daemons are up and running, then why didn't
>the mail get delivered to user2?
Because /usr/lib/sendmail and/or /usr/sbin/sendmail still point(s) to
Sendmail, not /var/qmail/bin/sendmail. Do:
mv /usr/lib/sendmail /usr/lib/sendmail.old # ignore errors
mv /usr/sbin/sendmail /usr/sbin/sendmail.old # ignore errors
chmod 0 /usr/lib/sendmail.old /usr/sbin/sendmail.old # ignore errors
ln -s /var/qmail/bin/sendmail /usr/lib
ln -s /var/qmail/bin/sendmail /usr/sbin
-Dave