annotate man/lispref/ldap.texi @ 406:b8cc9ab3f761 r21-2-33

Import from CVS: tag r21-2-33
author cvs
date Mon, 13 Aug 2007 11:17:09 +0200
parents 2f8bb876ab1d
children 697ef44129c6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
1 @c -*-texinfo-*-
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
2 @c This is part of the XEmacs Lisp Reference Manual.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
3 @c Copyright (C) 1998 Free Software Foundation, Inc.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
4 @c See the file lispref.texi for copying conditions.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
5 @setfilename ../../info/ldap.info
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 398
diff changeset
6 @node LDAP Support, PostgreSQL Support, ToolTalk Support, top
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
7 @chapter LDAP Support
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
8 @cindex LDAP
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
9
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
10 XEmacs can be linked with a LDAP client library to provide Elisp primitives
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
11 to access directory servers using the Lightweight Directory Access Protocol.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
12
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
13 @menu
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
14 * Building XEmacs with LDAP support:: How to add LDAP support to XEmacs
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
15 * XEmacs LDAP API:: Lisp access to LDAP functions
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
16 * Syntax of Search Filters:: A brief summary of RFC 1558
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
17 @end menu
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
18
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
19 @node Building XEmacs with LDAP support, XEmacs LDAP API, LDAP Support, LDAP Support
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
20 @comment node-name, next, previous, up
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
21 @section Building XEmacs with LDAP support
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
22
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
23 LDAP support must be added to XEmacs at build time since it requires
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 298
diff changeset
24 linking to an external LDAP client library. As of 21.2, XEmacs has been
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
25 successfully built and tested with
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
26
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
27 @itemize @bullet
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
28 @item OpenLDAP 1.2 (@url{http://www.openldap.org/})
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
29 @item University of Michigan's LDAP 3.3 (@url{http://www.umich.edu/~dirsvcs/ldap/})
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
30 @item LDAP SDK 1.0 from Netscape Corp. (@url{http://developer.netscape.com/})
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
31 @end itemize
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
32
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
33 Other libraries conforming to RFC 1823 will probably work also but may
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
34 require some minor tweaking at C level.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
35
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
36 The standard XEmacs configure script auto-detects an installed LDAP
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
37 library provided the library itself and the corresponding header files
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
38 can be found in the library and include paths. A successful detection
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
39 will be signalled in the final output of the configure script.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
40
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
41
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
42
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
43 @node XEmacs LDAP API, Syntax of Search Filters, Building XEmacs with LDAP support, LDAP Support
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
44 @comment node-name, next, previous, up
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
45 @section XEmacs LDAP API
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
46
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
47 XEmacs LDAP API consists of two layers: a low-level layer which tries
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
48 to stay as close as possible to the C API (where practical) and a
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
49 higher-level layer which provides more convenient primitives to
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
50 effectively use LDAP.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
51
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
52 The low-level API should be used directly for very specific purposes
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
53 (such as multiple operations on a connection) only. The higher-level
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
54 functions provide a more convenient way to access LDAP directories
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
55 hiding the subtleties of handling the connection, translating arguments
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
56 and ensuring compliance with LDAP internationalization rules and formats
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
57 (currently partly implemented only).
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
58
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
59 @menu
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
60 * LDAP Variables:: Lisp variables related to LDAP
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
61 * The High-Level LDAP API:: High-level LDAP lisp functions
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
62 * The Low-Level LDAP API:: Low-level LDAP lisp primitives
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
63 * LDAP Internationalization:: I18n variables and functions
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
64 @end menu
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
65
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
66
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
67 @node LDAP Variables, The High-Level LDAP API, XEmacs LDAP API, XEmacs LDAP API
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
68 @comment node-name, next, previous, up
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
69 @subsection LDAP Variables
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
70
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
71 @defvar ldap-default-host
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 298
diff changeset
72 The default LDAP server hostname.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 298
diff changeset
73 A TCP port number can be appended to that name using a colon as
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 298
diff changeset
74 a separator.
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
75 @end defvar
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
76
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
77 @defvar ldap-default-port
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
78 Default TCP port for LDAP connections.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
79 Initialized from the LDAP library. Default value is 389.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
80 @end defvar
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
81
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
82 @defvar ldap-default-base
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
83 Default base for LDAP searches.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
84 This is a string using the syntax of RFC 1779.
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
85 For instance, "o=ACME, c=US" limits the search to the
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
86 Acme organization in the United States.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
87 @end defvar
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
88
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
89 @defvar ldap-host-parameters-alist
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
90 An alist of per host options for LDAP transactions.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
91 The list elements look like @code{(HOST PROP1 VAL1 PROP2 VAL2 ...)}
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 298
diff changeset
92 @var{host} is the name of an LDAP server. A TCP port number can be
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 298
diff changeset
93 appended to that name using a colon as a separator.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 298
diff changeset
94 @var{propn} and @var{valn} are
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
95 property/value pairs describing parameters for the server. Valid
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
96 properties:
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
97 @table @code
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
98 @item binddn
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
99 The distinguished name of the user to bind as. This may look like
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
100 @samp{cn=Babs Jensen,o=ACME,c=US}, see RFC 1779 for details.
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
101 @item passwd
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
102 The password to use for authentication.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
103 @item auth
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
104 The authentication method to use, possible values depend on the LDAP
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
105 library XEmacs was compiled with, they may include @code{simple},
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
106 @code{krbv41} and @code{krbv42}.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
107 @item base
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
108 The base for the search. This may look like @samp{cÿ, o¬me}, see
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
109 RFC 1779 for syntax details.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
110 @item scope
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
111 One of the symbols @code{base}, @code{onelevel} or @code{subtree}
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
112 indicating the scope of the search limited to a base
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
113 object, to a single level or to the whole subtree.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
114 @item deref
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
115 The dereference policy is one of the symbols @code{never},
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
116 @code{always}, @code{search} or @code{find} and defines how aliases are
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
117 dereferenced.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
118 @table @code
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
119 @item never
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
120 Aliases are never dereferenced
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
121 @item always
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
122 Aliases are always dereferenced
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
123 @item search
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
124 Aliases are dereferenced when searching
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
125 @item find
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
126 Aliases are dereferenced when locating the base object for the search
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
127 @end table
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
128 @item timelimit
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
129 The timeout limit for the connection in seconds.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
130 @item sizelimit
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
131 The maximum number of matches to return for searches performed on this connection.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
132 @end table
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
133 @end defvar
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
134
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
135 @defvar ldap-verbose
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
136 If non-@code{nil}, LDAP operations will echo progress messages. Defaults to @code{nil}.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
137 @end defvar
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
138
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
139
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
140 @node The High-Level LDAP API, The Low-Level LDAP API, LDAP Variables, XEmacs LDAP API
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
141 @comment node-name, next, previous, up
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
142 @subsection The High-Level LDAP API
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
143
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
144 The following functions provide the most convenient interface to perform
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
145 LDAP operations. All of them open a connection to a host, perform an
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
146 operation (add/search/modify/delete) on one or several entries and
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
147 cleanly close the connection thus insulating the user from all the
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
148 details of the low-level interface such as LDAP Lisp objects @pxref{The
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
149 Low-Level LDAP API}.
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
150
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
151 Note that @code{ldap-search} which used to be the name of the high-level
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
152 search function in XEmacs 21.1 is now obsolete. For consistency in the
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
153 naming as well as backward compatibility, that function now acts as a
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
154 wrapper that calls either @code{ldap-search-basic} (low-level search
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
155 function) or @code{ldap-search-entries} (high-level search function)
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
156 according to the actual parameters. A direct call to one of these two
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
157 functions is preferred since it is faster and unambiguous.
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
158
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
159 @defun ldap-search-entries filter &optional host attributes attrsonly withdn
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
160 Perform an LDAP search.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
161 @var{filter} is the search filter @pxref{Syntax of Search Filters}
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
162 @var{host} is the LDAP host on which to perform the search.
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
163 @var{attributes} is the specific attributes to retrieve, @code{nil} means
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
164 retrieve all.
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
165 @var{attrsonly} if non-@code{nil} retrieves the attributes only without
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
166 their associated values.
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
167 If @var{withdn} is non-@code{nil} each entry in the result will be prepended with
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
168 its distinguished name DN.
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
169 Additional search parameters can be specified through
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
170 @code{ldap-host-parameters-alist}.
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
171 The function returns a list of matching entries. Each entry is itself
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
172 an alist of attribute/value pairs optionally preceded by the DN of the
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
173 entry according to the value of @var{withdn}.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
174 @end defun
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
175
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
176 @defun ldap-add-entries entries &optional host binddn passwd
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
177 Add entries to an LDAP directory. @var{entries} is a list of entry
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
178 specifications of the form @code{(DN (ATTR . VALUE) (ATTR . VALUE) ...)}
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
179 where @var{dn} the distinguished name of an entry to add, the following
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
180 are cons cells containing attribute/value string pairs. @var{host} is
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
181 the LDAP host, defaulting to `ldap-default-host' @var{binddn} is the DN
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
182 to bind as to the server @var{passwd} is the corresponding password.
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
183 @end defun
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
184
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
185 @defun ldap-modify-entries entry-mods &optional host binddn passwd
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
186 Modify entries of an LDAP directory.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
187 @var{entry_mods} is a list of entry modifications of the form
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
188 @code{(DN MOD-SPEC1 MOD-SPEC2 ...)} where @var{dn} is the distinguished name of
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
189 the entry to modify, the following are modification specifications.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
190 A modification specification is itself a list of the form
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
191 @code{(MOD-OP ATTR VALUE1 VALUE2 ...)} @var{mod-op} and @var{attr} are mandatory,
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
192 @var{values} are optional depending on @var{mod-op}.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
193 @var{mod-op} is the type of modification, one of the symbols @code{add}, @code{delete}
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
194 or @code{replace}. @var{attr} is the LDAP attribute type to modify.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
195 @var{host} is the LDAP host, defaulting to @code{ldap-default-host}
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
196 @var{binddn} is the DN to bind as to the server
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
197 @var{passwd} is the corresponding password"
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
198 @end defun
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
199
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
200 @defun ldap-delete-entries dn &optional host binddn passwd
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
201 Delete an entry from an LDAP directory.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
202 @var{dn} is the distinguished name of an entry to delete or
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
203 a list of those.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
204 @var{host} is the LDAP host, defaulting to @code{ldap-default-host}
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
205 @var{binddn} is the DN to bind as to the server
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
206 @var{passwd} is the corresponding password.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
207 @end defun
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
208
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
209
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
210 @node The Low-Level LDAP API, LDAP Internationalization, The High-Level LDAP API, XEmacs LDAP API
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
211 @comment node-name, next, previous, up
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
212 @subsection The Low-Level LDAP API
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
213
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
214 The low-level API should be used directly for very specific purposes
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
215 (such as multiple operations on a connection) only. The higher-level
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
216 functions provide a more convenient way to access LDAP directories
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
217 hiding the subtleties of handling the connection, translating arguments
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
218 and ensuring compliance with LDAP internationalization rules and formats
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
219 (currently partly implemented only). See @pxref{The High-Level LDAP API}
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
220
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
221 Note that the former functions @code{ldap-*-internal} functions have been
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
222 renamed in XEmacs 21.2
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
223
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
224 @menu
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
225 * The LDAP Lisp Object::
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
226 * Opening and Closing a LDAP Connection::
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
227 * Low-level Operations on a LDAP Server::
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
228 @end menu
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
229
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
230 @node The LDAP Lisp Object, Opening and Closing a LDAP Connection, The Low-Level LDAP API, The Low-Level LDAP API
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
231 @comment node-name, next, previous, up
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
232 @subsubsection The LDAP Lisp Object
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
233
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
234 An internal built-in @code{ldap} lisp object represents a LDAP
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
235 connection.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
236
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
237 @defun ldapp object
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
238 This function returns non-@code{nil} if @var{object} is a @code{ldap} object.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
239 @end defun
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
240
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
241 @defun ldap-host ldap
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
242 Return the server host of the connection represented by @var{ldap}
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
243 @end defun
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
244
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
245 @defun ldap-live-p ldap
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
246 Return non-@code{nil} if @var{ldap} is an active LDAP connection
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
247 @end defun
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
248
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
249
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
250 @node Opening and Closing a LDAP Connection, Low-level Operations on a LDAP Server, The LDAP Lisp Object, The Low-Level LDAP API
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
251 @comment node-name, next, previous, up
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
252 @subsubsection Opening and Closing a LDAP Connection
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
253
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
254 @defun ldap-open host &optional plist
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
255 Open a LDAP connection to @var{host}.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
256 @var{plist} is a property list containing additional parameters for the connection.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
257 Valid keys in that list are:
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
258 @table @code
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
259 @item port
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
260 The TCP port to use for the connection if different from
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
261 @code{ldap-default-port} or the library builtin value
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
262 @item auth
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
263 The authentication method to use, possible values depend on the LDAP
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
264 library XEmacs was compiled with, they may include @code{simple},
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
265 @code{krbv41} and @code{krbv42}.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
266 @item binddn
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
267 The distinguished name of the user to bind as. This may look like
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
268 @samp{c=com, o=Acme, cn=Babs Jensen}, see RFC 1779 for details.
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
269 @item passwd
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
270 The password to use for authentication.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
271 @item deref
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
272 The dereference policy is one of the symbols @code{never},
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
273 @code{always}, @code{search} or @code{find} and defines how aliases are
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
274 dereferenced.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
275 @table @code
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
276 @item never
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
277 Aliases are never dereferenced
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
278 @item always
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
279 Aliases are always dereferenced
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
280 @item search
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
281 Aliases are dereferenced when searching
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
282 @item find
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
283 Aliases are dereferenced when locating the base object for the search
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
284 @end table
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
285 The default is @code{never}.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
286 @item timelimit
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
287 The timeout limit for the connection in seconds.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
288 @item sizelimit
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
289 The maximum number of matches to return for searches performed on this connection.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
290 @end table
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
291 @end defun
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
292
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
293 @defun ldap-close ldap
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
294 Close the connection represented by @var{ldap}
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
295 @end defun
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
296
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
297
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
298 @node Low-level Operations on a LDAP Server, , Opening and Closing a LDAP Connection, The Low-Level LDAP API
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
299 @comment node-name, next, previous, up
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
300 @subsubsection Low-level Operations on a LDAP Server
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
301
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
302 @code{ldap-search-basic} is the low-level primitive to perform a
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
303 search on a LDAP server. It works directly on an open LDAP connection
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
304 thus requiring a preliminary call to @code{ldap-open}. Multiple
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
305 searches can be made on the same connection, then the session must be
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
306 closed with @code{ldap-close}.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
307
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
308 @defun ldap-search-basic ldap filter base scope attrs attrsonly
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
309 Perform a search on an open connection @var{ldap} created with @code{ldap-open}.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
310 @var{filter} is a filter string for the search @pxref{Syntax of Search Filters}
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
311 @var{base} is the distinguished name at which to start the search.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
312 @var{scope} is one of the symbols @code{base}, @code{onelevel} or
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
313 @code{subtree} indicating the scope of the search limited to a base
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
314 object, to a single level or to the whole subtree. The default is
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
315 @code{subtree}.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
316 @code{attrs} is a list of strings indicating which attributes to retrieve
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
317 for each matching entry. If @code{nil} all available attributes are returned.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
318 If @code{attrsonly} is non-@code{nil} then only the attributes are retrieved, not
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
319 their associated values
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
320 If @code{withdn} is non-@code{nil} then each entry in the result is prepended with
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
321 its distinguished name DN
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
322 If @code{verbose} is non-@code{nil} then progress messages are echoed
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
323 The function returns a list of matching entries. Each entry is itself
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
324 an alist of attribute/value pairs optionally preceded by the DN of the
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
325 entry according to the value of @code{withdn}.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
326 @end defun
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
327
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
328 @defun ldap-add ldap dn entry
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
329 Add @var{entry} to a LDAP directory which a connection @var{ldap} has
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
330 been opened to with @code{ldap-open}.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
331 @var{dn} is the distinguished name of the entry to add.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
332 @var{entry} is an entry specification, i.e., a list of cons cells
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
333 containing attribute/value string pairs.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
334 @end defun
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
335
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
336 @defun ldap-modify ldap dn mods
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
337 Modify an entry in an LDAP directory.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
338 @var{ldap} is an LDAP connection object created with @code{ldap-open}.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
339 @var{dn} is the distinguished name of the entry to modify.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
340 @var{mods} is a list of modifications to apply.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
341 A modification is a list of the form @code{(MOD-OP ATTR VALUE1 VALUE2 ...)}
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
342 @var{mod-op} and @var{attr} are mandatory, @var{values} are optional depending on @var{mod-op}.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
343 @var{mod-op} is the type of modification, one of the symbols @code{add}, @code{delete}
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
344 or @code{replace}. @var{attr} is the LDAP attribute type to modify
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
345 @end defun
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
346
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
347 @defun ldap-delete ldap dn
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
348 Delete an entry to an LDAP directory.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
349 @var{ldap} is an LDAP connection object created with @code{ldap-open}.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
350 @var{dn} is the distinguished name of the entry to delete
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
351 @end defun
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
352
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
353
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
354
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
355 @node LDAP Internationalization, , The Low-Level LDAP API, XEmacs LDAP API
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
356 @comment node-name, next, previous, up
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
357 @subsection LDAP Internationalization
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
358
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
359 The XEmacs LDAP API provides basic internationalization features based
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
360 on the LDAP v3 specification (essentially RFC2252 on "LDAP v3 Attribute
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
361 Syntax Definitions"). Unfortunately since there is currently no free
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
362 LDAP v3 server software, this part has not received much testing and
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
363 should be considered experimental. The framework is in place though.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
364
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
365 @defun ldap-decode-attribute attr
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
366 Decode the attribute/value pair @var{attr} according to LDAP rules.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
367 The attribute name is looked up in @code{ldap-attribute-syntaxes-alist}
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
368 and the corresponding decoder is then retrieved from
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
369 @code{ldap-attribute-syntax-decoders}' and applied on the value(s).
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
370 @end defun
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
371
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
372 @menu
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
373 * LDAP Internationalization Variables::
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
374 * Encoder/Decoder Functions::
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
375 @end menu
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
376
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
377 @node LDAP Internationalization Variables, Encoder/Decoder Functions, LDAP Internationalization, LDAP Internationalization
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
378 @comment node-name, next, previous, up
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
379 @subsubsection LDAP Internationalization Variables
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
380
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
381 @defvar ldap-ignore-attribute-codings
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
382 If non-@code{nil}, no encoding/decoding will be performed LDAP attribute values
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
383 @end defvar
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
384
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
385 @defvar ldap-coding-system
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
386 Coding system of LDAP string values.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
387 LDAP v3 specifies the coding system of strings to be UTF-8.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
388 You need an XEmacs with Mule support for this.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
389 @end defvar
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
390
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
391 @defvar ldap-default-attribute-decoder
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
392 Decoder function to use for attributes whose syntax is unknown. Such a
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
393 function receives an encoded attribute value as a string and should
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
394 return the decoded value as a string
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
395 @end defvar
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
396
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
397 @defvar ldap-attribute-syntax-encoders
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
398 A vector of functions used to encode LDAP attribute values.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
399 The sequence of functions corresponds to the sequence of LDAP attribute syntax
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
400 object identifiers of the form 1.3.6.1.4.1.1466.1115.121.1.* as defined in
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
401 RFC2252 section 4.3.2. As of this writing, only a few encoder functions
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
402 are available.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
403 @end defvar
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
404
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
405 @defvar ldap-attribute-syntax-decoders
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
406 A vector of functions used to decode LDAP attribute values.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
407 The sequence of functions corresponds to the sequence of LDAP attribute syntax
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
408 object identifiers of the form 1.3.6.1.4.1.1466.1115.121.1.* as defined in
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
409 RFC2252 section 4.3.2. As of this writing, only a few decoder functions
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
410 are available.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
411 @end defvar
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
412
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
413 @defvar ldap-attribute-syntaxes-alist
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
414 A map of LDAP attribute names to their type object id minor number.
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
415 This table is built from RFC2252 Section 5 and RFC2256 Section 5
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
416 @end defvar
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
417
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
418 @node Encoder/Decoder Functions, , LDAP Internationalization Variables, LDAP Internationalization
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
419 @comment node-name, next, previous, up
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
420 @subsubsection Encoder/Decoder Functions
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
421
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
422 @defun ldap-encode-boolean bool
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
423 A function that encodes an elisp boolean @var{bool} into a LDAP
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
424 boolean string representation
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
425 @end defun
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
426
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
427 @defun ldap-decode-boolean str
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
428 A function that decodes a LDAP boolean string representation
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
429 @var{str} into an elisp boolean
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
430 @end defun
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
431
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
432 @defun ldap-decode-string str
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
433 Decode a string @var{str} according to `ldap-coding-system'
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
434 @end defun
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
435
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
436 @defun ldap-encode-string str
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
437 Encode a string @var{str} according to `ldap-coding-system'
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
438 @end defun
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
439
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
440 @defun ldap-decode-address str
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
441 Decode an address @var{str} according to `ldap-coding-system' and
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
442 replacing $ signs with newlines as specified by LDAP encoding rules for
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
443 addresses
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
444 @end defun
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
445
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
446 @defun ldap-encode-address str
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
447 Encode an address @var{str} according to `ldap-coding-system' and
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
448 replacing newlines with $ signs as specified by LDAP encoding rules for
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
449 addresses
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
450 @end defun
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
451
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
452
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
453
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
454 @node Syntax of Search Filters, , XEmacs LDAP API, LDAP Support
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
455 @comment node-name, next, previous, up
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
456 @section Syntax of Search Filters
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
457
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
458 LDAP search functions use RFC1558 syntax to describe the search filter.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
459 In that syntax simple filters have the form:
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
460
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
461 @example
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
462 (<attr> <filtertype> <value>)
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
463 @end example
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
464
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
465 @code{<attr>} is an attribute name such as @code{cn} for Common Name,
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
466 @code{o} for Organization, etc...
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
467
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
468 @code{<value>} is the corresponding value. This is generally an exact
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
469 string but may also contain @code{*} characters as wildcards
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
470
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
471 @code{filtertype} is one @code{=} @code{~=}, @code{<=}, @code{>=} which
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
472 respectively describe equality, approximate equality, inferiority and
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
473 superiority.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
474
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
475 Thus @code{(cn=John Smith)} matches all records having a canonical name
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
476 equal to John Smith.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
477
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
478 A special case is the presence filter @code{(<attr>=*} which matches
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
479 records containing a particular attribute. For instance @code{(mail=*)}
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
480 matches all records containing a @code{mail} attribute.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
481
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
482 Simple filters can be connected together with the logical operators
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
483 @code{&}, @code{|} and @code{!} which stand for the usual and, or and
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
484 not operators.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
485
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
486 @code{(&(objectClass=Person)(mail=*)(|(sn=Smith)(givenname=John)))}
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
487 matches records of class @code{Person} containing a @code{mail}
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
488 attribute and corresponding to people whose last name is @code{Smith} or
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents:
diff changeset
489 whose first name is @code{John}.