configurable password reset URL

This commit is contained in:
Carla Schroder
2016-02-29 21:25:15 -08:00
parent 6f83a78e96
commit 1506de7c05
3 changed files with 20 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ User Management
user_configuration
reset_admin_password
reset_user_password
user_auth_ftp_smb_imap
user_auth_ldap
user_auth_ldap_cleanup

View File

@@ -0,0 +1,14 @@
=========================
Resetting a User Password
=========================
The ownCloud login screen displays a **Wrong password. Reset it?** message
after a user enters an incorrect password, and then ownCloud automatically
resets their password. However, if you are using a read-only authentication
backend such as LDAP or Active Directory, this will not work. In this case you
may specify a custom URL in your ``config.php`` file to direct your user to a
server than can handle an automatic reset::
'lost_password_link' => 'https://example.org/link/to/password/reset',

View File

@@ -17,4 +17,8 @@ ownCloud has many improvements. Some of our new features are:
:ref:`password_policy_label`.
* New command to transfer files from one user to another.
See :ref:`transfer_userfiles_label`.
* Streamlined Federation sharing. See :ref:`label-direct-share-link`.
* Streamlined Federation sharing with user and group name auto-fill. See
:ref:`label-direct-share-link`.
* Configurable password reset URL. See
:doc:`configuration_user/reset_user_password`