Displaying 1 result from an estimated 1 matches for "is_valid_passwd".
2006 Oct 15
1
Authenticating dovecot against Active Directory using bsdauth and login_ldap
...orted login:
user=<mcrokerx>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, secured
=======================================
It appears that the cause of these log messages are the following
lines of code in src/auth/passdb-bsdauth.c
==== src/auth/passdb-bsdauth.c ========
    29          if (!IS_VALID_PASSWD(pw->pw_passwd)) {
    30                  auth_request_log_info(request, "bsdauth",
    31                                        "invalid password field");
    32                  callback(PASSDB_RESULT_USER_DISABLED, request);
    33                  return;
    34...