X-Git-Url: https://git.p6c8.net/policy-templates.git/blobdiff_plain/23f77b2cefd0c8d02f6aef2232efaac64718c8ca..bec1a5bbbaf0e3936f439a139f661d96a6b51a51:/README.md diff --git a/README.md b/README.md index 2277853..8cee048 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Policies can either be specified using the Group Policy templates or by creating a file called policies.json. On Windows, create a directory called distribution where the EXE is located and place the file there. On Mac, the file goes into Firefox.app/Content/Resources/distribution. +Policies can either be specified using the Group Policy templates or by creating a file called policies.json. On Windows, create a directory called distribution where the EXE is located and place the file there. On Mac, the file goes into `Firefox.app/Contents/Resources/distribution`. On Linux, the file goes into `firefox/distribution`, where `firefox` is the installation directory for firefox, which varies by distribution. The content of the JSON file should look like this: ``` @@ -8,8 +8,14 @@ The content of the JSON file should look like this: } } ``` -Policies are documented below. Note that even though comments are used in this file for documentation, comments are not allowed for JSON files. -### Authentication +Policies are documented below. + + +**Note**: though comments are used in this readme file for documentation, comments are not valid in actual JSON files. Remove all comments before attempting to deploy. + +Some of the policies are only available on the ESR for security reasons. These policies are marked ESR only. + +### Authentication (ESR only) This policy is for configuring sites that support integrated authentication. See https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication for more information. ``` { @@ -102,7 +108,7 @@ This policy removes the master password functionality if set to true. } } ``` -### DisableAppUpdate +### DisableAppUpdate (ESR only) This policy turns off application updates. ``` { @@ -161,7 +167,7 @@ This policy disables Firefox studies (Shield) ``` { "policies": { - "DisableFirefoxAccounts": true + "DisableFirefoxStudies": true } } ``` @@ -201,6 +207,15 @@ This policy removes access to private browsing } } ``` +### DisableProfileImport +This policy disables the"Import data from another browser" option in the bookmarks window. +``` +{ + "policies": { + "DisableProfileImport": true + } +} +``` ### DisableProfileRefresh This policy disables the Refresh Firefox button on about:support and support.mozilla.org. ``` @@ -220,7 +235,7 @@ This policy disables safe mode on Windows only } ``` ### DisableSecurityBypass -This policy prevents the user from bypassign security in certain cases. +This policy prevents the user from bypassing security in certain cases. ``` { "policies": { @@ -231,7 +246,7 @@ This policy prevents the user from bypassign security in certain cases. } } ``` -### DisableSystemAddonUpdate +### DisableSystemAddonUpdate (ESR only) This policy prevents system add-ons from being updated or installed. ``` { @@ -240,8 +255,10 @@ This policy prevents system add-ons from being updated or installed. } } ``` -### DisableTelemetry -This policy prevents the upload of telemetry data. Mozilla strongly recommends that you do NOT disable telemetry if you do not have a business need to do so. +### DisableTelemetry (ESR only) +This policy prevents the upload of telemetry data. + +Mozilla recommends that you do not disable telemetry. Information collected through telemetry helps us build a better product for businesses like yours. ``` { "policies": { @@ -291,8 +308,9 @@ If Value is set to true, private browsing is enabled by default in both the brow "Value": [true, false], "Locked": [true, false] } +} ``` -### Extensions +### Extensions (ESR only) This policy controls the install, uninstall and locking of extensions. Locked extensions cannot be disabled or uninstalled. For Install, you can specify a list of URLs or paths. For Uninstall and Locked, you specify extension IDs. @@ -304,6 +322,7 @@ For Uninstall and Locked, you specify extension IDs. "Uninstall": ["addon_id@mozilla.org"], "Locked": ["addon_id@mozilla.org"] } +} ``` ### NoDefaultBookmarks Don't create the default bookmarks or the Smart Bookmarks (Most Visited, Recent Tags). Note: this policy is only effective if used before the first run of the profile. @@ -323,7 +342,7 @@ This policy sets the signon.rememberSignons preference. It determines whether or } } ``` -### Homepage +### Homepage (ESR only) This policy sets the default homepage value. It can also be used to lock the homepage and add additional homepages. ``` { @@ -358,8 +377,8 @@ This policy sets domains that can install extensions, as well as the default beh "policies": { "InstallAddonsPermission": { "Allow": ["http://example.org/", - "http://example.edu/"] - "Default": [true|false], /* If this is set to false, add-ons cannot be installed by the user */ + "http://example.edu/"], + "Default": [true|false] /* If this is set to false, add-ons cannot be installed by the user */ } } } @@ -378,7 +397,7 @@ This policy sets the behavior of Flash on the specified domains, as well as the } } ``` -### OverrideFirstRunPage +### OverrideFirstRunPage (ESR only) This policy allowed you to override the first run page. If you leave the URL blank, the first run page will not be displayed. ``` { @@ -387,7 +406,7 @@ This policy allowed you to override the first run page. If you leave the URL bla } } ``` -### OverridePostUpdatePage +### OverridePostUpdatePage (ESR only) This policy allowed you to override the upgrade page page. If you leave the URL blank, the upgrade page will not be displayed. ``` { @@ -421,19 +440,21 @@ This policy allows you to specify proxy settings. These settings correspond to t To specify ports, append them to the hostnames with a colon (:). If Locked is set to true, the values can't be changed by the user. ``` { - "Proxy": { - "Mode": ["none", "system", "manual", "autoDetect", "autoConfig"] - "Locked": [true, false] - "HTTPProxy": "hostname", - "UseHTTPProxyForAllProtocols": [true, false] - "SSLProxy": "hostname", - "FTPProxy": "hostname", - "SOCKSProxy": "hostname", - "SOCKSVersion": [4, 5], - "Passthrough": "List of passthrough addresses/domains", - "AutoConfigURL": "URL_TO_AUTOCONFIG", - "AutoLogin": [true, false], - "UseProxyForDNS": [true, false] + "policies": { + "Proxy": { + "Mode": ["none", "system", "manual", "autoDetect", "autoConfig"], + "Locked": [true, false], + "HTTPProxy": "hostname", + "UseHTTPProxyForAllProtocols": [true, false], + "SSLProxy": "hostname", + "FTPProxy": "hostname", + "SOCKSProxy": "hostname", + "SOCKSVersion": [4, 5], + "Passthrough": "List of passthrough addresses/domains", + "AutoConfigURL": "URL_TO_AUTOCONFIG", + "AutoLogin": [true, false], + "UseProxyForDNS": [true, false] + } } } ``` @@ -446,7 +467,7 @@ If this policy is set to true, all data is cleared when Firefox is closed. This } } ``` -### SearchBar +### SearchBar (ESR only) This policy can be used to determine if the search bar is separate or combined with the URL bar. ``` { @@ -455,17 +476,19 @@ This policy can be used to determine if the search bar is separate or combined w } } ``` -### WebsiteFilter +### WebsiteFilter (ESR only) Blocks websites from being visited. The parameters take an array of Match Patterns, as documented in https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Only http/https accesses are supported at the moment. The arrays are limited to 1000 entries each. ``` { "policies": { - "Block": [""], - "Exceptions": ["http://example.org/*"] + "WebsiteFilter": { + "Block": [""], + "Exceptions": ["http://example.org/*"] + } } } ``` -### Search Engines +### Search Engines (ESR only) This policy allows you to add new search engines, as well as set the default and prevent the install of search engines from web pages. Only Name and URLTemplate is required. ``` { @@ -487,4 +510,4 @@ This policy allows you to add new search engines, as well as set the default and } } } -``` \ No newline at end of file +```