Here is an excerpt of my Postfix configuration:
broken_sasl_auth_clients = yes
smtpd_sasl_type = dovecot
smtpd_sasl_path = private/auth
smtpd_sasl_auth_enable = yes
smtpd_relay_restrictions = permit_sasl_authenticated, reject
I now want to test that Postfix really only accepts messages from authenticated users. Therefor I used telnet (directly on the server) and send a mail - which was successful even though I did not perform any authentication in the telnet session. Is that the expected behaviour? The last line of the excerpt suggests that the test should not have worked!?
Thanks!