diff options
author | pb1dft <pb1dft@ampache> | 2006-10-15 01:07:46 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2006-10-15 01:07:46 +0000 |
commit | 8a644eb74fea37111e6950d5883144100bf4a99c (patch) | |
tree | f2c149a06897bfe2fe7061d7aec6336ec0f507ec /config/ampache.cfg.php.dist | |
parent | 0ac27764e1d5e3499a3ca2ded0018d33c42ae50b (diff) | |
download | ampache-8a644eb74fea37111e6950d5883144100bf4a99c.tar.gz ampache-8a644eb74fea37111e6950d5883144100bf4a99c.tar.bz2 ampache-8a644eb74fea37111e6950d5883144100bf4a99c.zip |
Modified the LDAP authentication to support Microsoft AD and fixed some minor typos
Diffstat (limited to 'config/ampache.cfg.php.dist')
-rw-r--r-- | config/ampache.cfg.php.dist | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/config/ampache.cfg.php.dist b/config/ampache.cfg.php.dist index da19b161..cfe5d409 100644 --- a/config/ampache.cfg.php.dist +++ b/config/ampache.cfg.php.dist @@ -303,8 +303,13 @@ refresh_limit = "60" # DEFAULT: false #auto_create = "false" -# Some LDAP servers won't let you search for the username -# without logging in with an application user account. +# LDAP filter string to use +# For OpenLDAP use "uid" +# For Microsoft Active Directory (MAD) use "sAMAccountName" +# DEFAULT: null +# ldap_filter = "uid" +# ldap_filter = "sAMAccountName" + # if this is the case, fill these in here: # DEFAULT: null #ldap_username = "" @@ -320,7 +325,8 @@ refresh_limit = "60" # This is the search dn used to find your user, uid=username is added on to # This string # DEFAULT: null -#ldap_search_dn = "ou=People,dc=yoursubdomain,dc=yourdomain,dc=yourtld?uid?sub?(objectclass=*)" +#For OpenLDAP use ldap_search_dn = "ou=People,dc=yoursubdomain,dc=yourdomain,dc=yourtld?uid?sub?(objectclass=*)" +#For MAD use ldap_search_dn = "ou=People,dc=yoursubdomain,dc=yourdomain,dc=yourtld" # This is the address of your ldap server # DEFAULT: null |