Update 'config/distribution/policies.json'

Rewritten the file from scratch.
Synced all the prefs already configured with  mozilla.cfg and added new ones (not settable with the .cfg file), such as:
️ Disabled master password creation
️ Disabled set Desktop background
️ Disabled feedback commands
️ Disabled Firefox Studies
️ Disabled profile import
️ Disabled system addon updates
️ Disabled Firefox home (Search, Top Sites, Highlights, Pocket, Snippets)
️ Removed all defaults bookmarks
️ Removed "Bing", "Google", "Twitter" as search engines and set "DuckDuckGo" as deafult (this policy is only available on the ESR.)
This commit is contained in:
quindecim 2019-07-28 09:34:36 +00:00
parent 1e87458c8a
commit 040d18229a
1 changed files with 136 additions and 32 deletions

View File

@ -1,37 +1,141 @@
{ {
"policies": { "policies": {
"DontCheckDefaultBrowser": true,
"Camera_BlockNewRequests": true, "AppUpdateURL": "https://aus5.mozilla.org/update/6/%PRODUCT%/%VERSION%/%BUILD_ID%/%BUILD_TARGET%/%CHANNEL%/%OS_VERSION%/%SYSTEM_CAPABILITIES%/%DISTRIBUTION%/%DISTRIBUTION_VERSION%/update.xml",
"Camera_Locked": true,
"Microphone_BlockNewRequests": true, "CaptivePortal": false,
"Microphone_Locked": true,
"Location_BlockNewRequests": true, "Certificates": {
"Location_Locked": true, "ImportEnterpriseRoots": false
"Notifications_BlockNewRequests": true, },
"Notifications_Locked": true,
"Cookies_AcceptThirdParty": false, "Cookies": {
"OfferToSaveLogins": false, "Allow": ["http://example.org/"],
"OverridePostUpdatePage": "", "Block": ["http://example.edu/"],
"DisableMasterPasswordCreation": true, "Default": true,
"DisableFeedbackCommands": true, "ExpireAtSessionEnd": false,
"DisableFeedbackCommands_Explain": true, "Locked": false
"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": true,
"DisableMasterPasswordCreation": true,
"DisableFeedbackCommands": true,
"DisableFirefoxScreenshots": true,
"DisableFirefoxAccounts": true,
"DisableFirefoxStudies": true,
"DisablePocket": true,
"DisableProfileImport": true,
"DisableProfileRefresh": true,
"DisableSecurityBypass": {
"InvalidCertificate": true,
"SafeBrowsing": true
},
"DisableSystemAddonUpdate": true, "DisableSystemAddonUpdate": true,
"DisableSystemAddonUpdate_Explain": true,
"DisableTelemetry": true, "DisableTelemetry": true,
"DisableTelemetry_Explain": true,
"TrackingProtection": false, "DontCheckDefaultBrowser": true,
"TrackingProtectionLocked": true,
"SSLVersionMin_Explain": "TLS1_2" "EnableTrackingProtection": {
} "Value": false,
"Locked": true
},
"Extensions": {
"Install_remove_me": ["https://addons.mozilla.org/firefox/downloads/latest/example_0-ublock-origin/latest.xpi", "//path/to/xpi"],
"Uninstall": ["bad_addon_id@mozilla.org", "twitter@search.mozilla.org"],
"Locked": ["addon_id@mozilla.org"]
},
"FlashPlugin": {
"Allow": ["http://example.org/"],
"Block": ["http://example.edu/"],
"Default": false,
"Locked": false
},
"FirefoxHome": {
"Search": false,
"TopSites": false,
"Highlights": false,
"Pocket": false,
"Snippets": false,
"Locked": true
},
"Homepage": {
"URL": "about:blank",
"Locked": true,
"Additional": ["http://example.org/",
"http://example.edu/"],
"StartPage": "none"
},
"NewTabPage": false,
"NetworkPrediction": false,
"NoDefaultBookmarks": true,
"OfferToSaveLogins": false,
"OverrideFirstRunPage": "",
"OverridePostUpdatePage": "",
"Permissions": {
"Camera": {
"Allow": ["https://example.org"],
"Block": ["https://example.edu"],
"BlockNewRequests": true,
"Locked": true
},
"Microphone": {
"Allow": ["https://example.org"],
"Block": ["https://example.edu"],
"BlockNewRequests": true,
"Locked": true
},
"Location": {
"Allow": ["https://example.org"],
"Block": ["https://example.edu"],
"BlockNewRequests": true,
"Locked": true
},
"Notifications": {
"Allow": ["https://example.org"],
"Block": ["https://example.edu"],
"BlockNewRequests": true,
"Locked": true
}
},
"PopupBlocking": {
"Allow": ["http://example.org/",
"http://example.edu/"],
"Default": true,
"Locked": true
},
"SearchEngines": {
"Default": "DuckDuckGo",
"PreventInstalls": false,
"Remove": ["Bing", "Google", "Twitter"]
},
"SearchSuggestEnabled": false,
"SSLVersionMin": "tls1.2"
}
} }