On 09/17/2012 11:56 AM, Tobias Hachmer wrote:
I'm interested in how the owncloud authentication works when using this plugin with kolab. What kind of authentication is used in combination with kolab and why the authentication doesn#T work with my modifications?
It uses HTTP basic authentication. So in Apache we have something like this:
AuthType Basic AuthBasicProvider ldap AuthLDAPUrl ldap://ldap.klab.cc/ou=People,dc=klab,dc=cc?uid?sub?(uid=*) AuthLDAPBindDN "uid=kolab-service,ou=Special Users,dc=klab,dc=cc" AuthLDAPBindPassword pass AuthzLDAPAuthoritative on AuthLDAPGroupAttribute uniqueMember AuthLDAPGroupAttributeIsDN on AuthName "Valid Credentials and Sufficient Privileges Required" Require valid-user
Because at a time the plugin was written it was the only possible way to send credentials from Roundcube to ownCloud frame. I don't know if the situation is better now.