source: companies/celepar/phpgwapi/doc/ldap/README @ 763

Revision 763, 3.8 KB checked in by niltonneto, 15 years ago (diff)

Importação inicial do Expresso da Celepar

Line 
1/* $Id: README,v 1.16 2004/03/07 23:27:02 milosch Exp $ */
2
3# (C) 2001-2004 Miles Lott <milos@groupwhere.org>
4# Redistribution and use in original text and binary forms, with or
5# without modification, are permitted provided that the following
6# conditions are met:
7#
8# 1. Redistributions of this schema and/or documentation must retain
9#    the above copyright notice, this list of conditions and the
10#    following disclaimer.
11# 2. Redistributions in binary form must reproduce the above copyright notice,
12#    this list of conditions and the following disclaimer in the documentation
13#    and/or other materials provided with the distribution.
14# 3. The name of the author may not be used to endorse or promote products
15#    derived from this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
21# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
25# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
26# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27# POSSIBILITY OF SUCH DAMAGE.
28
29This directory contains schema files for use the with various
30LDAP servers to which we have access.  Openldap 1.X is very
31forgiving, and it is not required to load this schema in all
32cases.  Openldap 2.X is less forgiving and requires schema
33definitions for all objectclasses and attributes.
34
35
36Openldap 1.X:
37
38The following are for use with openldap 1.X:
39        phpgw.oc.conf   defines the phpgwAccount objectclass
40        phpgw.at.conf   defines our special attributes
41
42They should be copied to /etc/openldap and added to
43/etc/openldap/slapd.conf AFTER other similar include lines:
44
45include         /etc/openldap/phpgw.oc.conf
46include         /etc/openldap/phpgw.at.conf
47include         /etc/openldap/phpgwcontact.oc.conf
48include         /etc/openldap/phpgwcontact.at.conf
49
50
51Openldap 2.X:
52
53The following are for use with openldap 2.X:
54        phpgwaccount.schema             defines the phpgwAccount objectclass and our attributes
55        phpgwcontact.schema             defines the phpgwContact objectclass and our attributes
56
57These should be copied to /etc/openldap/schema and added to
58/etc/openldap/slapd.conf AFTER other similar include lines.  These files
59rely on core.schema and cosine.schema at least:
60
61include         /etc/openldap/schema/phpgwaccount.schema
62include         /etc/openldap/schema/phpgwcontact.schema
63
64You may need to adjust your indexes to the following:
65
66index default eq
67index objectClass eq
68index phpgwContactOwner pres,eq,sub
69index uidNumber pres,eq
70
71The Private Enterprise Code/OID for phpgroupware is 1.3.6.1.4.1.9554,
72registered via IANA and assigned on May 16 2001.  This is registered
73under the name Clear River Technologies, LLC.
74
75
76Netscape/iPlanet:
77
78The following are for use with Netscape/iPlanet Directory Server:
79        iplanet/phpgw.at.conf   defines our special attributes for accounts
80        iplanet/phpgw.oc.conf   defines the phpgwAccount objectclass
81        iplanet/phpgwcontact.at.conf    defines our special attributes for contacts
82        iplanet/phpgwcontact.oc.conf    defines the phpgwContact objectclass
83
84They should be copied to /usr/netscape/server4/slapd-HOST/config and added to
85/usr/netscape/server4/slapd-HOST/config/slapd.conf AFTER other similar
86include lines:
87
88include         /etc/openldap/phpgw.oc.conf
89include         /etc/openldap/phpgw.at.conf
90include         /etc/openldap/phpgwcontact.oc.conf
91include         /etc/openldap/phpgwcontact.at.conf
92
93
94Novell eDirectory:
95
96The following are for use with Novell eDirectory (EXPERIMENTAL):
97        phpgwaccount.nds.schema
98        phpgwcontact.nds.schema
99
Note: See TracBrowser for help on using the repository browser.