|
This article tells you how to clear your outgoing mail queue. I had a message that
wasn't going away. And I didn't want to wait for it to time out after the standard 5
days of trying. Here's the message that was filling up my logs:
Mar 16 14:38:04 ns sendmail[20351]: VAA03402: to=akela@akela.ti.cz,
delay=4+17:24:11, xdelay=00:01:16, mailer=esmtp
Mar 16 15:08:04 ns sendmail[20404]: VAA03402: to=akela@akela.ti.cz,
delay=4+17:54:11, xdelay=00:01:16, mailer=esmtp
Mar 16 15:38:04 ns sendmail[20450]: VAA03402: to=akela@akela.ti.cz,
delay=4+18:24:11, xdelay=00:01:15, mailer=esmtp
Every 30 minutes. I was getting sick of it! <grin> So here's
how I cleared it out:
# sendmail -bp
That will print a list of the mail queue. Then you do manually remove the ones
you want:
# cd /var/spool/mqueue
# rm <insert your file name here>
|