}
```
Policies are documented below. Note that even though comments are used in this file for documentation, comments are not allowed for JSON files.
-### Authentication
+
+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.
```
{
}
}
```
-### DisableAppUpdate
+### DisableAppUpdate (ESR only)
This policy turns off application updates.
```
{
```
{
"policies": {
- "DisableFirefoxAccounts": true
+ "DisableFirefoxStudies": true
}
}
```
}
```
### DisableSecurityBypass
-This policy prevents the user from bypassign security in certain cases.
+This policy prevents the user from bypassing security in certain cases.
```
{
"policies": {
}
}
```
-### DisableSystemAddonUpdate
+### DisableSystemAddonUpdate (ESR only)
This policy prevents system add-ons from being updated or installed.
```
{
}
}
```
-### DisableTelemetry
+### 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.
"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.
}
}
```
-### Homepage
+### Homepage (ESR only)
This policy sets the default homepage value. It can also be used to lock the homepage and add additional homepages.
```
{
"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 */
}
}
}
}
}
```
-### 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.
```
{
}
}
```
-### 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.
```
{
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]
+ }
}
}
```
}
}
```
-### SearchBar
+### SearchBar (ESR only)
This policy can be used to determine if the search bar is separate or combined with the URL bar.
```
{
}
}
```
-### 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": ["<all_urls>"],
- "Exceptions": ["http://example.org/*"]
+ "WebsiteFilter": {
+ "Block": ["<all_urls>"],
+ "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.
```
{