Greetings,
I'm trying to configure LdapAuth with FreeIPA Ldap. So far My configuration does not allow me to login. If I try to login with a valid user/password I get an "incorrect login/password" error from mediawiki. According to tcpdump the bind has success, so I do not know what is the problem.
My guess is about the LdapAuthDomainNames which accept only domain in "Microsoft Active Directory" format, instead of full ldap format.
This is my configuration:
wfLoadExtension( 'LdapAuth' );
#$wgLdapAuthDomainNames = 'uid={0},cn=users,cn=accounts,dc=ipa,dc=company,dc=it';
$wgLdapAuthDomainNames = 'IPA.company.IT';
$wgLdapAuthServers = 'freeipa.company.it';
$wgLdapAuthBindDN = 'uid=binduser,cn=users,cn=accounts,dc=ipa,dc=company,dc=it';
$wgLdapAuthBindPass = 'binduserpass';
$wgLdapAuthUseLocal = true;
Can you please help me out?