-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into 168-add-hooks-for-other-actions-than-passw…
…ord-modification
- Loading branch information
Showing
19 changed files
with
429 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Update start and end validity dates | ||
=================================== | ||
|
||
Some LDAP directories provide attributes to define start and end account validify dates. | ||
|
||
For OpenLDAP since 2.5 version, attributes are ``pwdStartTime`` and ``pwdEndTime``. | ||
|
||
For Active Directory, only end time is available, in ``accountExpires`` attribute. | ||
|
||
Show validity status | ||
------------------- | ||
|
||
Service Desk will display if account is valid or not. To allow this feature: | ||
|
||
.. code-block:: php | ||
$show_validitystatus = true; | ||
Update start date | ||
----------------- | ||
|
||
This feature allows to edit the account start validity date. This requires to have the `starttime` field defined in the attributes map. | ||
|
||
To enable this feature: | ||
|
||
.. code-block:: php | ||
$use_updatestarttime = true; | ||
Update end date | ||
----------------- | ||
|
||
This feature allows to edit the account end validity date. This requires to have the `endtime` field defined in the attributes map. | ||
|
||
To enable this feature: | ||
|
||
.. code-block:: php | ||
$use_updateendtime = true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.