Deleting email from mail queue
By Jamsi • Oct 6th, 2006 • Category: LinuxI had the need to delete all bounce messages in a sendmail mail queue, so I used the following
find /var/spool/mqueue -name ‘*’ -type f |xargs grep -l “User unknown” |xargs rm

