From 78e04e01b131fd508f0c6e789978709efe481a58 Mon Sep 17 00:00:00 2001 From: quindecim <49964366+quindecim@users.noreply.github.com> Date: Thu, 16 May 2019 09:59:40 +0000 Subject: [PATCH] Update policies.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✅ Enabled app from auto-update ⛔️ Disabled check default browser ⛔️ Disabled and locked camera requests ⛔️ Disabled and locked camera requests ⛔️ Disabled and locked microphone requests ⛔️ Disabled and locked location requests ⛔️ Disabled and locked notifications requests ⛔️ Disabled and locked trackingprotection ⛔️ Disabled accept third-party cookies ⛔️ Disabled offer to save logins ℹ️ Set SSL version min `1.2` --- config/distribution/policies.json | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/config/distribution/policies.json b/config/distribution/policies.json index f980fc6..7ac34aa 100644 --- a/config/distribution/policies.json +++ b/config/distribution/policies.json @@ -1,26 +1,30 @@ { "policies": { - "AppUpdateURL": "", - "DisableAppUpdate": true, + "DontCheckDefaultBrowser": true, + "Camera_BlockNewRequests": true, + "Camera_Locked": true, + "Microphone_BlockNewRequests": true, + "Microphone_Locked": true, + "Location_BlockNewRequests": true, + "Location_Locked": true, + "Notifications_BlockNewRequests": true, + "Notifications_Locked": true, + "Cookies_AcceptThirdParty": false, + "OfferToSaveLogins": false, "OverridePostUpdatePage": "", "DisableMasterPasswordCreation": true, "DisableFeedbackCommands": true, - "DisableFeedbackCommands_Explain": true, "DisableFirefoxAccounts": true, - "DisableFirefoxAccounts_Explain": true, "DisableFirefoxScreenshots": true, - "DisableFirefoxScreenshots_Explain": true, "DisableFirefoxStudies": true, - "DisableFirefoxStudies_Explain": true, "DisablePocket": true, "DisablePocket_Explain": true, "DisableProfileImport": true, - "DisableProfileImport_Explain": true, "DisableSetDesktopBackground": true, - "DisableSetDesktopBackground_Explain": true, "DisableSystemAddonUpdate": true, - "DisableSystemAddonUpdate_Explain": true, "DisableTelemetry": true, - "DisableTelemetry_Explain": true + "TrackingProtection": false, + "TrackingProtectionLocked": true, + "SSLVersionMin_Explain": "TLS1_2" } }