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 web development

Do you need DevOps-experts?

Your development team has a full backlog? No time for infrastructure architecture? Our DevOps team is ready to support you!

  • We build reliable cloud solutions with Infrastructure as code
  • We are experts in security, Linux and databases
  • We support your dev team to perform
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)