Search


Monday, July 23, 2012

Clear Exim queue using eximstats

If the exim mail queue becomes large and mail server got blocked. You can follow the below steps to clear the exim queue.  If the queue is very large, its will take time to clear the exim queue using the command exim -Mrm

Clear Exim queue using eximstats



Login to mysql
mysql
mysql> use eximstats
mysql> delete from sends;
mysql> delete from smtp;
mysql> delete from failures;
mysql> delete from defers;

No comments:

Post a Comment