Maybe somebody finds this usefull:
I noticed that there is a problem using courier-pop3d with auth_imap
(the advantage of courier-pop3d is, that it logs the size of the message
transfered; the advantage of not using auth_ldap is that I need no
modification in the LDAP directory).
The problem is that pop3d needs the AUTHADDR environment variable. I
made the following modification to auth_ldap.c:
I inserted
if (!env_put2("AUTHADDR",login)) {
qldap_errno = ERRNO;
auth_error();
}
after the
if (!env_put2("USER",login)) {
qldap_errno = ERRNO;
auth_error();
}
.