On Wed, Feb 16, 2022 at 05:05:39PM -0500, Viktor Dukhovni wrote:
> > There is a mandatory printable() filter in the bounce daemon after
> > it reads a request, before it writes the bounce/defer/etc log (look
> > for the VS_NEUTER macro). ESC does not count as a printable character.
>
> Are envelope addresses censored (sanitised) by showq(8)?
I seems they are:
src/showq/showq.c:
...
case REC_TYPE_FROM:
...
quote_822_local(printable_quoted_addr, start);
printable(STR(printable_quoted_addr), '?');
...
case REC_TYPE_RCPT:
...
quote_822_local(printable_quoted_addr, start);
printable(STR(printable_quoted_addr), '?');
So unless that's "relaxed", with the responsibility moved to
postqueue(1), relaxing the rules in "postqueue" is perhaps futile.
--
Viktor.