Manually Clear from Console / Command Line cPanel Exim Mail Queue

To clear the cPanel exim mail queue quickly from a command line / shell use the following commands :


exim -bp | exiqgrep -i | xargs exim -Mrm


The following will remove mails older than 5 mins (300 seconds). Adjust to the time you would like.

exiqgrep -o 300 -i | xargs exim -Mrm 
  • 147 Users Found This Useful

Was this answer helpful?

Related Articles

Disable cPanel Brute Force Command Line

To disable the cPanel brute force detection from the command line usee the following:...

Repairing and Optimizing all MySQL and MariaDB Databases on the Server

From time to time you will find repairing and optimizing your databases are necessary. From a...

Failed to lock proc mutex: Permission denied

The error : Failed to lock proc mutex: Permission denied can occur when using mod_ruid2 with...

central_filter defer (-17): error in filter file: unknown filtering command r_subject: near line 22 of filter file

The error "central_filter defer (-17): error in filter file: unknown filtering command r_subject:...

Remount /tmp with exec permission

There are times where you may need to have exec permission available for the /tmp folder. This...