Read more

Exim: investigating frozen messages in the mailqueue

Claus-Theodor Riegg
May 05, 2015Software engineer at makandra GmbH

Investigate why mails are frozen

The exim documentation Show archive.org snapshot says:

Freezing occurs when a bounce message encounters a permanent failure because the sender address of the original message that caused the bounce is invalid, so the bounce cannot be delivered. This is probably the most common case, but there are also other conditions that cause freezing, and frozen messages are not always bounce messages.

Illustration book lover

Growing Rails Applications in Practice

Check out our e-book. Learn to structure large Ruby on Rails codebases with the tools you already know and love.

  • Introduce design conventions for controllers and user-facing models
  • Create a system for growth
  • Build applications to last
Read more Show archive.org snapshot

By default, frozen bounce messages will be deleted after 2 days and other messages after 7 days. This post on stackoverflow Show archive.org snapshot shows a good way to search for reasons why messages are frozen.

Delete frozen mails in the queue

Maybe you should check which messages are frozen and search for reasons before you delete them. You should ensure that the mails you will delete are just garbage and nothing important.

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

Posted by Claus-Theodor Riegg to makandra Operations (2015-05-05 11:08)