How to remove all frozen emails from the EXIM mail queue?

July 13, 2016 0 Comments
Exim is a mail transfer agent (MTA) used on Unix-like operating systems. It aims to be a general and flexible mailer with extensive facilities for checking incoming e-mail. Frozen emails are the emails to invalid mail accounts that were undelivered to the address. If the mail can’t be delivered for an account, the mail will be added in the queue and exim will try a couple of times to deliver the mail. Sometimes it is necessary to remove all frozen messages in exim mail queue immediately. You can remove all the frozen mails by executing any of following Exim commands. ‘exim -bp’ command: # exim -bp|grep frozen|awk ‘{print $3}’ |xargs exim -Mrm ‘exiqgrep’ command: # exiqgrep -zi|xargs exim -Mrm

Leave A Comment

To Top