[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] sendmail open user in top
- Subject: Re: [cobalt-users] sendmail open user in top
- From: cobalt@xxxxxxxxxxxxx
- Date: Tue Jul 9 06:33:04 2002
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
On 9 Jul 2002 at 14:17, Liam Delahunty wrote:
> I tried
> /etc/rc.d/init.d/sendmail restart
> but the processes remained.
When you issue a restart, only the main sendmail process is stopped and started.
To kill all the other sendmail process (one by one), issue
/etc/rc.d/init.d/sendmail stop
untill you get the [failed] message then
/etc/rc.d/init.d/sendmail start
to get it going again.
To see which mails are going where, issue this command to see the mail queue:
mailq
This will show the full list of all emails in the queue, where they're going, and why
they are still in the queue if there is a delay.
Any entries with a * next to them are currently being sent.
You can also pipe the command to 'less' to get one screen full at a time:
mailq | less
to scroll down press 'enter', to leave press 'q'.
Ian