X-Git-Url: https://git.p6c8.net/policy-templates.git/blobdiff_plain/0e32503ed0b334a0386a83184e8c44deb529b499..5adc3d7a64e52aa38753fe64f160ab6c79128169:/README.md diff --git a/README.md b/README.md index 4b85d07..19ed9e2 100644 --- a/README.md +++ b/README.md @@ -7,9 +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. +| **[`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). @@ -64,6 +67,7 @@ Policies can be specified using the [Group Policy templates on Windows](https:// | **[`LegacyProfiles`](#legacyprofiles)** | Disable the feature enforcing a separate profile for each installation. | **[`LocalFileLinks`](#localfilelinks)** | Enable linking to local files by origin. | **[`ManagedBookmarks`](#managedbookmarks)** | Configures a list of bookmarks managed by an administrator that cannot be changed by the user. +| **[`ManualAppUpdateOnly`](#manualappupdateonly)** | Allow manual updates only and do not notify the user about updates.. | **[`PrimaryPassword`](#primarypassword)** | Require or prevent using a primary (formerly master) password. | **[`NetworkPrediction`](#networkprediction)** | Enable or disable network prediction (DNS prefetching). | **[`NewTabPage`](#newtabpage)** | Enable or disable the New Tab page. @@ -92,6 +96,7 @@ Policies can be specified using the [Group Policy templates on Windows](https:// | **[`SearchEngines -> Add`](#searchengines--add)** | Add new search engines. | **[`SearchSuggestEnabled`](#searchsuggestenabled)** | Enable search suggestions. | **[`SecurityDevices`](#securitydevices)** | Install PKCS #11 modules. +| **[`ShowHomeButton`](#showhomebutton)** | Show the home button on the toolbar. | **[`SSLVersionMax`](#sslversionmax)** | Set and lock the maximum version of TLS. | **[`SSLVersionMin`](#sslversionmin)** | Set and lock the minimum version of TLS. | **[`SupportMenu`](#supportmenu)** | Add a menuitem to the help menu for specifying support information. @@ -144,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. @@ -325,6 +371,140 @@ 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. + +If set to true, application updates may be installed (without user approval) in the background, even when the application is not running. The operating system might still require approval. + +If set to false, the application will not try to install updates when the application is not running. + +If you have disabled updates via `DisableAppUpdate` or disabled automatic updates via `AppUpdateAuto`, this policy has no effect. + +**Compatibility:** Firefox 90 (Windows only)\ +**CCK2 Equivalent:** N/A\ +**Preferences Affected:** `app.update.background.enabled` + +#### Windows (GPO) +``` +Software\Policies\Mozilla\Firefox\BackgroundAppUpdate = 0x1 | 0x0 +``` +#### Windows (Intune) +OMA-URI: +``` +./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/BackgroundAppUpdate +``` +Value (string): +``` + or +``` +#### macOS +``` + + BackgroundAppUpdate + | + +``` +#### policies.json +``` +{ + "policies": { + "BackgroundAppUpdate": true | false + } +} +``` ### BlockAboutAddons Block access to the Add-ons Manager (about:addons). @@ -981,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:** @@ -2107,6 +2289,7 @@ Value (string): "Fingerprinting": true | false, "Exceptions": ["https://example.com"] } + } } ``` ### EncryptedMediaExtensions @@ -2155,6 +2338,7 @@ Value (string): "Enabled": true | false, "Locked": true | false } + } } ``` ### EnterprisePoliciesEnabled @@ -2176,7 +2360,7 @@ Control the installation, uninstallation and locking of extensions. While this policy is not technically deprecated, it is recommended that you use the **[`ExtensionSettings`](#extensionsettings)** policy. It has the same functionality and adds more. It does not support native paths, though, so you'll have to use file:/// URLs. -`Install` is a list of URLs or native paths for extensions to be installed. +`Install` is a list of URLs or native paths for extensions to be installed. `Uninstall` is a list of extension IDs that should be uninstalled if found. @@ -2275,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\ @@ -2295,7 +2480,7 @@ Software\Policies\Mozilla\Firefox\ExtensionSettings (REG_MULTI_SZ) = "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi" }, "https-everywhere@eff.org": { - "installation_mode": "allowed", + "installation_mode": "allowed" } } ``` @@ -2320,7 +2505,7 @@ Value (string): "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi" }, "https-everywhere@eff.org": { - "installation_mode": "allowed", + "installation_mode": "allowed" } }'/> ``` @@ -3104,7 +3289,7 @@ Value (string): toplevel_name - My managed bookmarks folder + My managed bookmarks folder url example.com @@ -3162,6 +3347,29 @@ Value (string): } } ``` +### ManualAppUpdateOnly + +Switch to manual updates only. + +If this policy is enabled: + 1. The user will never be prompted to install updates + 2. Firefox will not check for updates in the background, though it will check automatically when an update UI is displayed (such as the one in the About dialog). This check will be used to show "Update to version X" in the UI, but will not automatically download the update or prompt the user to update in any other way. + 3. The update UI will work as expected, unlike when using DisableAppUpdate. + +This policy is primarily intended for advanced end users, not for enterprises. + +**Compatibility:** Firefox 87\ +**CCK2 Equivalent:** N/A\ +**Preferences Affected:** N/A + +#### policies.json +``` +{ + "policies": { + "ManualAppUpdateOnly": true | false + } +} +``` ### PrimaryPassword Require or prevent using a primary (formerly master) password. @@ -3411,6 +3619,7 @@ Value (string): { "policies": { "OverrideFirstRunPage": "http://example.org" + } } ``` ### OverridePostUpdatePage @@ -3446,6 +3655,7 @@ Value (string): { "policies": { "OverridePostUpdatePage": "http://example.org" + } } ``` ### PasswordManagerEnabled @@ -3531,6 +3741,7 @@ Value (string): "Enabled": true | false, "EnablePermissions": true | false } + } } ``` ### Permissions @@ -3854,7 +4065,7 @@ Value (string): "policies": { "PictureInPicture": { "Enabled": true | false, - "Locked": true, false + "Locked": true | false } } } @@ -3953,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. @@ -4195,7 +4408,7 @@ disabled | network.dns.disableIPv6 | boolean | Firefox 68, Firefox ESR 68 | false |     If true, IPv6 DNS lokoups are disabled. | network.IDN_show_punycode | boolean | Firefox 68, Firefox ESR 68 | false -|     If true, display the punycode version of internationalized domain names. +|     If true, display the punycode version of internationalized domain names. | places.history.enabled | boolean | Firefox 68, Firefox ESR 68 | true |     If false, history is not enabled. | print.save_print_settings | boolean | Firefox 70, Firefox ESR 68.2 | true @@ -4407,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, @@ -4999,6 +5212,43 @@ Value (string): } } ``` +### ShowHomeButton +Show the home button on the toolbar. + +Future versions of Firefox will not show the home button by default. + +**Compatibility:** Firefox 88, Firefox ESR 78.10\ +**CCK2 Equivalent:** N/A\ +**Preferences Affected:** N/A + +#### Windows (GPO) +``` +Software\Policies\Mozilla\Firefox\ShowHomeButton = 0x1 | 0x0 +``` +#### Windows (Intune) +OMA-URI: +``` +./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/ShowHomeButton +``` +Value (string): +``` + or +``` +#### macOS +``` + + ShowHomeButton + | + +``` +#### policies.json +``` +{ + "policies": { + "ShowHomeButton": true | false + } +} +``` ### SSLVersionMax Set and lock the maximum version of TLS. @@ -5130,17 +5380,19 @@ Value (string): Prevent Firefox from messaging the user in certain situations. -`WhatsNew` Remove the "What's New" icon and menuitem. (Firefox 75 only) +`WhatsNew` Remove the "What's New" icon and menuitem. -`ExtensionRecommendations` Don't recommend extensions while the user is visiting web pages. +`ExtensionRecommendations` If false, don't recommend extensions while the user is visiting web pages. -`FeatureRecommendations` Don't recommend browser features. +`FeatureRecommendations` IF false, don't recommend browser features. -`UrlbarInterventions` Don't offer Firefox specific suggestions in the URL bar. (Firefox 75 only) +`UrlbarInterventions` If false, Don't offer Firefox specific suggestions in the URL bar. + +`SkipOnboarding` If true, don't show onboarding messages on the new tab page. **Compatibility:** Firefox 75, Firefox ESR 68.7\ **CCK2 Equivalent:** N/A\ -**Preferences Affected:** `browser.messaging-system.whatsNewPanel.enabled`,`browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons`,`browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features` +**Preferences Affected:** `browser.messaging-system.whatsNewPanel.enabled`,`browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons`,`browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features`,`browser.aboutwelcome.enabled` #### Windows (GPO) ``` @@ -5148,6 +5400,7 @@ Software\Policies\Mozilla\Firefox\UserMessaging\WhatsNew = 0x1 | 0x0 Software\Policies\Mozilla\Firefox\UserMessaging\ExtensionRecommendations = 0x1 | 0x0 Software\Policies\Mozilla\Firefox\UserMessaging\FeatureRecommendations = 0x1 | 0x0 Software\Policies\Mozilla\Firefox\UserMessaging\UrlbarInterventions = 0x1 | 0x0 +Software\Policies\Mozilla\Firefox\UserMessaging\SkipOnboarding = 0x1 | 0x0 ``` #### Windows (Intune) OMA-URI: @@ -5156,6 +5409,7 @@ OMA-URI: ./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/UserMessaging_ExtensionRecommendations ./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/UserMessaging_FeatureRecommendations ./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/UserMessaging_UrlbarInterventions +./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/UserMessaging_SkipOnboarding ``` Value (string): ``` @@ -5174,6 +5428,8 @@ Value (string): | UrlbarInterventions | + SkipOnboarding + | ``` @@ -5186,6 +5442,7 @@ Value (string): "ExtensionRecommendations": true | false, "FeatureRecommendations": true | false, "UrlbarInterventions": true | false + "SkipOnboarding": true | false } } }