a while ago i setup SugarCRM to authenticate against the Scalix-Ldap Server.
This is done with this config and is WORKING:
Code: Select all
LDAP Authentifizierung Support
activate yes ;)
Server 12.12.12.12
Port: 389
Base DN: o=Scalix
Bind Attribute: dn
Login Attribute: omUlAuthid
Authenticated User: cn=sxqueryadmin, o=Scalix
Authenticated Password: **** (entered while installation)
auto create users : yes
Now i tried to setup apache 2.2 ldap auth module which is NOT WORKING?:
Code: Select all
<Location /webfolderldap>
DAV On
AuthType Basic
AuthBasicProvider ldap
AuthName "Ldap login Webfolder"
AuthzLDAPAuthoritative on
#AuthLDAPURL "ldap://10.2.1.100:389/o=Scalix?omcn?sub?(objectClass=*)" # Use this for Names aka "Marcus Bertram"
AuthLDAPURL "ldap://10.2.1.100:389/o=Scalix?omUlAuthid?sub?(objectClass=*)" #Use this for Username Logins
AuthLDAPBindDN "cn=sxqueryadmin, o=Scalix"
AuthLDAPBindPassword "**********"
Require valid-user
</Location>
What works so far:
Apache is asking the Ldap Service.
Login to the Ldap Service works (using BindDN and Password).
And Apache finds the User with attribute omUlAuthid for ex. Marcus.Bertram
But then it asks again an again for the password?
What could be wrong?
Thanks for an ideas!