Exim outbound queue is HUGE
show the count of messages in queue
exim -bpc
list the messages in queue
exim -bp
These can selectively delete messages from the queue
if the message is frozen
exim -bpru|grep frozen|awk {'print $3'}|xargs exim -Mrm
if the message is <>
exim -bpru|grep '<>‘|awk {’print $3′}|xargs exim -Mrm
if all
exim -bpru|awk {'print $3'}|xargs exim -Mrm
Posted: February 9th, 2006 under Linux, Exim.
Comments: none
Write a comment