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
jens 9bdf924535 - avoid sha/md5 library deprecation messages
- fix exportimport tests


git-svn-id: http://svn.dataflake.org/svn/Products.LDAPMultiPlugins/trunk@1823 835909ba-7c00-0410-bfa4-884f43845301
2009-11-24 15:15:21 +00:00
..
dtml - copying current trunk into new location 2008-06-05 15:51:44 +00:00
tests - avoid sha/md5 library deprecation messages 2009-11-24 15:15:21 +00:00
www - copying current trunk into new location 2008-06-05 15:51:44 +00:00
ActiveDirectoryMultiPlugin.py - adjust imports for items that have moved to dataflake.ldapconnection 2009-06-04 19:02:06 +00:00
CHANGES.txt - marching on 2009-02-17 13:56:57 +00:00
COPYRIGHT.txt - Bug: Move plugin registration from initialize method to module level to 2009-02-17 13:49:17 +00:00
DEPENDENCIES.txt - copying current trunk into new location 2008-06-05 15:51:44 +00:00
HISTORY.txt - split CHANGES.txt into CHANGES.txt and HISTORY.txt 2008-06-05 16:16:11 +00:00
INSTALL.txt - reformatting text documentation to be ReST-friendly 2008-06-05 16:24:54 +00:00
LDAPMultiPlugin.py - big copyright update 2009-02-08 08:21:45 +00:00
LDAPPluginBase.py - big copyright update 2009-02-08 08:21:45 +00:00
LICENSE.txt - copying current trunk into new location 2008-06-05 15:51:44 +00:00
README.txt - include links to bug tracker and SVN version 2008-11-01 12:27:01 +00:00
VERSION.txt - marching on 2009-02-17 13:56:57 +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 - big copyright update 2009-02-08 08:21:45 +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. See DEPENDENCIES.txt for software needed by this package.

Please make sure to read the documentation included in the LDAPUserFolder 
package as well.


Bug tracker
===========

Please post questions, bug reports or feature requests to the bug tracker
at http://www.dataflake.org/tracker/

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


Caching
=======

The results of some calls into the plugins provided by these package can be 
cached using the Zope ZCacheable mechanism:

- In the Zope Management Interface (ZMI) of your PluggableAuthService
  instance, select 'RAM Cache Manager' from the dropdown, give it an ID
  and configure it according to your needs.

- Click on your LDAP/ActiveDirectoryMultiPlugin and use the 'Cache' 
  ZMI tab on the far right to associate the newly created RAM Cache
  Manager object with the plugin.

Now your plugin will use the RAM Cache Manager object to cache results from 
some of the possibly expensive API calls.


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.