From a24359cfce99a207f8862371270fa00abb4f9802 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 4 Aug 2022 03:56:27 +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 adc8b80b2..4240b3abe 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,