From b6e695ab255e2ecaa24256fa59ebaee67f997e3b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 9 Jul 2022 04:18:36 +0000 Subject: [PATCH] generate documentation from config.sample.php --- .../config_sample_php_parameters.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/admin_manual/configuration_server/config_sample_php_parameters.rst b/admin_manual/configuration_server/config_sample_php_parameters.rst index 01336eef9..77a94f1b3 100644 --- a/admin_manual/configuration_server/config_sample_php_parameters.rst +++ b/admin_manual/configuration_server/config_sample_php_parameters.rst @@ -393,6 +393,22 @@ Defaults to ``true`` By default WebAuthn is available but it can be explicitly disabled by admins +:: + + 'auth.storeCryptedPassword' => true, + +Whether encrypted password should be stored in the database + +The passwords are only decrypted using the login token stored uniquely in the +clients and allow to connect to external storages, autoconfigure mail account in +the mail app and periodically check if the password it still valid. + +This might be desirable to disable this functionality when using one time +passwords or when having a password policy enforcing long passwords (> 300 +characters). + +By default the passwords are stored encrypted in the database. + :: 'hide_login_form' => false,