Update of /cvsroot/pdd/Userguide/directives/sgml In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv12119 Modified Files: LDAPDoAuth LDAPDoGIDLookups LDAPDoQuotaLookups LDAPDoUIDLookups LDAPNegativeCache Added Files: LDAPGroups LDAPUsers Log Message: update for directive changes in mod_ldap 2.9.0 --- NEW FILE --- <refentry id="LDAPGroups"> <?dbhtml filename="config_ref_LDAPGroups.html"> <refentryinfo> <keywordset> <keyword> mod_ldap </keyword> </keywordset> </refentryinfo> <refmeta> <refentrytitle> <indexterm><primary>LDAPGroups</primary></indexterm> LDAPGroups </refentrytitle> </refmeta> <refnamediv> <refname>LDAPGroups</refname> <refpurpose> Enable LDAP lookups for user group membership and GIDs in directory listings </refpurpose> </refnamediv> <refsynopsisdiv> <cmdsynopsis> <command>LDAPGroups</command> <arg choice="opt"> <option>"group-base-dn"</option> </arg> <arg choice="opt"> <option>"group-name-filter-template"</option> </arg> <arg choice="opt"> <option>"gid-number-filter-template"</option> </arg> <arg choice="opt"> <option>"member-user-filter-template"</option> </arg> </cmdsynopsis> <variablelist> <title></title> <varlistentry> <term><synopsis>Default</synopsis></term> <listitem><para> disabled </para></listitem> </varlistentry> <varlistentry> <term><synopsis>Context</synopsis></term> <listitem><para> server config, <VirtualHost>, <Global> </para></listitem> </varlistentry> <varlistentry> <term><synopsis>Module</synopsis></term> <listitem><para>mod_ldap</para></listitem> </varlistentry> <varlistentry> <term><synopsis>Compatibility</synopsis></term> <listitem><para> mod_ldap v2.9.0 and later </para></listitem> </varlistentry> </variablelist> </refsynopsisdiv> <refsect1> <title>Description</title> <para>Activates LDAP group membership lookups and GID to name mappings in directory listings.</para> <para>The first argument to this directive is the LDAP base DN to use for group lookups. The second through fourth arguments are templates to be used for the search filter; %u will be replaced with the group name, GID number, or group member username that is being looked up, respectively.</para> <para>By default, the search filter templates look like this:</para> <para> group-name-filter-template: "(&(LDAPAttr_cn=%u)(objectclass=posixGroup))", gid-number-filter-template: "(&(LDAPAttr_gidNumber=%u)(objectclass=posixGroup))", member-user-filter-template: "(&(LDAPAttr_memberUid=%u)(objectclass=posixGroup))". </para> <para>The attribute names used in the default search filters are taken from the <link linkend="LDAPAttr">LDAPAttr</link> directive.</para> </refsect1> <refsect1> <title>See also</title> <para> <link linkend="LDAPAttr">LDAPAttr</link> </para> </refsect1> <refsect1> <title>Examples</title> <para></para> </refsect1> </refentry> --- NEW FILE --- <refentry id="LDAPUsers"> <?dbhtml filename="config_ref_LDAPUsers.html"> <refentryinfo> <keywordset> <keyword> mod_ldap </keyword> </keywordset> </refentryinfo> <refmeta> <refentrytitle> <indexterm><primary>LDAPUsers</primary></indexterm> LDAPUsers </refentrytitle> </refmeta> <refnamediv> <refname>LDAPUsers</refname> <refpurpose>Enable LDAP authentication/user lookups</refpurpose> </refnamediv> <refsynopsisdiv> <cmdsynopsis> <command>LDAPUsers</command> <arg choice="opt"> <option>"user-base-dn"</option> </arg> <arg choice="opt"> <option>"username-filter-template"</option> </arg> <arg choice="opt"> <option>"uid-number-filter-template"</option> </arg> </cmdsynopsis> <variablelist> <title></title> <varlistentry> <term><synopsis>Default</synopsis></term> <listitem><para> disabled </para></listitem> </varlistentry> <varlistentry> <term><synopsis>Context</synopsis></term> <listitem><para> server config, <VirtualHost>, <Global> </para></listitem> </varlistentry> <varlistentry> <term><synopsis>Module</synopsis></term> <listitem><para>mod_ldap</para></listitem> </varlistentry> <varlistentry> <term><synopsis>Compatibility</synopsis></term> <listitem><para> mod_ldap v2.9.0 and later </para></listitem> </varlistentry> </variablelist> </refsynopsisdiv> <refsect1> <title>Description</title> <para>Activates LDAP authentication and UID to name mappings in directory listings.</para> <para>The first argument to this directive is the LDAP base DN to use for authentication. The second argument is a template to be used for the search filter when looking up users by username; %u will be replaced with the username that is being authenticated. The third argument is a template to be used for the search filter when looking up users by UID number; %u will be replaced with the UID number that is being looked up.</para> <para>By default, the search filter templates look like this:</para> <para> username-filter-template: "(&(LDAPAttr_uid=%u)(objectclass=posixAccount))", uid-number-filter-template: "(&(LDAPAttr_uidNumber=%u)(objectclass=posixAccount))", </para> <para>The attribute names used in the default search filters are taken from the <link linkend="LDAPAttr">LDAPAttr</link> directive.</para> </refsect1> <refsect1> <title>See also</title> <para> <link linkend="LDAPAttr">LDAPAttr</link> </para> </refsect1> <refsect1> <title>Examples</title> <para></para> </refsect1> </refentry> Index: LDAPDoAuth =================================================================== RCS file: /cvsroot/pdd/Userguide/directives/sgml/LDAPDoAuth,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** LDAPDoAuth 28 Jun 2005 17:56:11 -0000 1.11 --- LDAPDoAuth 15 Oct 2010 18:20:38 -0000 1.12 *************** *** 64,68 **** <term><synopsis>Compatibility</synopsis></term> <listitem><para> ! mod_ldap v2.0 and later </para></listitem> </varlistentry> --- 64,69 ---- <term><synopsis>Compatibility</synopsis></term> <listitem><para> ! mod_ldap <= v2.9.0, replaced by ! <link linkend="LDAPUsers">LDAPUsers</link> </para></listitem> </varlistentry> Index: LDAPDoGIDLookups =================================================================== RCS file: /cvsroot/pdd/Userguide/directives/sgml/LDAPDoGIDLookups,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** LDAPDoGIDLookups 25 Jan 2007 14:41:16 -0000 1.14 --- LDAPDoGIDLookups 15 Oct 2010 18:20:38 -0000 1.15 *************** *** 74,78 **** <term><synopsis>Compatibility</synopsis></term> <listitem><para> ! mod_ldap v2.0 and later </para></listitem> </varlistentry> --- 74,79 ---- <term><synopsis>Compatibility</synopsis></term> <listitem><para> ! mod_ldap <= v2.9.0, replaced by ! <link linkend="LDAPGroups">LDAPGroups</link> </para></listitem> </varlistentry> Index: LDAPDoQuotaLookups =================================================================== RCS file: /cvsroot/pdd/Userguide/directives/sgml/LDAPDoQuotaLookups,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** LDAPDoQuotaLookups 28 Jun 2005 17:56:11 -0000 1.7 --- LDAPDoQuotaLookups 15 Oct 2010 18:20:38 -0000 1.8 *************** *** 66,70 **** <term><synopsis>Compatibility</synopsis></term> <listitem><para> ! mod_ldap v2.8.12 and later </para></listitem> </varlistentry> --- 66,72 ---- <term><synopsis>Compatibility</synopsis></term> <listitem><para> ! mod_ldap <= v2.9.0, replaced by ! <link linkend="LDAPUsers">LDAPUsers</link> and ! <link linkend="LDAPDefaultQuota">LDAPDefaultQuota</link> </para></listitem> </varlistentry> Index: LDAPDoUIDLookups =================================================================== RCS file: /cvsroot/pdd/Userguide/directives/sgml/LDAPDoUIDLookups,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** LDAPDoUIDLookups 28 Jun 2005 17:56:11 -0000 1.14 --- LDAPDoUIDLookups 15 Oct 2010 18:20:38 -0000 1.15 *************** *** 59,63 **** <term><synopsis>Module</synopsis></term> <listitem><para> ! mod_ldap </para></listitem> </varlistentry> --- 59,64 ---- <term><synopsis>Module</synopsis></term> <listitem><para> ! mod_ldap <= v2.9.0, replaced by ! <link linkend="LDAPUsers">LDAPUsers</link> </para></listitem> </varlistentry> Index: LDAPNegativeCache =================================================================== RCS file: /cvsroot/pdd/Userguide/directives/sgml/LDAPNegativeCache,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** LDAPNegativeCache 18 Apr 2002 07:45:43 -0000 1.8 --- LDAPNegativeCache 15 Oct 2010 18:20:38 -0000 1.9 *************** *** 56,60 **** <term><synopsis>Compatibility</synopsis></term> <listitem><para> ! mod_ldap v1.1 and later </para></listitem> </varlistentry> --- 56,60 ---- <term><synopsis>Compatibility</synopsis></term> <listitem><para> ! mod_ldap v1.1 - 2.8.23 </para></listitem> </varlistentry> |