From 7ee7f6bbc83ea288a69268884989a4814f4b48f4 Mon Sep 17 00:00:00 2001 From: akhil Date: Fri, 12 Nov 2021 18:25:30 +0530 Subject: [PATCH 1/2] Added occ setting for privacy --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 1b89c0e..86774f6 100644 --- a/README.md +++ b/README.md @@ -176,6 +176,13 @@ Your credentials for postfix admin (https://mail.yourdomain.com) are: user/pass - Users cannot find each other on search unless they use the full email address - User statuses are not available globally for other users to view - Global contacts menu for searching contacts is disabled +- To disable group sharing and username autocompletion in the share dialog, please run the following commands on your server: + - `docker exec -u www-data: nextcloud /var/www/html/occ config:app:set core shareapi_allow_group_sharing --value no` + - `docker exec -u www-data: nextcloud /var/www/html/occ config:app:set core shareapi_allow_share_dialog_user_enumeration --value no` +- It is also recommended to disable the following two options under "Federated Cloud Sharing" in admin sharing settings: + - "Search global and public address book for users" + - "Allow users to publish their data to a global and public address book" + ## Setting up /e/ OS with /e/ selfhosting -- GitLab From 2e670bc1622e211bc94c7371c6fcc4ac34e1255f Mon Sep 17 00:00:00 2001 From: akhil Date: Fri, 12 Nov 2021 18:36:03 +0530 Subject: [PATCH 2/2] Removed extra colons when running docker exec --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 86774f6..ae34c7f 100644 --- a/README.md +++ b/README.md @@ -177,8 +177,8 @@ Your credentials for postfix admin (https://mail.yourdomain.com) are: user/pass - User statuses are not available globally for other users to view - Global contacts menu for searching contacts is disabled - To disable group sharing and username autocompletion in the share dialog, please run the following commands on your server: - - `docker exec -u www-data: nextcloud /var/www/html/occ config:app:set core shareapi_allow_group_sharing --value no` - - `docker exec -u www-data: nextcloud /var/www/html/occ config:app:set core shareapi_allow_share_dialog_user_enumeration --value no` + - `docker exec -u www-data nextcloud /var/www/html/occ config:app:set core shareapi_allow_group_sharing --value no` + - `docker exec -u www-data nextcloud /var/www/html/occ config:app:set core shareapi_allow_share_dialog_user_enumeration --value no` - It is also recommended to disable the following two options under "Federated Cloud Sharing" in admin sharing settings: - "Search global and public address book for users" - "Allow users to publish their data to a global and public address book" -- GitLab