Efficient Removal of Frozen Emails from Exim Mail Queue

thumb_up 1  ·  sell Exim mail queue frozen emails, Removing frozen emails Exim, Streamlined removal of stuck emails

How can I remove frozen emails from exim mail queue? Today we will find out how to delete all your frozen emails from the mail queue. But first, let’s find out what frozen emails are.

What are frozen emails?

Frozen emails are simply emails sent to invalid address that are underlivered. This mails are stored in the exim mail queue and the system tries to send those mails during a specific time defined at the RETRY CONFIGURATION in Exim mail configuration file. After the predefined days set at Exim Configuration, the mail will be marked as frozen.

Frozen timeout is determined by timeout_frozen_after variable, located at /etc/exim.conf file.

You can get the value of this variable by running this commnand:

[root@server.nixcp.com:~]grep timeout_frozen_after /etc/exim.conf
timeout_frozen_after = 5d

On heavy email traffic servers you will need to clean out the frozen emails from time to time.

How to remove frozen emails from the Exim mail queue?

Frozen emails can be removed – deleted by executing any of this exim based commands:

Using exim command:

exim -bp|grep frozen|awk '{print $3}' |xargs exim -Mrm

Using exiqgrep command:

exiqgrep -zi|xargs exim -Mrm


The End! should you have any inquiries, we encourage you to reach out to the Vercaa Support Center without hesitation.

Was this answer helpful?

Related Articles

description

Enabling Global Gzip Compression in WHM for All Accounts and Websites

Apache mod_deflate module is one of the best friends of a cPanel system administrator. It allows you to save bandwidth and accelerate page…

arrow_forward
description

Validating and Confirming cPanel License Information

cPanel and WHM is the #1 leading control panel in the web hosting market. And time ago we posted a post about how to get a free cpanel…

arrow_forward
description

Changing SSH Port via WHM for Enhanced Security

This is a new way I found to reset ssh port from WHM control panel if you ever lost SSH access because you forgot what is the port you are…

arrow_forward
description

Essential Nginx Modules for cPanel and WHM: Top 4 Picks

As we all know, cPanel doesn’t fully support Nginx yet, it will be ready in the future as it is one of the most requested features from…

arrow_forward
description

A Guide to Utilizing the MultiPHP INI Editor in cPanel

With the new EasyApache 4 we have a new option called MultiPHP INI Editor. It’s a simple PHP editor for WHM users who need to change PHP…

arrow_forward
arrow_back « Back