X-Git-Url: https://git.p6c8.net/policy-templates.git/blobdiff_plain/27fd3da52737d0b8b57110c9b1907b0f8825225f..5adc3d7a64e52aa38753fe64f160ab6c79128169:/README.md
diff --git a/README.md b/README.md
index ddac8e2..19ed9e2 100644
--- a/README.md
+++ b/README.md
@@ -7,10 +7,12 @@ Policies can be specified using the [Group Policy templates on Windows](https://
| Policy Name | Description
| --- | --- |
| **[`3rdparty`](#3rdparty)** | Set policies that WebExtensions can access via chrome.storage.managed.
+| **[`AllowedDomainsForApps`](#alloweddomainsforapps)** | Define domains allowed to access Google Workspace.
| **[`AppAutoUpdate`](#appautoupdate)** | Enable or disable automatic application update.
| **[`AppUpdateURL`](#appupdateurl)** | Change the URL for application update.
| **[`Authentication`](#authentication)** | Configure sites that support integrated authentication.
-| **[`BackgroundAppUpdate`](#backgroundappupdate)** | Enable or disable automatic application update in the background, when the application is not running.
+| **[`AutoLaunchProtocolsFromOrigins`](#autolaunchprotocolsfromorigins)** | Define a list of external protocols that can be used from listed origins without prompting the user.
+| **[`BackgroundAppUpdate`](#backgroundappupdate)** | Enable or disable the background updater (Windows only).
| **[`BlockAboutAddons`](#blockaboutaddons)** | Block access to the Add-ons Manager (about:addons).
| **[`BlockAboutConfig`](#blockaboutconfig)** | Block access to about:config.
| **[`BlockAboutProfiles`](#blockaboutprofiles)** | Block access to About Profiles (about:profiles).
@@ -147,6 +149,47 @@ Value (string):
}
}
```
+### AllowedDomainsForApps
+
+Define domains allowed to access Google Workspace.
+
+This policy is based on the [Chrome policy](https://chromeenterprise.google/policies/#AllowedDomainsForApps) of the same name.
+
+If this policy is enabled, users can only access Google Workspace using accounts from the specified domains. If you want to allow Gmail, you can add ```consumer_accounts``` to the list.
+
+**Compatibility:** Firefox 89, Firefox ESR 78.11\
+**CCK2 Equivalent:** N/A\
+**Preferences Affected:** N/A
+
+#### Windows (GPO)
+```
+Software\Policies\Mozilla\Firefox\AllowedDomainsForApps = "managedfirefox.com,example.com"
+```
+#### Windows (Intune)
+OMA-URI:
+```
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/AllowedDomainsForApps
+```
+Value (string):
+```
+
+
+```
+#### macOS
+```
+
+ AllowedDomainsForApps
+ managedfirefox.com,example.com
+
+```
+#### policies.json
+```
+{
+ "policies": {
+ "AllowedDomainsForApps": "managedfirefox.com,example.com"
+ }
+}
+```
### AppUpdateURL
Change the URL for application update if you are providing Firefox updates from a custom update server.
@@ -328,6 +371,98 @@ Value (string):
}
}
```
+### AutoLaunchProtocolsFromOrigins
+Define a list of external protocols that can be used from listed origins without prompting the user.
+
+The syntax of this policy is exactly the same as the [Chrome AutoLaunchProtocolsFromOrigins policy](https://cloud.google.com/docs/chrome-enterprise/policies/?policy=AutoLaunchProtocolsFromOrigins) except that you can only use valid origins (not just hostnames). This also means that you cannot specify an asterisk for all origins.
+
+The schema is:
+```
+{
+ "items": {
+ "properties": {
+ "allowed_origins": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "protocol": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "protocol",
+ "allowed_origins"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
+```
+**Compatibility:** Firefox 90, Firefox ESR 78.12\
+**CCK2 Equivalent:** N/A\
+**Preferences Affected:** N/A
+
+#### Windows (GPO)
+Software\Policies\Mozilla\Firefox\AutoLaunchProtocolsFromOrigins (REG_MULTI_SZ) =
+```
+[
+ {
+ "protocol": "zoommtg",
+ "allowed_origins": [
+ "https://somesite.zoom.us"
+ ]
+ }
+]
+```
+#### Windows (Intune)
+OMA-URI:
+```
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/AutoLaunchProtocolsFromOrigins
+```
+Value (string):
+```
+
+
+```
+#### macOS
+```
+
+ AutoLaunchProtocolsFromOrigins
+
+
+ protocol
+ zoommtg
+ allowed_origins
+
+ https://somesite.zoom.us
+
+
+
+
+```
+#### policies.json
+```
+{
+ "policies": {
+ "AutoLaunchProtocolsFromOrigins": [{
+ "protocol": "zoommtg",
+ "allowed_origins": [
+ "https://somesite.zoom.us"
+ ]
+ }]
+ }
+}
+```
### BackgroundAppUpdate
Enable or disable **automatic** application update **in the background**, when the application is not running.
@@ -338,7 +473,7 @@ If set to false, the application will not try to install updates when the applic
If you have disabled updates via `DisableAppUpdate` or disabled automatic updates via `AppUpdateAuto`, this policy has no effect.
-**Compatibility:** Firefox 89\
+**Compatibility:** Firefox 90 (Windows only)\
**CCK2 Equivalent:** N/A\
**Preferences Affected:** `app.update.background.enabled`
@@ -1026,6 +1161,8 @@ Value (string):
### DisabledCiphers
Disable specific cryptographic ciphers.
+**Preferences Affected:** `security.ssl3.dhe_rsa_aes_128_sha`, `security.ssl3.dhe_rsa_aes_256_sha`, `security.ssl3.ecdhe_ecdsa_aes_128_gcm_sha256`, `security.ssl3.ecdhe_rsa_aes_128_gcm_sha256`, `security.ssl3.ecdhe_rsa_aes_128_sha`, `security.ssl3.ecdhe_rsa_aes_256_sha`, `security.ssl3.rsa_aes_128_gcm_sha256`, `security.ssl3.rsa_aes_128_sha`, `security.ssl3.rsa_aes_256_gcm_sha384`, `security.ssl3.rsa_aes_256_sha`, `security.ssl3.rsa_des_ede3_sha`
+
---
**Note:**
@@ -2152,6 +2289,7 @@ Value (string):
"Fingerprinting": true | false,
"Exceptions": ["https://example.com"]
}
+ }
}
```
### EncryptedMediaExtensions
@@ -2200,6 +2338,7 @@ Value (string):
"Enabled": true | false,
"Locked": true | false
}
+ }
}
```
### EnterprisePoliciesEnabled
@@ -2320,6 +2459,7 @@ The configuration for each extension is another dictionary that can contain the
| `allowed_types` | This setting whitelists the allowed types of extension/apps that can be installed in Firefox. The value is a list of strings, each of which should be one of the following: "extension", "theme", "dictionary", "locale" This setting can be used only for the default configuration.
| `blocked_install_message` | This maps to a string specifying the error message to display to users if they're blocked from installing an extension. This setting allows you to append text to the generic error message displayed when the extension is blocked. This could be be used to direct users to your help desk, explain why a particular extension is blocked, or something else. This setting can be used only for the default configuration.
| `restricted_domains` | An array of domains on which content scripts can't be run. This setting can be used only for the default configuration.
+| `updates_disabled` | (Firefox 89, Firefox ESR 78.11) Boolean that indicates whether or not to disable automatic updates for an individual extension.
**Compatibility:** Firefox 69, Firefox ESR 68.1 (As of Firefox 85, Firefox ESR 78.7, installing a theme makes it the default.)\
**CCK2 Equivalent:** N/A\
@@ -3149,7 +3289,7 @@ Value (string):
toplevel_name
- My managed bookmarks folder
+ My managed bookmarks folder
url
example.com
@@ -3479,6 +3619,7 @@ Value (string):
{
"policies": {
"OverrideFirstRunPage": "http://example.org"
+ }
}
```
### OverridePostUpdatePage
@@ -3514,6 +3655,7 @@ Value (string):
{
"policies": {
"OverridePostUpdatePage": "http://example.org"
+ }
}
```
### PasswordManagerEnabled
@@ -3599,6 +3741,7 @@ Value (string):
"Enabled": true | false,
"EnablePermissions": true | false
}
+ }
}
```
### Permissions
@@ -3922,7 +4065,7 @@ Value (string):
"policies": {
"PictureInPicture": {
"Enabled": true | false,
- "Locked": true, false
+ "Locked": true | false
}
}
}
@@ -4021,7 +4164,9 @@ extensions.
general.autoScroll (Firefox 83, Firefox ESR 78.5)
general.smoothScroll (Firefox 83, Firefox ESR 78.5)
geo.
+gfx.
intl.
+layers.
layout.
media.
network.
@@ -4475,7 +4620,7 @@ Value (string):
"SSLProxy": "hostname",
"FTPProxy": "hostname",
"SOCKSProxy": "hostname",
- "SOCKSVersion": 4 | 5
+ "SOCKSVersion": 4 | 5,
"Passthrough": "",
"AutoConfigURL": "URL_TO_AUTOCONFIG",
"AutoLogin": true | false,