Quickly delete all e-mails in Exim queue
Sep 21
If for some reason or another you end up with a ton of e-mails in the queue and need them gone quickly, the command below will do the trick:
find /var/spool/exim/input -name '*.*' -exec rm {} \;
Sep 21
If for some reason or another you end up with a ton of e-mails in the queue and need them gone quickly, the command below will do the trick:
find /var/spool/exim/input -name '*.*' -exec rm {} \;