Main menu:

Site search

Categories

Archive

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

Write a comment