log_oob
Affects how incoming RFC 3464 formatted out-of-band bounce report messages are handled.
Can be one of the following values:
"Ignore"
- do not parse or care whether the incoming message might be an OOB report. (Since: Version 2025.05.06-b29689af)"LogThenRelay"
- if the incoming message is an OOB report, then log theOOB
record and continue to allow the message to be enqueued for relay. You will also see aReception
record for the relayed message, as well as records for its attempts to relay after reception. (Since: Version 2025.05.06-b29689af)"LogThenDrop"
- if the incoming message is an OOB report, then log theOOB
record, but silently drop the message without relaying it. There will be no additional log records for the message. (Since: Version 2025.05.06-b29689af)false
- equivalent to"Ignore"
. This is for backwards compatibility with earlier versions of KumoMTA and we recommend using"Ignore"
explicitly in your configuration moving forwards.true
- equivalent to"LogThenRelay"
. This is for backwards compatibility with earlier versions of KumoMTA and we recommend using"LogThenRelay"
explicitly in your configuration moving forwards if you want that behavior, although you will likely prefer to use"LogThenDrop"
in most cases.