Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add documentation about new sharing settings #11535

Merged
merged 1 commit into from
Feb 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions admin_manual/configuration_files/file_sharing_configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,38 @@ forcing them.

.. _transfer_userfiles_label:

Advanced settings
-------------------------------------------------------------------

Here are some edge case settings which are not editable from the web interface, because they are only useful to small subset of administrators.

You can use the ``occ`` command to update those, for example:

.. code-block:: bash

occ config:app:set core shareapi_restrict_user_enumeration_full_match_email --value yes

- ``core.shareapi_restrict_user_enumeration_full_match_ignore_second_display_name``
+ When full match is activated, ignore the appended second display name.
+ Default: ``no``
+ Examples:

+---------------+--------------+------------------------------+------------+
| Setting value | Search query | User name | Will match |
+===============+==============+==============================+============+
| ``yes`` | User 1 | User 1 (Second display name) | yes |
+---------------+--------------+------------------------------+------------+
| ``no`` | User 1 | User 1 (Second display name) | no |
+---------------+--------------+------------------------------+------------+

- ``core.shareapi_restrict_user_enumeration_full_match_userid``
+ When full match is activated, do not match user ID
+ Default: ``yes``

- ``core.shareapi_restrict_user_enumeration_full_match_email``
+ When full match is activated, do not match user email
+ Default: ``yes``

Distinguish between max expiration date and default expiration date
-------------------------------------------------------------------

Expand Down
Loading