Exim: Difference between revisions
Jump to navigation
Jump to search
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== Useful commands == | |||
* Show all config options: <code>exim -bP</code> | |||
* Message queue: <code>exim -bp</code> | |||
* Message queue count: <code>exim -bpc</code> or <code>exiqgrep -c</code> | |||
* Message queue summary: <code>exim -bp | exiqsumm</code> | |||
* Frozen message count: <code>exiqgrep -zc</code> | |||
Options to look for when debugging: | |||
* ignore_bounce_errors_after: How long to wait before ignoring bounces | |||
* timeout_frozen_after: How long to wait before removing frozen messages | |||
== Links == | == Links == | ||
* [https://github.com/pwaring/hmx_tombstone HMX Tombstone] - Useful Exim configuration for filtering. | * [https://github.com/pwaring/hmx_tombstone HMX Tombstone] - Useful Exim configuration for filtering. | ||
* [https://www.tablix.org/~avian/blog/archives/2019/04/google_is_eating_our_mail/ Google is eating our mail] - Problems delivering mail to Google. | * [https://www.tablix.org/~avian/blog/archives/2019/04/google_is_eating_our_mail/ Google is eating our mail] - Problems delivering mail to Google. | ||
* [https://bradthemad.org/tech/notes/exim_cheatsheet.php Exim cheatsheet] |
Latest revision as of 08:38, 16 February 2022
Useful commands
- Show all config options:
exim -bP
- Message queue:
exim -bp
- Message queue count:
exim -bpc
orexiqgrep -c
- Message queue summary:
exim -bp | exiqsumm
- Frozen message count:
exiqgrep -zc
Options to look for when debugging:
- ignore_bounce_errors_after: How long to wait before ignoring bounces
- timeout_frozen_after: How long to wait before removing frozen messages
Links
- HMX Tombstone - Useful Exim configuration for filtering.
- Google is eating our mail - Problems delivering mail to Google.
- Exim cheatsheet