Metadata-Version: 1.0
Name: TracLDAPAuth
Version: 1.0
Summary: An AccountManager password store that uses python-ldap to check against an LDAP server.
Home-page: http://trac-hacks.org/wiki/LDAPAuthPlugin
Author: Noah Kantrowitz
Author-email: coderanger@yahoo.com
License: BSD
Description: 
        Notes
        =====
        This plugin does not require the `LdapPlugin`__.
        
        __ http://trac-hacks.org/wiki/LdapPlugin
        
        The password store name is ``LDAPStore``.
        
        Configuration
        =============
        All configuration options go in the ``[ldap]`` section.
        
        ``server``
        The hostname or IP to connect to.
        
        ``bind_dn``
        A string template to use to create the bind DN. Should contain one ``%s``
        which will be replaced by the username.
        
        Example
        =======
        
        [ldap]
        server = localhost
        bind_dn = uid=%s,dc=example,dc=com
        
        [account-manager]
        password_store = LDAPAuth
        
        [components]
        ldapauth.* = enabled
        
Keywords: trac plugin accountmanager
Platform: UNKNOWN
Classifier: Framework :: Trac
