]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapo-ppolicy.5
9703621993c9ac182ab552f3ba059aab3d51eeaf
[openldap] / doc / man / man5 / slapo-ppolicy.5
1 .TH SLAPO_PPOLICY 5 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 2004-2015 The OpenLDAP Foundation All Rights Reserved.
3 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
4 .\" $OpenLDAP$
5 .SH NAME
6 slapo\-ppolicy \- Password Policy overlay to slapd
7 .SH SYNOPSIS
8 ETCDIR/slapd.conf
9 .SH DESCRIPTION
10 .LP
11 The 
12 .B ppolicy
13 overlay
14 is an implementation of the most recent IETF Password
15 Policy proposal for LDAP.   When instantiated, it intercepts,
16 decodes and applies specific password policy controls to overall
17 use of a backend database, changes to user password fields, etc.
18 .P
19 The overlay provides a variety of password control mechanisms.  They
20 include password aging -- both minimum and maximum ages, password
21 reuse and duplication control, account time-outs, mandatory password
22 resets, acceptable password content, and even grace logins.
23 Different groups of users may be associated with different password
24 policies, and there is no limit to the number of password policies
25 that may be created.
26 .P
27 Note that some of the policies do not take effect when the operation
28 is performed with the
29 .B rootdn
30 identity; all the operations, when performed with any other identity,
31 may be subjected to constraints, like access control.
32 .P
33 Note that the IETF Password Policy proposal for LDAP makes sense
34 when considering a single-valued password attribute, while 
35 the userPassword attribute allows multiple values.  This implementation
36 enforces a single value for the userPassword attribute, despite
37 its specification.
38
39 .SH CONFIGURATION
40 These 
41 .B slapd.conf
42 configuration options apply to the ppolicy overlay. They should appear
43 after the
44 .B overlay
45 directive.
46 .TP
47 .B ppolicy_default <policyDN>
48 Specify the DN of the pwdPolicy object to use when no specific policy is
49 set on a given user's entry. If there is no specific policy for an entry
50 and no default is given, then no policies will be enforced.
51 .TP
52 .B ppolicy_forward_updates
53 Specify that policy state changes that result from Bind operations (such
54 as recording failures, lockout, etc.) on a consumer should be forwarded
55 to a master instead of being written directly into the consumer's local
56 database. This setting is only useful on a replication consumer, and
57 also requires the
58 .B updateref
59 setting and
60 .B chain
61 overlay to be appropriately configured.
62 .TP
63 .B ppolicy_hash_cleartext
64 Specify that cleartext passwords present in Add and Modify requests should
65 be hashed before being stored in the database. This violates the X.500/LDAP
66 information model, but may be needed to compensate for LDAP clients that
67 don't use the Password Modify extended operation to manage passwords.  It
68 is recommended that when this option is used that compare, search, and
69 read access be denied to all directory users. 
70 .TP
71 .B ppolicy_use_lockout
72 A client will always receive an LDAP
73 .B InvalidCredentials
74 response when
75 Binding to a locked account. By default, when a Password Policy control
76 was provided on the Bind request, a Password Policy response will be
77 included with no special error code set. This option changes the
78 Password Policy response to include the
79 .B AccountLocked
80 error code. Note
81 that sending the
82 .B AccountLocked
83 error code provides useful information
84 to an attacker; sites that are sensitive to security issues should not
85 enable this option.
86
87 .SH OBJECT CLASS
88 The 
89 .B ppolicy
90 overlay depends on the
91 .B pwdPolicy
92 object class.  The definition of that class is as follows:
93 .LP
94 .RS 4
95 (  1.3.6.1.4.1.42.2.27.8.2.1
96     NAME 'pwdPolicy'
97     AUXILIARY
98     SUP top
99     MUST ( pwdAttribute )
100     MAY (
101         pwdMinAge $ pwdMaxAge $ pwdInHistory $
102         pwdCheckQuality $ pwdMinLength $
103         pwdExpireWarning $ pwdGraceAuthnLimit $
104         pwdLockout $ pwdLockoutDuration $
105         pwdMaxFailure $ pwdFailureCountInterval $
106         pwdMustChange $ pwdAllowUserChange $
107         pwdSafeModify ) )
108 .RE
109
110 This implementation also provides an additional
111 .B pwdPolicyChecker
112 objectclass, used for password quality checking (see below).
113 .LP
114 .RS 4
115 (  1.3.6.1.4.1.4754.2.99.1
116     NAME 'pwdPolicyChecker'
117     AUXILIARY
118     SUP top
119     MAY ( pwdCheckModule ) )
120 .RE
121 .P
122 Every account that should be subject to password policy control should
123 have a
124 .B
125 pwdPolicySubentry
126 attribute containing the DN of a valid
127 .B pwdPolicy
128 entry, or they can simply use the configured default.
129 In this way different users may be managed according to
130 different policies.
131
132 .SH OBJECT CLASS ATTRIBUTES
133 .P
134 Each one of the sections below details the meaning and use of a particular
135 attribute of this
136 .B pwdPolicy
137 object class.
138 .P
139
140 .B pwdAttribute
141 .P
142 This attribute contains the name of the attribute to which the password
143 policy is applied. For example, the password policy may be applied
144 to the
145 .B userPassword
146 attribute.
147 .P
148 Note: in this implementation, the only
149 value accepted for
150 .B pwdAttribute
151 is
152 .IR " userPassword ".
153 .LP
154 .RS 4
155 (  1.3.6.1.4.1.42.2.27.8.1.1
156    NAME 'pwdAttribute'
157    EQUALITY objectIdentifierMatch
158    SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 )
159 .RE
160
161 .B pwdMinAge
162 .P
163 This attribute contains the number of seconds that must elapse
164 between modifications allowed to the password. If this attribute
165 is not present, zero seconds is assumed (i.e. the password may be
166 modified whenever and however often is desired).
167 .LP
168 .RS 4
169 (  1.3.6.1.4.1.42.2.27.8.1.2
170    NAME 'pwdMinAge'
171    EQUALITY integerMatch
172    SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
173    SINGLE\-VALUE )
174 .RE
175
176 .B pwdMaxAge
177 .P
178 This attribute contains the number of seconds after which a modified
179 password will expire.  If this attribute is not present, or if its
180 value is zero (0), then passwords will not expire.
181 .LP
182 .RS 4
183 (  1.3.6.1.4.1.42.2.27.8.1.3
184    NAME 'pwdMaxAge'
185    EQUALITY integerMatch
186    SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
187    SINGLE\-VALUE )
188 .RE
189
190 .B pwdInHistory
191 .P
192 This attribute is used to specify the maximum number of used
193 passwords that will be stored in the
194 .B pwdHistory
195 attribute.  If the
196 .B pwdInHistory
197 attribute is not present, or if its value is
198 zero (0), used passwords will not be stored in
199 .B pwdHistory
200 and thus any previously-used password may be reused.
201 No history checking occurs if the password is being modified by the
202 .BR rootdn ,
203 although the password is saved in the history.
204 .LP
205 .RS 4
206 (  1.3.6.1.4.1.42.2.27.8.1.4
207    NAME 'pwdInHistory'
208    EQUALITY integerMatch
209    SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
210    SINGLE\-VALUE )
211 .RE
212
213 .B pwdCheckQuality
214 .P
215 This attribute indicates if and how password syntax will be checked
216 while a password is being modified or added. If this attribute is
217 not present, or its value is zero (0), no syntax checking will be
218 done. If its value is one (1), the server will check the syntax,
219 and if the server is unable to check the syntax,
220 whether due to a client-side hashed password or some other reason,
221 it will be
222 accepted. If its value is two (2), the server will check the syntax,
223 and if the server is unable to check the syntax it will return an
224 error refusing the password.
225 .LP
226 .RS 4
227 (  1.3.6.1.4.1.42.2.27.8.1.5
228    NAME 'pwdCheckQuality'
229    EQUALITY integerMatch
230    SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
231    SINGLE\-VALUE )
232 .RE
233
234 .B pwdMinLength
235 .P
236 When syntax checking is enabled
237 (see also the
238 .B pwdCheckQuality
239 attribute), this attribute contains the minimum
240 number of characters that will be accepted in a password. If this
241 attribute is not present, minimum password length is not
242 enforced. If the server is unable to check the length of the password,
243 whether due to a client-side hashed password or some other reason,
244 the server will, depending on the
245 value of
246 .BR pwdCheckQuality ,
247 either accept the password
248 without checking it (if
249 .B pwdCheckQuality
250 is zero (0) or one (1)) or refuse it (if
251 .B pwdCheckQuality
252 is two (2)).
253 .LP
254 .RS 4
255 (  1.3.6.1.4.1.42.2.27.8.1.6
256    NAME 'pwdMinLength'
257    EQUALITY integerMatch
258    SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
259    SINGLE\-VALUE )
260 .RE
261
262 .B pwdExpireWarning
263 .P
264 This attribute contains the maximum number of seconds before a
265 password is due to expire that expiration warning messages will be
266 returned to a user who is authenticating to the directory.
267 If this attribute is not
268 present, or if the value is zero (0), no warnings will be sent.
269 .LP
270 .RS 4
271 (  1.3.6.1.4.1.42.2.27.8.1.7
272    NAME 'pwdExpireWarning'
273    EQUALITY integerMatch
274    SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
275    SINGLE\-VALUE )
276 .RE
277
278 .B pwdGraceAuthnLimit
279 .P
280 This attribute contains the number of times that an expired password
281 may be used to authenticate a user to the directory. If this
282 attribute is not present or if its value is zero (0), users with
283 expired passwords will not be allowed to authenticate to the
284 directory.
285 .LP
286 .RS 4
287 (  1.3.6.1.4.1.42.2.27.8.1.8
288    NAME 'pwdGraceAuthnLimit'
289    EQUALITY integerMatch
290    SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
291    SINGLE\-VALUE )
292 .RE
293
294 .B pwdLockout
295 .P
296 This attribute specifies the action that should be taken
297 by the directory when a user has made a number of failed attempts
298 to authenticate to the directory.  If
299 .B pwdLockout
300 is set (its value is "TRUE"), the user will not be allowed to
301 attempt to authenticate to the directory after there have been a
302 specified number of consecutive failed bind attempts.  The maximum
303 number of consecutive failed bind attempts allowed is specified by
304 the
305 .B pwdMaxFailure
306 attribute.  If
307 .B pwdLockout
308 is not present, or if its value is "FALSE", the password may be
309 used to authenticate no matter how many consecutive failed bind
310 attempts have been made.
311 .LP
312 .RS 4
313 (  1.3.6.1.4.1.42.2.27.8.1.9
314    NAME 'pwdLockout'
315    EQUALITY booleanMatch
316    SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
317    SINGLE\-VALUE )
318 .RE
319
320 .B pwdLockoutDuration
321 .P
322 This attribute contains the number of seconds during
323 which the password cannot be used to authenticate the
324 user to the directory due to too many consecutive failed
325 bind attempts.
326 (See also
327 .B pwdLockout
328 and
329 .BR pwdMaxFailure .)
330 If
331 .B pwdLockoutDuration
332 is not present, or if its value is zero (0), the password
333 cannot be used to authenticate the user to the directory
334 again until it is reset by an administrator.
335 .LP
336 .RS 4
337 (  1.3.6.1.4.1.42.2.27.8.1.10
338    NAME 'pwdLockoutDuration'
339    EQUALITY integerMatch
340    SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
341    SINGLE\-VALUE )
342 .RE
343
344 .B pwdMaxFailure
345 .P
346 This attribute contains the number of consecutive failed bind
347 attempts after which the password may not be used to authenticate
348 a user to the directory.
349 If
350 .B pwdMaxFailure
351 is not present, or its value is zero (0), then a user will
352 be allowed to continue to attempt to authenticate to
353 the directory, no matter how many consecutive failed 
354 bind attempts have occurred with that user's DN.
355 (See also
356 .B pwdLockout
357 and
358 .BR pwdLockoutDuration .)
359 .LP
360 .RS 4
361 (  1.3.6.1.4.1.42.2.27.8.1.11
362    NAME 'pwdMaxFailure'
363    EQUALITY integerMatch
364    SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
365    SINGLE\-VALUE )
366 .RE
367
368 .B pwdFailureCountInterval
369 .P
370 This attribute contains the number of seconds after which old
371 consecutive failed bind attempts are purged from the failure counter,
372 even though no successful authentication has occurred.
373 If
374 .B pwdFailureCountInterval
375 is not present, or its value is zero (0), the failure
376 counter will only be reset by a successful authentication.
377 .LP
378 .RS 4
379 (  1.3.6.1.4.1.42.2.27.8.1.12
380    NAME 'pwdFailureCountInterval'
381    EQUALITY integerMatch
382    SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
383    SINGLE\-VALUE )
384 .RE
385
386 .B pwdMustChange
387 .P
388 This attribute specifies whether users must change their passwords
389 when they first bind to the directory after a password is set or
390 reset by the administrator, or not.  If
391 .B pwdMustChange
392 has a value of "TRUE", users must change their passwords when they
393 first bind to the directory after a password is set or reset by
394 the administrator.  If
395 .B pwdMustChange
396 is not present, or its value is "FALSE",
397 users are not required to change their password upon binding after
398 the administrator sets or resets the password.
399 .LP
400 .RS 4
401 (  1.3.6.1.4.1.42.2.27.8.1.13
402   NAME 'pwdMustChange'
403   EQUALITY booleanMatch
404   SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
405   SINGLE\-VALUE )
406 .RE
407
408 .B pwdAllowUserChange
409 .P
410 This attribute specifies whether users are allowed to change their own
411 passwords or not.  If
412 .B pwdAllowUserChange
413 is set to "TRUE", or if the attribute is not present, users will be
414 allowed to change their own passwords.  If its value is "FALSE",
415 users will not be allowed to change their own passwords.
416 .LP
417 Note: this implies that when
418 .B pwdAllowUserChange
419 is set to "TRUE",
420 users will still be able to change the password of another user,
421 subjected to access control.
422 This restriction only applies to modifications of ones's own password.
423 It should also be noted that
424 .B pwdAllowUserChange
425 was defined in the specification to provide rough access control
426 to the password attribute in implementations that do not allow fine-grain
427 access control.
428 Since OpenLDAP provides fine-grain access control, the use of this attribute
429 is discouraged; ACLs should be used instead
430 (see
431 .BR slapd.access (5)
432 for details).
433 .LP
434 .RS 4
435 (  1.3.6.1.4.1.42.2.27.8.1.14
436    NAME 'pwdAllowUserChange'
437    EQUALITY booleanMatch
438    SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
439    SINGLE\-VALUE )
440 .RE
441
442 .B pwdSafeModify
443 .P
444 This attribute denotes whether the user's existing password must be sent
445 along with their new password when changing a password.  If
446 .B pwdSafeModify
447 is set to "TRUE", the existing password must be sent
448 along with the new password.  If the attribute is not present, or
449 its value is "FALSE", the existing password need not be sent
450 along with the new password.
451 .LP
452 .RS 4
453 (  1.3.6.1.4.1.42.2.27.8.1.15
454    NAME 'pwdSafeModify'
455    EQUALITY booleanMatch
456    SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
457    SINGLE\-VALUE )
458 .RE
459
460 .B pwdCheckModule
461 .P
462 This attribute names a user-defined loadable module that must
463 instantiate the check_password() function.  This function
464 will be called to further check a new password if
465 .B pwdCheckQuality
466 is set to one (1) or two (2),
467 after all of the built-in password compliance checks have
468 been passed.  This function will be called according to this
469 function prototype:
470 .RS 4
471 int
472 .I check_password
473 (char *pPasswd, char **ppErrStr, Entry *pEntry);
474 .RE
475 The
476 .B pPasswd
477 parameter contains the clear-text user password, the
478 .B ppErrStr
479 parameter contains a double pointer that allows the function
480 to return human-readable details about any error it encounters.
481 The optional
482 .B pEntry
483 parameter, if non-NULL, carries a pointer to the
484 entry whose password is being checked.
485 If
486 .B ppErrStr
487 is NULL, then 
488 .I funcName
489 must NOT attempt to use it/them.
490 A return value of LDAP_SUCCESS from the called
491 function indicates that the password is ok, any other value
492 indicates that the password is unacceptable.  If the password is
493 unacceptable, the server will return an error to the client, and
494 .B ppErrStr
495 may be used to return a human-readable textual explanation of the
496 error. The error string must be dynamically allocated as it will
497 be free()'d by slapd.
498 .LP
499 .RS 4
500 (  1.3.6.1.4.1.4754.1.99.1
501    NAME 'pwdCheckModule'
502    EQUALITY caseExactIA5Match
503    SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
504    SINGLE\-VALUE )
505 .RE
506 .P
507 Note: 
508 The user-defined loadable module named by
509 .B pwdCheckModule     
510 must be in
511 .B slapd's
512 standard executable search PATH.
513 .P
514 Note:
515 .B pwdCheckModule
516 is a non-standard extension to the LDAP password
517 policy proposal.
518
519 .SH OPERATIONAL ATTRIBUTES
520 .P
521 The operational attributes used by the
522 .B ppolicy
523 module are stored in the user's entry.  Most of these attributes
524 are not intended to be changed directly by users; they are there
525 to track user activity.  They have been detailed here so that
526 administrators and users can both understand the workings of
527 the
528 .B ppolicy
529 module.
530
531 .P
532 Note that the current IETF Password Policy proposal does not define
533 how these operational attributes are expected to behave in a
534 replication environment. In general, authentication attempts on
535 a slave server only affect the copy of the operational attributes
536 on that slave and will not affect any attributes for
537 a user's entry on the master server. Operational attribute changes
538 resulting from authentication attempts on a master server
539 will usually replicate to the slaves (and also overwrite
540 any changes that originated on the slave). 
541 These behaviors are not guaranteed and are subject to change
542 when a formal specification emerges.
543
544 .B userPassword
545 .P
546 The
547 .B userPassword
548 attribute is not strictly part of the
549 .B ppolicy
550 module.  It is, however, the attribute that is tracked and controlled
551 by the module.  Please refer to the standard OpenLDAP schema for
552 its definition.
553
554 .B pwdPolicySubentry
555 .P
556 This attribute refers directly to the
557 .B pwdPolicy
558 subentry that is to be used for this particular directory user.
559 If
560 .B pwdPolicySubentry
561 exists, it must contain the DN of a valid
562 .B pwdPolicy
563 object.  If it does not exist, the
564 .B ppolicy
565 module will enforce the default password policy rules on the
566 user associated with this authenticating DN. If there is no
567 default, or the referenced subentry does not exist, then no
568 policy rules will be enforced.
569 .LP
570 .RS 4
571 (  1.3.6.1.4.1.42.2.27.8.1.23
572    NAME 'pwdPolicySubentry'
573    DESC 'The pwdPolicy subentry in effect for
574        this object'
575    EQUALITY distinguishedNameMatch
576    SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
577    SINGLE\-VALUE
578    NO\-USER\-MODIFICATION
579    USAGE directoryOperation)
580 .RE
581
582 .B pwdChangedTime
583 .P
584 This attribute denotes the last time that the entry's password was
585 changed.  This value is used by the password expiration policy to
586 determine whether the password is too old to be allowed to be used
587 for user authentication.  If
588 .B pwdChangedTime
589 does not exist, the user's password will not expire.
590 .LP
591 .RS 4
592 (  1.3.6.1.4.1.42.2.27.8.1.16
593    NAME 'pwdChangedTime'
594    DESC 'The time the password was last changed'
595    SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
596    EQUALITY generalizedTimeMatch
597    ORDERING generalizedTimeOrderingMatch
598    SINGLE\-VALUE
599    NO\-USER\-MODIFICATION
600    USAGE directoryOperation)
601 .RE
602
603 .B pwdAccountLockedTime
604 .P
605 This attribute contains the time that the user's account was locked.
606 If the account has been locked, the password may no longer be used to
607 authenticate the user to the directory.  If
608 .B pwdAccountLockedTime   
609 is set to 000001010000Z, the user's account has been permanently locked
610 and may only be unlocked by an administrator. Note that account locking
611 only takes effect when the
612 .B pwdLockout
613 password policy attribute is set to "TRUE".
614 .LP
615 .RS 4
616 (  1.3.6.1.4.1.42.2.27.8.1.17
617    NAME 'pwdAccountLockedTime'
618    DESC 'The time an user account was locked'
619    SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
620    EQUALITY generalizedTimeMatch
621    ORDERING generalizedTimeOrderingMatch
622    SINGLE\-VALUE
623    NO\-USER\-MODIFICATION
624    USAGE directoryOperation)
625 .RE
626
627 .B pwdFailureTime
628 .P
629 This attribute contains the timestamps of each of the consecutive
630 authentication failures made upon attempted authentication to this
631 DN (i.e. account).  If too many timestamps accumulate here (refer to
632 the
633 .B pwdMaxFailure
634 password policy attribute for details),
635 and the
636 .B pwdLockout
637 password policy attribute is set to "TRUE", the
638 account may be locked.
639 (Please also refer to the
640 .B pwdLockout
641 password policy attribute.)
642 Excess timestamps beyond those allowed by
643 .B pwdMaxFailure
644 may also be purged.  If a successful authentication is made to this
645 DN (i.e. to this user account), then
646 .B pwdFailureTime   
647 will be cleansed of entries.
648 .LP
649 .RS 4
650 (  1.3.6.1.4.1.42.2.27.8.1.19
651    NAME 'pwdFailureTime'
652    DESC 'The timestamps of the last consecutive
653        authentication failures'
654    SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
655    EQUALITY generalizedTimeMatch
656    ORDERING generalizedTimeOrderingMatch
657    NO\-USER\-MODIFICATION
658    USAGE directoryOperation )
659 .RE
660
661 .B pwdHistory
662 .P
663 This attribute contains the history of previously used passwords
664 for this DN (i.e. for this user account).
665 The values of this attribute are stored in string format as follows:
666
667 .RS 4
668
669 pwdHistory=
670 .RS 4
671 time "#" syntaxOID "#" length "#" data
672 .RE
673
674 time=
675 .RS 4
676 GeneralizedTime as specified in section 3.3.13 of [RFC4517]
677 .RE
678
679 .P
680 syntaxOID = numericoid
681 .RS 4
682 This is the string representation of the dotted-decimal OID that
683 defines the syntax used to store the password.  numericoid is
684 described in section 1.4 of [RFC4512].
685 .RE
686
687 length = NumericString
688 .RS 4
689 The number of octets in the data.  NumericString is described in
690 section 3.3.23 of [RFC4517].
691 .RE
692
693 data =
694 .RS 4
695 Octets representing the password in the format specified by syntaxOID.
696 .RE
697
698 .RE
699
700 This format allows the server to store and transmit a history of
701 passwords that have been used.  In order for equality matching
702 on the values in this attribute to function properly, the time
703 field is in GMT format.
704 .LP
705 .RS 4
706 (  1.3.6.1.4.1.42.2.27.8.1.20
707    NAME 'pwdHistory'
708    DESC 'The history of user passwords'
709    SYNTAX 1.3.6.1.4.1.1466.115.121.1.40
710    EQUALITY octetStringMatch
711    NO\-USER\-MODIFICATION
712    USAGE directoryOperation)
713 .RE
714
715 .B pwdGraceUseTime
716 This attribute contains the list of timestamps of logins made after
717 the user password in the DN has expired.  These post-expiration
718 logins are known as "\fIgrace logins\fP".
719 If too many
720 .I grace logins
721 have been used (please refer to the
722 .B pwdGraceLoginLimit
723 password policy attribute), then the DN will no longer be allowed
724 to be used to authenticate the user to the directory until the
725 administrator changes the DN's
726 .B userPassword
727 attribute.
728 .LP
729 .RS 4
730 (  1.3.6.1.4.1.42.2.27.8.1.21
731    NAME 'pwdGraceUseTime'
732    DESC 'The timestamps of the grace login once the password has expired'
733    SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
734    EQUALITY generalizedTimeMatch
735    NO\-USER\-MODIFICATION
736    USAGE directoryOperation)
737 .RE
738
739 .B pwdReset
740 .P
741 This attribute indicates whether the user's password has been reset
742 by the administrator and thus must be changed upon first use of this
743 DN for authentication to the directory.  If
744 .B pwdReset   
745 is set to "TRUE", then the password was reset and the user must change
746 it upon first authentication.  If the attribute does not exist, or
747 is set to "FALSE", the user need not change their password due to
748 administrative reset.
749 .LP
750 .RS 4
751 (  1.3.6.1.4.1.42.2.27.8.1.22
752    NAME 'pwdReset'
753    DESC 'The indication that the password has
754        been reset'
755    EQUALITY booleanMatch
756    SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
757    SINGLE\-VALUE
758    USAGE directoryOperation)
759 .RE
760
761 .SH EXAMPLES
762 .LP
763 .RS
764 .nf
765 database mdb
766 suffix dc=example,dc=com
767 \|...
768 overlay ppolicy
769 ppolicy_default "cn=Standard,ou=Policies,dc=example,dc=com"
770 .fi
771 .RE
772
773 .SH SEE ALSO
774 .BR ldap (3),
775 .BR slapd.conf (5),
776 .BR slapd\-config (5),
777 .BR slapo\-chain (5).
778 .LP
779 "OpenLDAP Administrator's Guide" (http://www.OpenLDAP.org/doc/admin/)
780 .LP
781 IETF LDAP password policy proposal by P. Behera, L.  Poitou and J.
782 Sermersheim:  documented in IETF document
783 "draft-behera-ldap-password-policy-09.txt".
784
785 .SH BUGS
786 The LDAP Password Policy specification is not yet an approved standard,
787 and it is still evolving. This code will continue to be in flux until the
788 specification is finalized.
789
790 .SH ACKNOWLEDGEMENTS
791 .P
792 This module was written in 2004 by Howard Chu of Symas Corporation
793 with significant input from Neil Dunbar and Kartik Subbarao of Hewlett-Packard.
794 .P
795 This manual page borrows heavily and shamelessly from the specification
796 upon which the password policy module it describes is based.  This
797 source is the
798 IETF LDAP password policy proposal by P. Behera, L.
799 Poitou and J. Sermersheim.
800 The proposal is fully documented in
801 the
802 IETF document named draft-behera-ldap-password-policy-09.txt,
803 written in July of 2005.
804 .P
805 .so ../Project