]> git.sur5r.net Git - openldap/blob - contrib/slapd-modules/allop/slapo-allop.5
Happy New Year
[openldap] / contrib / slapd-modules / allop / slapo-allop.5
1 .TH SLAPO-ALLOP 5 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 2005-2018 The OpenLDAP Foundation All Rights Reserved.
3 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
4 .\" $OpenLDAP$
5 .SH NAME
6 slapo-allop \- All Operational Attributes overlay
7 .SH SYNOPSIS
8 ETCDIR/slapd.conf
9 .SH DESCRIPTION
10 The All Operational Attributes overlay is designed to allow slapd to
11 interoperate with dumb clients that expect all attributes, including
12 operational ones, to be returned when "*" or an empty attribute list
13 is requested, as opposed to RFC2251 and RFC3673.
14 .SH CONFIGURATION
15 These
16 .B slapd.conf
17 options apply to the All Operational overlay.
18 They should appear after the
19 .B overlay
20 directive and before any subsequent
21 .B database
22 directive.
23 .TP
24 .B allop-URI <ldapURI>
25 Specify the base and the scope of search operations that trigger the overlay.
26 By default, it is "ldap:///??base", i.e. it only applies to the rootDSE.
27 This requires the overlay to be instantiated as global.
28
29 .SH EXAMPLES
30 .LP
31 default behavior: only affects requests to the rootDSE
32 .nf
33         # global
34         overlay         allop
35 .fi
36 .LP
37 affects all requests
38 .nf
39         # global
40         overlay         allop
41         allop-URI       "ldap:///??sub"
42 .fi
43 .LP
44 affects only requests directed to the suffix of a database
45 .nf
46         # per database
47         database        mdb
48         suffix          "dc=example,dc=com"
49         # database specific directives ...
50         overlay         allop
51         allop-URI       "ldap:///dc=example,dc=com??base"
52 .fi
53
54 .SH FILES
55 .TP
56 ETCDIR/slapd.conf
57 default slapd configuration file
58 .SH SEE ALSO
59 .BR slapd.conf (5).
60
61 .SH ACKNOWLEDGEMENTS
62 .P
63 This module was written in 2005 by Pierangelo Masarati for SysNet s.n.c.