Melvin Vermeeren: > > connect from localhost[127.0.0.1] > > warning: restriction `reject_authenticated_sender_login_mismatch' ignored: > > no SASL support
This means that Postfix is built without any SASL support, or that you have "smtpd_sasl_enable=no". Wietse Code sample: #ifdef USE_SASL_AUTH } else if (is_map_command(state, name, CHECK_SASL_ACL, &cpp)) { if (var_smtpd_sasl_enable) { if (state->sasl_username && state->sasl_username[0]) status = check_sasl_access(state, *cpp, def_acl); } else #endif msg_warn("restriction `%s' ignored: no SASL support", name); } else ...