This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
Products.LDAPMultiPlugins/Products/LDAPMultiPlugins
Frédéric Péters 4f675dc5aa add workaround for bug in Products.LDAPUserFolder (#4663) 2014-04-09 15:25:41 +02:00
..
dtml - copying current trunk into new location 2008-06-05 15:51:44 +00:00
tests - Bug: Demangling user prefix could not deal with non-string user 2010-05-30 11:33:45 +00:00
www - copying current trunk into new location 2008-06-05 15:51:44 +00:00
ActiveDirectoryMultiPlugin.py add naive implementation of group title search (#4451) 2014-03-12 17:09:13 +01:00
CHANGES.txt - Bug: Demangling user prefix could not deal with non-string user 2010-05-30 11:33:45 +00:00
HISTORY.txt - checkpoint 2010-02-08 21:15:39 +00:00
INSTALL.txt - checkpoint 2010-02-08 21:15:39 +00:00
LDAPMultiPlugin.py - Bug: enumerateUsers returned undesired results if an exact match 2010-05-26 15:44:49 +00:00
LDAPPluginBase.py add workaround for bug in Products.LDAPUserFolder (#4663) 2014-04-09 15:25:41 +02:00
README.txt - move license and copyright files to the egg root 2010-04-12 11:28:32 +00:00
VERSION.txt - checkpoint 2010-02-08 21:15:39 +00:00
__init__.py - Bug: Move plugin registration from initialize method to module level to 2009-02-17 13:49:17 +00:00
configure.zcml - fix up ZCML 2009-06-02 16:02:29 +00:00
exportimport.py - Bug: Added GenericSetup magic to fully provide the INode interface 2010-05-30 11:19:19 +00:00
interfaces.py - big copyright update 2009-02-08 08:21:45 +00:00

README.txt

===========================
 Products.LDAPMultiPlugins
===========================

.. contents::

The LDAPMultiPlugins provides PluggableAuthService plugins that use LDAP as 
the backend for the services they provide. The PluggableAuthService is a 
Zope user folder product that can be extended in modular fashion using 
various plugins.


Bug tracker
===========
Please post questions, bug reports or feature requests to the bug tracker
at https://bugs.launchpad.net/products.ldapmultiplugins


SVN version
===========
You can retrieve the latest code from Subversion using setuptools or
zc.buildout via this URL:

http://svn.dataflake.org/svn/Products.LDAPMultiPlugins/trunk#egg=Products.LDAPMultiPlugins


Special features - Active Directory Multi Plugin
================================================

Properties of the ADMultiPlugin instance:

- groupid_attr - the LDAP attribute used for group ids.

- grouptitle_attr - the LDAP attribute used to compose group titles.

- group_class - the LDAP class of group objects.

- group_recurse - boolean indicating whether to determine group
  memberships of a user by unrolling nested group relationships
  (expensive). This feature is not guaranteed to work at this moment.


Active Directory configuration hints
====================================

In order for groups support to work correctly, you may have to set the
following properties. Every situation is different, but this has helped
some people succeed:

- On the "Properties" tab for the ActiveDirectoryMultiPlugin, set the
  groupid_attr property to "name".

- On the contained LDAPUserFolder's "Configure" tab, choose a 
  property other than "objectGUID", e.g. "sAMAccountName" for the
  User ID property. To get to the LDAPUserFolder, click on the
  ActiveDirectoryMultiPlugin "Content" tab.

Please see README.ActiveDirectory from the LDAPUserFolder package for
additional information.