On Fri, May 12, 2023 at 12:55:26PM -0400, Wietse Venema via Postfix-users wrote:

> NON-DEBUG logging for a Postfix SMTP session that shows the poblem.
> 
> Output from the command "postconf -nf". Be sure to sanitize passwords
> or othre private infprmation.

In other words, don't paste any of the "base64" data logged by the SASL
AUTH commands.  Example:

    $ printf '\0luser\0sesame' | openssl base64
    AGx1c2VyAHNlc2FtZQ==

The base64 output is no "encrypted", and is trivial to decode

    $ printf "%s\n" AGx1c2VyAHNlc2FtZQ== | openssl base64 -d | od -An -c
          \0   l   u   s   e   r  \0   s   e   s   a   m   e            

-- 
    Viktor.
_______________________________________________
Postfix-users mailing list -- postfix-users@postfix.org
To unsubscribe send an email to postfix-users-le...@postfix.org

Reply via email to