diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-12-07 15:37:26 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-12-07 15:41:40 +0100 |
commit | 87bc02c6cd482a28aa175d269d48a849ca9eb399 (patch) | |
tree | f8e6d45d2f773f3c73a0393b921677178c56b5d2 /config | |
parent | f8f3c9ecf9da1f14722f6d3266a0e80ea157f98f (diff) | |
download | nextcloud-server-87bc02c6cd482a28aa175d269d48a849ca9eb399.tar.gz nextcloud-server-87bc02c6cd482a28aa175d269d48a849ca9eb399.zip |
Allow specifying a custom reset-password-url
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 034a1ebddbf..c3abe3a2b87 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -214,6 +214,14 @@ $CONFIG = array( ), /** + * If your user backend does not allow to reset the password (e.g. when it's a + * read-only user backend like LDAP), you can specify a custom link, where the + * user is redirected to, when clicking the "reset password" link after a failed + * login-attempt. + */ +'lost_password_link' => 'https://example.org/link/to/password/reset', + +/** * Mail Parameters * * These configure the email settings for ownCloud notifications and password |