Changes between Version 2 and Version 3 of ActiveDirectoryAuthPlugin


Ignore:
Timestamp:
Sep 15, 2009, 2:41:41 AM (15 years ago)
Author:
warren smith
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ActiveDirectoryAuthPlugin

    v2 v3  
    3535Follow the Trac documentation on how [http://trac.edgewall.org/search?q=TracPlugins to install Trac plugins]
    3636
    37 == Example ==
     37== Examples ==
    3838
    39 Install
     39All config options go under the [account-manager] config heading.  Options for this module are:
     40
     41{{{
     42[account-manager]
     43#to use this module with AccountManager, ADAuthStore must be enabled inside of AccountManager
     44password_store = ADAuthStore
     45#define the Active Directory host address here.  A port other than default is set as
     46#hostname:port
     47ad_server = adserver.example.com
     48#the Active Directory's base DN to search from, this is likely just your domain
     49base_dn = DC=example,DC=com
     50#the user/password to search active directory from, it must be a valid
     51#username/password inside of active directory
     52bind_dn = ldapuser@example.com
     53bind_passwd = ldapuserpassword
     54#the DN (distinguishing name) for the group that contains users that can login to Trac
     55#if this isn't specified then any valid user in active directory is accepted
     56auth_group = CN=Alltechs,OU=Mail enabled groups,OU=Email,DC=serverplus,DC=com
     57#the DN for the group that contains users that should have the TRAC_ADMIN
     58#permission.  If this option is not given, no user groups will be give the
     59#TRAC_ADMIN permission.  This this option is enabled you must specify the
     60#UserExtensiblePermissionStore as the trac permission store, such as:
     61#[trac]
     62#permission_store = UserExtensiblePermissionStore
     63admin_group = CN=Administration,DC=example,DC=com
     64
     65[trac]
     66permission_store = UserExtensiblePermissionStore
     67}}}
     68
     69If you are unsure of what the DNs for your groups are, you may want to download an LDAP browser to inspect your Active Directory schema to find out a group's DN.
    4070
    4171== Recent Changes ==