| **[`DisablePrivateBrowsing`](#disableprivatebrowsing)** | Remove access to private browsing.
| **[`DisableProfileImport`](#disableprofileimport)** | Disables the "Import data from another browser" option in the bookmarks window.
| **[`DisableProfileRefresh`](#disableprofilerefresh)** | Disable the Refresh Firefox button on about:support and support.mozilla.org
- | **[`DisableSafeMode`](#disablesafemode)** | Disable safe mode.
+ | **[`DisableSafeMode`](#disablesafemode)** | Disable safe mode within the browser.
| **[`DisableSecurityBypass`](#disablesecuritybypass)** | Prevent the user from bypassing security in certain cases.
| **[`DisableSystemAddonUpdate`](#disablesystemaddonupdate)** | Prevent system add-ons from being installed or update.
| **[`DisableTelemetry`](#disabletelemetry)** | DisableTelemetry
| **[`DisplayBookmarksToolbar`](#displaybookmarkstoolbar)** | Set the initial state of the bookmarks toolbar.
- | **[`DisplayMenuBar`](#displaymenubar)** | Set the initial state of the menubar
+ | **[`DisplayMenuBar`](#displaymenubar)** | Set the initial state of the menubar.
| **[`DNSOverHTTPS`](#dnsoverhttps)** | Configure DNS over HTTPS.
| **[`DontCheckDefaultBrowser`](#dontcheckdefaultbrowser)** | Don't check if Firefox is the default browser at startup.
+ | **[`DefaultDownloadDirectory`](#defaultdownloaddirectory)** | Set the default download directory.
+ | **[`DownloadDirectory`](#downloaddirectory)** | Set and lock the download directory.
| **[`EnableTrackingProtection`](#enabletrackingprotection)** | Configure tracking protection.
+ | **[`EnterprisePoliciesEnabled`](#enterprisepoliciesenabled)** | Enable policy support on macOS.
| **[`Extensions`](#extensions)** | Control the installation, uninstallation and locking of extensions.
+ | **[`ExtensionSettings`](#extensionsettings)** | Manage all aspects of extensions.
| **[`ExtensionUpdate`](#extensionupdate)** | Control extension updates.
| **[`FlashPlugin`](#flashplugin)** | Configure the default Flash plugin policy as well as origins for which Flash is allowed.
+ | **[`FirefoxHome`](#firefoxhome)** | Customize the Firefox Home page.
| **[`HardwareAcceleration`](#hardwareacceleration)** | Control hardware acceleration.
| **[`Homepage`](#homepage)** | Configure the default homepage and how Firefox starts.
| **[`InstallAddonsPermission`](#installaddonspermission)** | Configure the default extension install policy as well as origins for extension installs are allowed.
+ | **[`LocalFileLinks`](#localfilelinks)** | Enable linking to local files by origin.
| **[`NetworkPrediction`](#networkprediction)** | Enable or disable network prediction (DNS prefetching).
+ | **[`NewTabPage`](#newtabpage)** | Enable or disable the New Tab page.
| **[`NoDefaultBookmarks`](#nodefaultbookmarks)** | Disable the creation of default bookmarks.
| **[`OfferToSaveLogins`](#offertosavelogins)** | Control whether or not Firefox offers to save passwords.
| **[`OverrideFirstRunPage`](#overridefirstrunpage)** | Override the first run page.
| **[`OverridePostUpdatePage`](#overridepostupdatepage)** | Override the upgrade page.
- | **[`PopupBlocking`](#popupblocking)** | Configure the default pop-up window policy as well as origins for which pop-up windows are allowed.
| **[`Permissions`](#permissions)** | Set permissions associated with camera, microphone, location, and notifications.
+ | **[`PopupBlocking`](#popupblocking)** | Configure the default pop-up window policy as well as origins for which pop-up windows are allowed.
+ | **[`Preferences`](#preferences)** | Set and lock some preferences.
+ | **[`PromptForDownloadLocation`](#promptfordownloadlocation)** | Ask where to save each file before downloading.
| **[`Proxy`](#proxy)** | Configure proxy settings.
| **[`RequestedLocales`](#requestedlocales)** | Set the the list of requested locales for the application in order of preference.
- | **[`SanitizeOnShutdown`](#sanitizeonshutdown)** | Clear all data on shutdown.
+ | **[`SanitizeOnShutdown` (All)](#sanitizeonshutdown-all)** | Clear all data on shutdown.
+ | **[`SanitizeOnShutdown` (Selective)](#sanitizeonshutdown-selective)** | Clear data on shutdown.
| **[`SearchBar`](#searchbar)** | Set whether or not search bar is displayed.
| **[`SearchEngines`](#searchengines-this-policy-is-only-available-on-the-esr)** |
| **[`SearchEngines -> Default`](#searchengines--default)** | Set the default search engine.
| **[`SearchEngines -> Remove`](#searchengines--remove)** | Hide built-in search engines.
| **[`SearchEngines -> Add`](#searchengines--add)** | Add new search engines.
| **[`SecurityDevices`](#securitydevices)** | Install PKCS #11 modules.
+ | **[`SearchSuggestEnabled`](#searchsuggestenabled)** | Enable search suggestions.
| **[`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.
| **[`WebsiteFilter`](#websitefilter)** | Block websites from being visited.
-
### AppUpdateURL
Change the URL for application update.
}
```
### DisableSafeMode
- Disable safe mode.
+ Disable safe mode within the browser.
+
+ On Windows, this disables safe mode via the command line as well.
**Compatibility:** Firefox 60, Firefox ESR 60 (Windows, macOS)\
**CCK2 Equivalent:** `disableSafeMode`\
}
}
```
+ ### DefaultDownloadDirectory
+ Set the default download directory.
+
+ You can use ${home} for the native home directory.
+
+ **Compatibility:** Firefox 68, Firefox ESR 68\
+ **CCK2 Equivalent:** N/A\
+ **Preferences Affected:** `browser.download.dir`,`browser.download.folderList`
+
+ #### Windows
+ ```
+ Software\Policies\Mozilla\Firefox\DefaultDownloadDirectory = "${home}\Downloads"
+ ```
+ #### macOS
+ ```
+ <dict>
+ <key>DefaultDownloadDirectory</key>
+ <string>${home}/Downloads</string>
+ </dict>
+ ```
+ #### JSON
+ ```
+ {
+ "policies": {
+ "DefaultDownloadDirectory": "${home}/Downloads"
+ }
+ ```
+ ### DownloadDirectory
+ Set and lock the download directory.
+
+ You can use ${home} for the native home directory.
+
+ **Compatibility:** Firefox 68, Firefox ESR 68\
+ **CCK2 Equivalent:** N/A\
+ **Preferences Affected:** `browser.download.dir`,`browser.download.folderList`,`browser.download.useDownloadDir`
+
+ #### Windows
+ ```
+ Software\Policies\Mozilla\Firefox\DownloadDirectory = "${home}\Downloads"
+ ```
+ #### macOS
+ ```
+ <dict>
+ <key>DownloadDirectory</key>
+ <string>${home}/Downloads</string>
+ </dict>
+ ```
+ #### JSON
+ ```
+ {
+ "policies": {
+ "DownloadDirectory": "${home}/Downloads"
+ }
+ ```
### EnableTrackingProtection
Configure tracking protection.
}
}
```
+ ### EnterprisePoliciesEnabled
+ Enable policy support on macOS.
+
+ **Compatibility:** Firefox 63, Firefox ESR 60.3 (macOS only)\
+ **CCK2 Equivalent:** N/A\
+ **Preferences Affected:** N/A
+
+ #### macOS
+ ```
+ <dict>
+ <key>EnterprisePoliciesEnabled</key>
+ <true/>
+ </dict>
+ ```
### Extensions
Control the installation, uninstallation and locking of extensions.
}
}
```
+ ### ExtensionSettings
+ Manage all aspects of extensions. This policy is based heavily on the [Chrome policy](https://dev.chromium.org/administrators/policy-list-3/extension-settings-full) of the same name.
+
+ This policy maps an extension ID to its configuration. With an extension ID, configuration will be applied to the specified extension only. A default configuration can be set for the special ID "*", which will apply to all extensions that don't have a custom configuration set in this policy.
+
+ To obtain an extension ID, install the extension and go to about:support. You will see the ID in the Extensions section.
+
+ The configuration for each extension is another dictionary that can contain the fields documented below.
+
+ | Name | Description |
+ | --- | --- |
+ | `installation_mode` | Maps to a string indicating the installation mode for the extension. The valid strings are `allowed`,`blocked`,`force_installed`, and `normal_installed`.
+ | `allowed` | Allows the extension to be installed by the user. This is the default behavior.
+ | `blocked`| Blocks installation of the extension and removes it from the device if already installed.
+ | `force_installed`| The extension is automatically installed and can't be removed by the user. This option is not valid for the default configuration and requires an install_url.
+ | `normal_installed`| The extension is automatically installed but can be disabled by the user. This option is not valid for the default configuration and requires an install_url.
+ | `install_url`| Maps to a string indicating where Firefox can download a force_installed or normal_installed extension. If installing from the addons.mozilla.org, use the following URL (substituting SHORT_NAME from the URL on AMO), https://addons.mozilla.org/firefox/downloads/latest/SHORT_NAME/latest.xpi
+ | `install_sources` | Each item in this list is an extension-style match pattern. Users will be able to easily install items from any URL that matches an item in this list. Both the location of the *.xpi file and the page where the download is started from (i.e. the referrer) must be allowed by these patterns. This setting can be used only for the default configuration.
+ | `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", "langpack" 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.
+
+ **Compatibility:** Firefox 68, Firefox ESR 68\
+ **CCK2 Equivalent:** N/A\
+ **Preferences Affected:** N/A
+
+ #### Windows
+ Due to a bug in Firefox 68, this policy is not working via GPO on Windows. We will have a fix soon.
+ #### macOS
+ ```
+ <dict>
+ <key>ExtensionSettings</key>
+ <dict>
+ <key>*</key>
+ <dict>
+ <key>blocked_install_message</key>
+ <string>Custom error message.</string>
+ <key>install_sources</key>
+ <array>
+ <string>https://addons.mozilla.org/</string>
+ </array>
+ <key>installation_mode</key>
+ <string>blocked</string>
+ </dict>
+ <key>uBlock0@raymondhill.net</key>
+ <dict>
+ <key>installation_mode</key>
+ <string>force_installed</string>
+ <key>install_url</key>
+ <string>https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi</string>
+ </dict>
+ </dict>
+ </dict>
+ ```
+ #### JSON
+ ```
+ {
+ "policies": {
+ "ExtensionSettings": {
+ "*": {
+ "blocked_install_message": "Custom error message.",
+ "install_sources": ["https://addons.mozilla.org/"],
+ "installation_mode": "blocked"
+ },
+ "uBlock0@raymondhill.net": {
+ "installation_mode": "force_installed",
+ "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"
+ }
+ }
+ }
+ }
+ ```
+
### ExtensionUpdate
Control extension updates.
}
}
```
+ ### FirefoxHome
+ Customize the Firefox Home page.
+
+ **Compatibility:** Firefox 68, Firefox ESR 68\
+ **CCK2 Equivalent:** N/A\
+ **Preferences Affected:** `browser.newtabpage.activity-stream.showSearch`,`browser.newtabpage.activity-stream.feeds.topsites`,`browser.newtabpage.activity-stream.feeds.section.highlights`,`browser.newtabpage.activity-stream.feeds.section.topstories`,`browser.newtabpage.activity-stream.feeds.snippets`
+
+ #### Windows
+ ```
+ Software\Policies\Mozilla\Firefox\FirefoxHome\Search = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\FirefoxHome\TopSites = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\FirefoxHome\Highlights = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\FirefoxHome\Pocket = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\FirefoxHome\Snippets = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\FirefoxHome\Locked = 0x1 | 0x0
+ ```
+ #### macOS
+ ```
+ <dict>
+ <key>FirefoxHome</key>
+ <dict>
+ <key>Search</key>
+ <true/> | <false/>
+ <key>TopSites</key>
+ <true/> | <false/>
+ <key>Highlights</key>
+ <true/> | <false/>
+ <key>Pocket</key>
+ <true/> | <false/>
+ <key>Snippets</key>
+ <true/> | <false/>
+ <key>Locked</key>
+ <true/> | <false/>
+ </dict>
+ </dict>
+ ```
+ #### JSON
+ ```
+ {
+ "policies": {
+ "FirefoxHome": {
+ "Search": true | false,
+ "TopSites": true | false,
+ "Highlights": true | false,
+ "Pocket": true | false,
+ "Snippets": true | false,
+ "Locked": true | false
+ }
+ }
+ }
+ ```
### HardwareAcceleration
Control hardware acceleration.
}
}
```
+ ### LocalFileLinks
+ Enable linking to local files by origin.
+
+ **Compatibility:** Firefox 68, Firefox ESR 68\
+ **CCK2 Equivalent:** N/A\
+ **Preferences Affected:** `capability.policy.localfilelinks.*`
+
+ #### Windows
+ ```
+ Software\Policies\Mozilla\Firefox\LocalFileLinks\1 = "https://example.org"
+ Software\Policies\Mozilla\Firefox\LocalFileLinks\2 = "https://example.edu"
+ ```
+ #### macOS
+ ```
+ <dict>
+ <key>LocalFileLinks</key>
+ <array>
+ <string>http://example.org</string>
+ <string>http://example.edu</string>
+ </array>
+ </dict>
+ ```
+ #### JSON
+ ```
+ {
+ "policies": {
+ "LocalFileLinks": ["http://example.org/",
+ "http://example.edu/"]
+ }
+ }
+ ```
### NoDefaultBookmarks
Disable the creation of default bookmarks.
}
```
### NetworkPrediction
- Enable or disable network prediction (DNS prefetching).
+ Enable or disable network prediction (DNS prefetching).
**Compatibility:** Firefox 67, Firefox ESR 60.7\
**CCK2 Equivalent:** N/A\
"NetworkPrediction": true | false
}
```
+ ### NewTabPage
+ Enable or disable the New Tab page.
+
+ **Compatibility:** Firefox 68, Firefox ESR 68\
+ **CCK2 Equivalent:** N/A\
+ **Preferences Affected:** `browser.newtabpage.enabled`
+
+ #### Windows
+ ```
+ Software\Policies\Mozilla\Firefox\NewTabPage = 0x1 | 0x0
+ ```
+ #### macOS
+ ```
+ <dict>
+ <key>NewTabPage</key>
+ <true/> | <false/>
+ </dict>
+ ```
+ #### JSON
+ ```
+ {
+ "policies": {
+ "NewTabPage": true | false
+ }
+ ```
### OfferToSaveLogins
Control whether or not Firefox offers to save passwords.
```
{
"policies": {
- "OverrideFirstRunPage": ""http://example.org""
+ "OverrideFirstRunPage": "http://example.org"
}
```
### OverridePostUpdatePage
```
{
"policies": {
- "OverridePostUpdatePage": ""http://example.org""
+ "OverridePostUpdatePage": "http://example.org"
}
```
### Permissions
}
}
```
+ ### Preferences
+ Set and lock certain preferences.
+
+ **Compatibility:** See below\
+ **CCK2 Equivalent:** `preferences`\
+ **Preferences Affected:** See below
+
+ | Preference | Type | Compatibility
+ | --- | --- | ---
+ | app.update.auto | boolean | Firefox 68, Firefox 68 ESR
+ | browser.cache.disk.enable | boolean | Firefox 68, Firefox 68 ESR
+ | browser.cache.disk.parent_directory | string | Firefox 68, Firefox 68 ESR
+ | browser.fixup.dns_first_for_single_words | boolean | Firefox 68, Firefox 68 ESR
+ | browser.search.update | boolean | Firefox 68, Firefox 68 ESR
+ | browser.tabs.warnOnClose | boolean | Firefox 68, Firefox 68 ESR
+ | browser.urlbar.suggest.bookmark | boolean | Firefox 68, Firefox 68 ESR
+ | browser.urlbar.suggest.history | boolean | Firefox 68, Firefox 68 ESR
+ | browser.urlbar.suggest.openpage | boolean | Firefox 68, Firefox 68 ESR
+ | datareporting.policy.dataSubmissionPolicyBypassNotification | boolean | Firefox 68, Firefox 68 ESR
+ | dom.disable_window_flip | boolean | Firefox 68, Firefox 68 ESR
+ | dom.disable_window_move_resize | boolean | Firefox 68, Firefox 68 ESR
+ | dom.event.contextmenu.enabled | boolean | Firefox 68, Firefox 68 ESR
+ | dom.keyboardevent.keypress.hack.dispatch_non_printable_keys.addl | string | Firefox 68, Firefox 68 ESR
+ | dom.keyboardevent.keypress.hack.use_legacy_keycode_and_charcode.addl | string | Firefox 68, Firefox 68 ESR
+ | extensions.getAddons.showPane | boolean | Firefox 68, Firefox 68 ESR
+ | media.gmp-gmpopenh264.enabled | boolean | Firefox 68, Firefox 68 ESR
+ | media.gmp-widevinecdm.enabled | boolean | Firefox 68, Firefox 68 ESR
+ | network.dns.disableIPv6 | boolean | Firefox 68, Firefox 68 ESR
+ | network.IDN_show_punycode | boolean | Firefox 68, Firefox 68 ESR
+ | places.history.enabled | boolean | Firefox 68, Firefox 68 ESR
+ | security.default_personal_cert | string | Firefox 68, Firefox 68 ESR
+ | security.ssl.errorReporting.enabled | boolean | Firefox 68, Firefox 68 ESR
+ | ui.key.menuAccessKeyFocuses | boolean | Firefox 68, Firefox 68 ESR
+ #### Windows
+ ```
+ Software\Policies\Mozilla\Firefox\Preferences\boolean_preference_name = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\Preferences\string_preference_name = "string_value"
+ ```
+ #### macOS
+ ```
+ <dict>
+ <key>Preferences</key>
+ <dict>
+ <key>boolean_preference_name</key>
+ <true/> | <false/>
+ <key>string_preference_name</key>
+ <string>string_value</string>
+ </dict>
+ </dict>
+ ```
+ #### JSON
+ ```
+ {
+ "policies": {
+ "Preferences": {
+ "boolean_preference_name": true | false,
+ "string_preference_name": "string_value"
+ }
+ }
+ }
+ ```
+ ### PromptForDownloadLocation
+ Ask where to save each file before downloading.
+
+ **Compatibility:** Firefox 68, Firefox ESR 68\
+ **CCK2 Equivalent:** N/A
+ **Preferences Affected:** `browser.download.useDownloadDir`
+
+ #### Windows
+ ```
+ Software\Policies\Mozilla\Firefox\PromptForDownloadLocation = 0x1 | 0x0
+ ```
+ #### macOS
+ ```
+ <dict>
+ <key>PromptForDownloadLocation</key>
+ <true/> | <false/>
+ </dict>
+ ```
+ #### JSON
+ ```
+ {
+ "policies": {
+ "PromptForDownloadLocation": true | false
+ }
+ }
+ ```
### Proxy
- Configugre proxy settings. These settings correspond to the connection settings in Firefox preferences.
+ Configure proxy settings. These settings correspond to the connection settings in Firefox preferences.
To specify ports, append them to the hostnames with a colon (:).
`Mode` is the proxy method being used.
### RequestedLocales
Set the the list of requested locales for the application in order of preference. It will cause the corresponding language pack to become active.
- **Compatibility:** Firefox 64, Firefox ESR 60.4\
+ Note: For Firefox 68, this can now be a string so that you can specify an empty value.
+
+ **Compatibility:** Firefox 64, Firefox ESR 60.4, Updated in Firefox 68, Firefox ESR 68\
**CCK2 Equivalent:** N/A\
**Preferences Affected:** N/A
#### Windows
```
Software\Policies\Mozilla\Firefox\RequestedLocales\1 = "de"
Software\Policies\Mozilla\Firefox\RequestedLocales\2 = "en-US"
+
+ or
+
+ Software\Policies\Mozilla\Firefox\RequestedLocales = "de,en-US"
```
#### macOS
```
<string>en-US</string>
</array>
</dict>
+
+ or
+
+ <dict>
+ <key>RequestedLocales</key>
+ <string>de,en-US</string>
+ </dict>
+
```
#### JSON
```
"RequestedLocales": ["de", "en-US"]
}
}
+
+ or
+
+ {
+ "policies": {
+ "RequestedLocales": "de,en-US"
+ }
+ }
+ ```
+ ### SanitizeOnShutdown (Selective)
+ Clear data on shutdown. Choose from Cache, Cookies, Download History, Form & Search History, Browsing History, Active Logins, Site Preferences and Offline Website Data.
+
+ **Compatibility:** Firefox 68, Firefox ESR 68\
+ **CCK2 Equivalent:** N/A\
+ **Preferences Affected:** `privacy.sanitize.sanitizeOnShutdown`,`privacy.clearOnShutdown.cache`,`privacy.clearOnShutdown.cookies`,`privacy.clearOnShutdown.downloads`,`privacy.clearOnShutdown.formdata`,`privacy.clearOnShutdown.history`,`privacy.clearOnShutdown.sessions`,`privacy.clearOnShutdown.siteSettings`,`privacy.clearOnShutdown.offlineApps`
+ #### Windows
+ ```
+ Software\Policies\Mozilla\Firefox\SanitizeOnShutdown\Cache = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\SanitizeOnShutdown\Cookies = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\SanitizeOnShutdown\Downloads = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\SanitizeOnShutdown\FormData = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\SanitizeOnShutdown\History = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\SanitizeOnShutdown\Sessions = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\SanitizeOnShutdown\SiteSettings = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\SanitizeOnShutdown\OfflineApps = 0x1 | 0x0
+ ```
+ #### macOS
+ ```
+ <dict>
+ <key>SanitizeOnShutdown</key>
+ <dict>
+ <key>Cache</key>
+ <true/> | <false/>
+ <key>Cookies</key>
+ <true/> | <false/>
+ <key>Downloads</key>
+ <true/> | <false/>
+ <key>FormData</key>
+ <true/> | <false/>
+ <key>History</key>
+ <true/> | <false/>
+ <key>Sessions</key>
+ <true/> | <false/>
+ <key>SiteSettings</key>
+ <true/> | <false/>
+ <key>OfflineApps</key>
+ <true/> | <false/>
+ </dict>
+ </dict>
```
- ### SanitizeOnShutdown
+ #### JSON
+ ```
+ {
+ "policies": {
+ "SanitizeOnShutdown": {
+ "Cache": true | false,
+ "Cookies": true | false,
+ "Downloads": true | false,
+ "FormData": true | false,
+ "History": true | false,
+ "Sessions": true | false,
+ "SiteSettings": true | false,
+ "OfflineApps": true | false
+ }
+ }
+ }
+ ```
+ ### SanitizeOnShutdown (All)
Clear all data on shutdown, including Browsing & Download History, Cookies, Active Logins, Cache, Form & Search History, Site Preferences and Offline Website Data.
**Compatibility:** Firefox 60, Firefox ESR 60\
**CCK2 Equivalent:** N/A\
- **Preferences Affected:** `privacy.sanitize.sanitizeOnShutdown,privacy.clearOnShutdown.cache,privacy.clearOnShutdown.cookies,privacy.clearOnShutdown.downloads,privacy.clearOnShutdown.formdata,privacy.clearOnShutdown.history,privacy.clearOnShutdown.sessions,privacy.clearOnShutdown.siteSettings,privacy.clearOnShutdown.offlineApps`
+ **Preferences Affected:** `privacy.sanitize.sanitizeOnShutdown`,`privacy.clearOnShutdown.cache`,`privacy.clearOnShutdown.cookies`,`privacy.clearOnShutdown.downloads`,`privacy.clearOnShutdown.formdata`,`privacy.clearOnShutdown.history`,`privacy.clearOnShutdown.sessions`,`privacy.clearOnShutdown.siteSettings`,`privacy.clearOnShutdown.offlineApps`
#### Windows
```
Software\Policies\Mozilla\Firefox\SanitizeOnShutdown = 0x1 | 0x0
```
### SearchEngines | Add
- Adddd new search engines (up to five). This policy is only available on the ESR. `Name` and `URLTemplate` are required.
+ Add new search engines (up to five). This policy is only available on the ESR. `Name` and `URLTemplate` are required.
`Name` is the name of the search engine.
`Description` is a description of the search engine.
+ `PostData` is the POST data as name value pairs separated by &.
+
`SuggestURLTemplate` is a search suggestions URL with {searchTerms} to substitute for the search term.
- **Compatibility:** Firefox ESR 60\
+ **Compatibility:** Firefox ESR 60 (POST support in Firefox ESR 68)\
**CCK2 Equivalent:** `searchplugins`\
**Preferences Affected:** N/A
Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\Alias = "example"
Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\Description = "Example Description"
Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\SuggestURLTemplate = "https://www.example.org/suggestions/q={searchTerms}"
+ Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\PostData = "name=value&q={searchTerms}"
#### macOS
```
<string>Example Description</string>
<key>SuggestURLTemplate</key>
<string>https://www.example.org/suggestions/q={searchTerms}</string>
+ <key>PostData</key>
+ <string>name=value&q={searchTerms}</string>
</dict>
<array>
</dict>
"IconURL": "https://www.example.org/favicon.ico",
"Alias": "example",
"Description": "Description",
+ "PostData": "name=value&q={searchTerms}",
"SuggestURLTemplate": "https://www.example.org/suggestions/q={searchTerms}"
}
]
}
}
```
+ ### SearchSuggestEnabled
+
+ Enable search suggestions.
+
+ **Compatibility:** Firefox 68, Firefox ESR 68\
+ **CCK2 Equivalent:** N/A\
+ **Preferences Affected:** `browser.urlbar.suggest.searches`,`browser.search.suggest.enabled`
+
+ ### Windows
+ ```
+ Software\Policies\Mozilla\Firefox\SearchSuggestEnabled = 0x1 | 0x0
+ ```
+ #### macOS
+ ```
+ <dict>
+ <key>SearchSuggestEnabled</key>
+ <true/> | <false/>
+ </dict>
+ ```
+ ### JSON
+ ```
+ {
+ "policies": {
+ "SearchSuggestEnabled": true | false
+ }
+ }
+ ```
### SecurityDevices
Install PKCS #11 modules.
}
}
```
- **Compatibility:** Firefox 68, Firefox ESR 68\
+### SupportMenu
+Add a menuitem to the help menu for specifying support information.
+
++**Compatibility:** Firefox 68.0.1, Firefox ESR 68.0.1\
+**CCK2 Equivalent:** helpMenu\
+**Preferences Affected:** N/A
+
+#### Windows
+```
+Software\Policies\Mozilla\Firefox\SupportMenu\Title = "Support Menu"
+Software\Policies\Mozilla\Firefox\SupportMenu\URL = "http://example.com/support"
+Software\Policies\Mozilla\Firefox\SupportMenu\Title = "S"
+```
+#### macOS
+```
+<dict>
+ <key>SupportMenu</key>
+ <dict>
+ <key>Title</key>
+ <string>SupportMenu</string>
+ <key>URL</key>
+ <string>http://example.com/support</string>
+ <key>AccessKey</key>
+ <string>S</string>
+ </dict>
+</dict>
+```
+### JSON
+```
+{
+ "policies": {
+ "SupportMenu": {
+ "Title": "Support Menu",
+ "URL": "http://example.com/support",
+ "AccessKey": "S"
+ }
+ }
+}
+```
### WebsiteFilter
Block 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 addresses are supported at the moment. The arrays are limited to 1000 entries each.
<key>Locked</key>
<true/>
</dict>
+ <key>DefaultDownloadDirectory</key>
+ <string>${home}/Downloads</string>
+ <key>DownloadDirectory</key>
+ <string>${home}/Downloads</string>
<key>DNSOverHTTPS</key>
<dict>
<key>Enabled</key>
<string>firefox@ghostery.com</string>
</array>
</dict>
+ <key>ExtensionSettings</key>
+ <dict>
+ <key>*</key>
+ <dict>
+ <key>blocked_install_message</key>
+ <string>Custom error message.</string>
+ <key>install_sources</key>
+ <array>
+ <string>https://addons.mozilla.org/</string>
+ </array>
+ <key>installation_mode</key>
+ <string>blocked</string>
+ </dict>
+ <key>uBlock0@raymondhill.net</key>
+ <dict>
+ <key>installation_mode</key>
+ <string>force_installed</string>
+ <key>install_url</key>
+ <string>https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi</string>
+ </dict>
+ </dict>
<key>ExtensionUpdate</key>
<false/>
+ <key>FirefoxHome</key>
+ <dict>
+ <key>Search</key>
+ <true/>
+ <key>TopSites</key>
+ <true/>
+ <key>Highlights</key>
+ <true/>
+ <key>Pocket</key>
+ <false/>
+ <key>Snippets</key>
+ <false/>
+ <key>Locked</key>
+ <true/>
+ </dict>
<key>FlashPlugin</key>
<dict>
<key>Allow</key>
<key>Default</key>
<false/>
</dict>
+ <key>LocalFileLinks</key>
+ <array>
+ <string>http://example.org</string>
+ <string>http://example.edu</string>
+ </array>
<key>NetworkPrediction</key>
<false/>
+ <key>NewTabPage</key>
+ <false/>
<key>NoDefaultBookmarks</key>
<true/>
<key>OfferToSaveLogins</key>
<key>Locked</key>
<true/>
</dict>
+ <key>Preferences</key>
+ <dict>
+ <key>app.update.auto</key>
+ <true/>
+ <key>security.default_personal_cert</key>
+ <string>Ask Every Time</string>
+ </dict>
<key>Proxy</key>
<dict>
<key>SocksVersion</key>
<string>tls1.2</string>
<key>SSLVersionMax</key>
<string>tls1.3</string>
+ <key>SupportMenu</key>
+ <dict>
+ <key>Title</key>
+ <string>Click here for help</string>
+ <key>URL</key>
+ <string>http://example.edu/</string>
+ <key>AccessKey</key>
+ <string>C</string>
+ </dict>
</dict>
</plist>
<?xml version="1.0" encoding="utf-8"?>
- <policyDefinitionResources revision="1.5" schemaVersion="1.0" >
+ <policyDefinitionResources revision="1.6" schemaVersion="1.0" >
<displayName/>
<description/>
<resources >
<string id="SUPPORTED_FF64">Firefox 64 or later, Firefox 60.4 ESR or later</string>
<string id="SUPPORTED_FF66">Firefox 66 or later, Firefox 60.6 ESR or later</string>
<string id="SUPPORTED_FF67">Firefox 67 or later, Firefox 60.7 ESR or later</string>
+ <string id="SUPPORTED_FF68">Firefox 68 or later, Firefox 68 ESR or later</string>
<string id="SUPPORTED_FF60ESR">Firefox 60 ESR or later</string>
<string id="firefox">Firefox</string>
<string id="Permissions_group">Permissions</string>
<string id="Flash_group">Flash</string>
<string id="Homepage_group">Home page</string>
<string id="Search_group">Search</string>
+ <string id="Preferences_group">Preferences</string>
<string id="Allow">Allowed Sites</string>
<string id="Block">Blocked Sites</string>
<string id="AppUpdateURL">Custom Update URL</string>
<string id="Certificates_Install_Explain">If this policy is enabled, Firefox will install the listed certificates into Firefox. It will look in %USERPROFILE%\AppData\Local\Mozilla\Certificates and %USERPROFILE%\AppData\Roaming\Mozilla\Certificates.
If this policy is disabled or not configured, Firefox will not install additional certificates.</string>
+ <string id="DefaultDownloadDirectory">Default Download Directory</string>
+ <string id="DefaultDownloadDirectory_Explain">If this policy is enabled, you can set the default directory for downloads. ${home} can be used for the native home path.
+
+ If this policy is disabled or not configured, the default Firefox download directory is used.</string>
+ <string id="DownloadDirectory">Download Directory</string>
+ <string id="DownloadDirectory_Explain">If this policy is enabled, you can set and lock the directory for downloads. ${home} can be used for the native home path.
+
+ If this policy is disabled or not configured, the default Firefox download directory is used and the user can change it.</string>
<string id="DNSOverHTTPS">Configure DNS Over HTTPS</string>
<string id="DNSOverHTTPS_Explain">If this policy is enabled, the default configuration for DNS over HTTPS can be changed.
<string id="HardwareAcceleration_Explain">If this policy is disabled, hardware acceleration and cannot be enabled.
If this policy is enabled or not configured, hardware acceleration is enabled.</string>
+ <string id="LocalFileLinks">Local File Links</string>
+ <string id="LocalFileLinks_Explain">If this policy is enabled, you can specify origins where linking to local files is allowed.
+
+ If this policy is disabled or not configured, websites can't link to local files.</string>
<string id="NetworkPrediction">Network Prediction</string>
<string id="NetworkPrediction_Explain">If this policy is disabled, network prediction (DNS prefetching) will be disabled.
If this policy is enabled or not configured, network prediction (DNS prefetching) will be enabled.</string>
+ <string id="NewTabPage">New Tab Page</string>
+ <string id="NewTabPage_Explain">If this policy is disabled, the new tab page will be blank.
+
+ If this policy is enabled or not configured, the new tab page will be the default.</string>
<string id="OfferToSaveLogins">Offer to save logins</string>
<string id="OfferToSaveLogins_Explain">If this policy is enabled or not configured, Firefox will offer to save website logins and passwords.
<string id="Notifications_Locked_Explain">If this policy is enabled, notification preferences cannot be changed by the user.
If this policy is disabled or not configured, the user can change their notification preferences.</string>
+ <string id="FirefoxHome">Customize Firefox Home</string>
+ <string id="FirefoxHome_Explain">If this policy is enabled, you can choose the sections displayed on Firefox Home and prevent the user from changing them.
+
+ If this policy is disabled or not configured, the default sections are displayed and the user can change them.</string>
<string id="FlashPlugin_Allow_Explain">If this policy is enabled, Flash is activated by default for the origins indicated unless Flash is completely disabled. If a top level domain is specified (http://example.org), Flash is allowed for all subdomains as well.
If this policy is disabled or not configured, the default Flash policy is followed.</string>
<string id="OverridePostUpdatePage_Explain">If this policy is enabled, you can specify a URL to be displayed after Firefox is updated. If you leave the URL blank, no upgrade page will be shown.
If this policy is disabled or not configured, the upgrade is displayed.</string>
- <string id="SanitizeOnShutdown">Clear all data when browser is closed</string>
- <string id="SanitizeOnShutdown_Explain">If this policy is enabled, all data is cleared when Firefox is closed. This includes Browsing & Download History, Cookies, Active Logins, Cache, Form & Search History, Site Preferences and Offline Website Data.
+ <string id="SanitizeOnShutdown">Clear data when browser is closed</string>
+ <string id="SanitizeOnShutdown_Explain">If this policy is enabled, you can choose data to be cleared when Firefox is closed.
If this policy is disabled or not configured, data is not cleared when the browser is closed.</string>
<string id="WebsiteFilter_Block">Blocked websites</string>
<string id="None">None</string>
<string id="Homepage">Homepage</string>
<string id="PreviousSession">Previous Session</string>
+ <string id="PromptForDownloadLocation">Prompt for download location</string>
+ <string id="PromptForDownloadLocation_Explain">If this policy is disabled, the user is not prompted for a download location.
+
+ If this policy is enabled, the user is always prompted for a download location.
+
+ If this policy is not configured, the user is prompted for a download location, but can change the default.</string>
<string id="Proxy">Proxy Settings</string>
<string id="Proxy_Explain">If this policy is enabled, you can configure and lock network settings.
If this policy is enabled, private browsing is enabled by default in both the browser and private browsing and you can choose whether or not to prevent the user from changing it.</string>
<string id="RequestedLocales">Requested locale</string>
+ <string id="RequestedLocalesString">Requested locale (string)</string>
<string id="RequestedLocales_Explain">If this policy is enabled, you can specify a list of requested locales for the application in order of preference. It will cause the corresponding language pack to become active.
If this policy is disabled or not configured, the application will use the default locale.</string>
<string id="SearchEngines_Remove_Explain">If this policy is enabled, you can specify the names of engines to be removed or hidden.
If this policy is disabled or not configured, search engines will not be removed or hidden.</string>
+ <string id="SearchSuggestEnabled">Search Suggestions</string>
+ <string id="SearchSuggestEnabled_Explain">If this policy is disabled, search suggestions will be disabled.
+
+ If this policy is enabled, search suggestions will be enabled.
+
+ If this policy is not configured, search suggestions will be enabled, but the user can turn them off.</string>
<string id="SSLVersionMin">Minimum SSL version enabled</string>
<string id="SSLVersionMin_Explain">If this policy is enabled, Firefox will not use SSL/TLS versions less than the value specified.
<string id="SSLVersionMax_Explain">If this policy is enabled, Firefox will not use SSL/TLS versions greater than the value specified.
If this policy is disabled or not configured, Firefox defaults to a maximum of TLS 1.3.</string>
+ <string id="SupportMenu">Support Menu</string>
+ <string id="SupportMenu_Explain">If this policy is enabled, a new menuitem is added to the help menu with support information.
+
+If this policy is disabled or not configured, no menuitem is added.</string>
<string id="TLS1">TLS 1.0</string>
<string id="TLS1_1">TLS 1.1</string>
<string id="TLS1_2">TLS 1.2</string>
<string id="TLS1_3">TLS 1.3</string>
+ <string id="Preferences_Boolean_Explain">If this policy is enabled, the preference is locked to true. If this policy is disabled, the preference is locked to false.</string>
+ <string id="Preferences_String_Explain">If this policy is enabled, the preference is locked to the string entered. If this policy is disabled, it has no effect.</string>
+ <string id="Preferences_Enum_Explain">If this policy is enabled, the preference is locked to the value selected. If this policy is disabled, it has no effect.</string>
+ <string id="Preferences_security_default_personal_cert_Ask_Every_Time">Ask Every Time</string>
+ <string id="Preferences_security_default_personal_cert_Select_Automatically">Select Automatically</string>
+ <string id="app_update_auto">app.update.auto</string>
+ <string id="browser_cache_disk_enable">browser.cache.disk.enable</string>
+ <string id="browser_fixup_dns_first_for_single_words">browser.fixup.dns_first_for_single_words</string>
+ <string id="browser_search_update">browser.search.update</string>
+ <string id="browser_tabs_warnOnClose">browser.tabs.warnOnClose</string>
+ <string id="browser_cache_disk_parent_directory">browser.cache.disk.parent_directory</string>
+ <string id="browser_urlbar_suggest_bookmark">browser.urlbar.suggest.bookmark</string>
+ <string id="browser_urlbar_suggest_history">browser.urlbar.suggest.history</string>
+ <string id="browser_urlbar_suggest_openpage">browser.urlbar.suggest.openpage</string>
+ <string id="datareporting_policy_dataSubmissionPolicyBypassNotification">datareporting.policy.dataSubmissionPolicyBypassNotification</string>
+ <string id="dom_disable_window_flip">browser.dom.disable_window_flip</string>
+ <string id="dom_disable_window_move_resize">dom.disable_window_move_resize</string>
+ <string id="dom_event_contextmenu_enabled">dom.event.contextmenu.enabled</string>
+ <string id="dom_keyboardevent_keypress_hack_dispatch_non_printable_keys_addl">dom.keyboardevent.keypress.hack.dispatch_non_printable_keys.addl</string>
+ <string id="dom_keyboardevent_keypress_hack_use_legacy_keycode_and_charcode_addl">dom.keyboardevent.keypress.hack.use_legacy_keycode_and_charcode.addl</string>
+ <string id="extensions_getAddons_showPane">extensions.getAddons.showPane</string>
+ <string id="media_gmp-gmpopenh264_enabled">media.gmp-gmpopenh264.enabled</string>
+ <string id="media_gmp-widevinecdm_enabled">media.gmp-widevinecdm.enabled</string>
+ <string id="network_dns_disableIPv6">network.dns.disableIPv6</string>
+ <string id="network_IDN_show_punycode">network.IDN_show_punycode</string>
+ <string id="places_history_enabled">places.history.enabled</string>
+ <string id="security_default_personal_cert">security.default_personal_cert</string>
+ <string id="security_ssl_errorReporting_enabled">security.ssl.errorReporting.enabled</string>
+ <string id="ui_key_menuAccessKeyFocuses">ui.key.menuAccessKeyFocuses</string>
</stringTable>
<presentationTable>
<presentation id="AppUpdateURL">
<textBox refId="SearchEngine_SuggestURLTemplate">
<label>Suggest URL Template:</label>
</textBox>
+ <textBox refId="SearchEngine_PostData">
+ <label>POST data:</label>
+ </textBox>
</presentation>
<presentation id="SearchEngines_Default">
<textBox refId="SearchEngines_Default">
<presentation id="SSLVersion">
<dropdownList refId="SSLVersion"/>
</presentation>
+ <presentation id="SupportMenu">
+ <text>Title:</text>
+ <textBox refId="SupportMenuTitle">
+ <label/>
+ </textBox>
+ <text>URL:</text>
+ <textBox refId="SupportMenuURL">
+ <label/>
+ </textBox>
+ <text>Access key:</text>
+ <textBox refId="SupportMenuAccessKey">
+ <label/>
+ </textBox>
+ </presentation>
+ <presentation id="Preferences_String">
+ <textBox refId="Preferences_String">
+ <label/>
+ </textBox>
+ </presentation>
+ <presentation id="Preferences_security_default_personal_cert">
+ <dropdownList refId="Preferences_security_default_personal_cert"/>
+ </presentation>
+ <presentation id="LocalFileLinks">
+ <listBox refId="LocalFileLinks"/>
+ </presentation>
+ <presentation id="SanitizeOnShutdown">
+ <checkBox refId="SanitizeOnShutdown_Cache">Cache</checkBox>
+ <checkBox refId="SanitizeOnShutdown_Cookies">Cookies</checkBox>
+ <checkBox refId="SanitizeOnShutdown_Downloads">Download History</checkBox>
+ <checkBox refId="SanitizeOnShutdown_FormData">Form & Search History</checkBox>
+ <checkBox refId="SanitizeOnShutdown_History">Browsing History</checkBox>
+ <checkBox refId="SanitizeOnShutdown_Sessions">Active Logins</checkBox>
+ <checkBox refId="SanitizeOnShutdown_SiteSettings">Site Preferences</checkBox>
+ <checkBox refId="SanitizeOnShutdown_OfflineApps">Offline Website Data</checkBox>
+ </presentation>
+ <presentation id="FirefoxHome">
+ <checkBox refId="FirefoxHome_Search">Search</checkBox>
+ <checkBox refId="FirefoxHome_TopSites">Top Sites</checkBox>
+ <checkBox refId="FirefoxHome_Highlights">Download History</checkBox>
+ <checkBox refId="FirefoxHome_Pocket">Recommended by Pocket</checkBox>
+ <checkBox refId="FirefoxHome_Snippets">Snippets</checkBox>
+ <checkBox refId="FirefoxHome_Locked">Don't allow settings to be changed</checkBox>
+ </presentation>
</presentationTable>
</resources>
</policyDefinitionResources>
<?xml version="1.0" encoding="utf-8"?>
- <policyDefinitions revision="1.5" schemaVersion="1.0">
+ <policyDefinitions revision="1.6" schemaVersion="1.0">
<policyNamespaces>
<target prefix="firefox" namespace="Mozilla.Policies.Firefox"/>
<using prefix="Mozilla" namespace="Mozilla.Policies"/>
</policyNamespaces>
- <resources minRequiredRevision="1.5"/>
+ <resources minRequiredRevision="1.6"/>
<supportedOn>
<definitions>
<definition name="SUPPORTED_WINXPSP2" displayName="$(string.SUPPORTED_WINXPSP2)"/>
<definition name="SUPPORTED_FF64" displayName="$(string.SUPPORTED_FF64)"/>
<definition name="SUPPORTED_FF66" displayName="$(string.SUPPORTED_FF66)"/>
<definition name="SUPPORTED_FF67" displayName="$(string.SUPPORTED_FF67)"/>
+ <definition name="SUPPORTED_FF68" displayName="$(string.SUPPORTED_FF68)"/>
</definitions>
</supportedOn>
<categories>
<category displayName="$(string.firefox)" name="firefox">
<parentCategory ref="Mozilla:Cat_Mozilla"/>
</category>
-
<category displayName="$(string.Authentication_group)" name="Authentication">
<parentCategory ref="firefox"/>
</category>
<category displayName="$(string.Notifications_group)" name="Notifications">
<parentCategory ref="Permissions"/>
</category>
+ <category displayName="$(string.Preferences_group)" name="Preferences">
+ <parentCategory ref="firefox"/>
+ </category>
</categories>
<policies>
<policy name="Authentication_SPNEGO" class="Both" displayName="$(string.Authentication_SPNEGO)" key="Software\Policies\Mozilla\Firefox\Authentication\SPNEGO" explainText="$(string.Authentication_SPNEGO_Explain)" presentation="$(presentation.Authentication)">
<decimal value="0"/>
</disabledValue>
</policy>
+ <policy name="DefaultDownloadDirectory" class="Both" displayName="$(string.DefaultDownloadDirectory)" explainText="$(string.DefaultDownloadDirectory_Explain)" key="Software\Policies\Mozilla\Firefox" presentation="$(presentation.Preferences_String)">
+ <parentCategory ref="firefox"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <elements>
+ <text id="Preferences_String" valueName="DefaultDownloadDirectory" />
+ </elements>
+ </policy>
+ <policy name="DownloadDirectory" class="Both" displayName="$(string.DownloadDirectory)" explainText="$(string.DownloadDirectory_Explain)" key="Software\Policies\Mozilla\Firefox" presentation="$(presentation.Preferences_String)">
+ <parentCategory ref="firefox"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <elements>
+ <text id="Preferences_String" valueName="DownloadDirectory" />
+ </elements>
+ </policy>
<policy name="DNSOverHTTPS" class="Both" displayName="$(string.DNSOverHTTPS)" explainText="$(string.DNSOverHTTPS_Explain)" key="Software\Policies\Mozilla\Firefox\DNSOverHTTPS" presentation="$(presentation.DNSOverHTTPS)" >
<parentCategory ref="firefox" />
<supportedOn ref="SUPPORTED_FF63ESR" />
<decimal value="0"/>
</disabledValue>
</policy>
+ <policy name="LocalFileLinks" class="Both" displayName="$(string.LocalFileLinks)" explainText="$(string.LocalFileLinks_Explain)" key="Software\Policies\Mozilla\Firefox\LocalFileLinks" presentation="$(presentation.LocalFileLinks)" >
+ <parentCategory ref="firefox" />
+ <supportedOn ref="SUPPORTED_FF68ESR" />
+ <elements >
+ <list id="LocalFileLinks" key="Software\Policies\Mozilla\Firefox\LocalFileLinks" valuePrefix=""/>
+ </elements>
+ </policy>
<policy name="NetworkPrediction" class="Both" displayName="$(string.NetworkPrediction)" explainText="$(string.NetworkPrediction_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="NetworkPrediction">
<parentCategory ref="firefox"/>
<supportedOn ref="SUPPORTED_FF67"/>
<disabledValue>
<decimal value="0"/>
</disabledValue>
- </policy>
+ </policy>
+ <policy name="NewTabPage" class="Both" displayName="$(string.NewTabPage)" explainText="$(string.NewTabPage_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="NewTabPage">
+ <parentCategory ref="firefox"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
<policy name="OfferToSaveLogins" class="Both" displayName="$(string.OfferToSaveLogins)" explainText="$(string.OfferToSaveLogins_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="OfferToSaveLogins">
<parentCategory ref="firefox"/>
<supportedOn ref="SUPPORTED_FF60"/>
<decimal value="0"/>
</disabledValue>
</policy>
+ <policy name="CustomizeFirefoxHome" class="Both" displayName="$(string.FirefoxHome)" explainText="$(string.FirefoxHome_Explain)" key="Software\Policies\Mozilla\Firefox" presentation="$(presentation.FirefoxHome)" >
+ <parentCategory ref="firefox"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <elements >
+ <boolean id="FirefoxHome_Search" key="Software\Policies\Mozilla\Firefox\FirefoxHome" valueName="Search">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ <boolean id="FirefoxHome_TopSites" key="Software\Policies\Mozilla\Firefox\FirefoxHome" valueName="TopSites">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ <boolean id="FirefoxHome_Highlights" key="Software\Policies\Mozilla\Firefox\FirefoxHome" valueName="Highlights">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ <boolean id="FirefoxHome_Pocket" key="Software\Policies\Mozilla\Firefox\FirefoxHome" valueName="Pocket">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ <boolean id="FirefoxHome_Snippets" key="Software\Policies\Mozilla\Firefox\FirefoxHome" valueName="Snippets">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ <boolean id="FirefoxHome_Locked" key="Software\Policies\Mozilla\Firefox\FirefoxHome" valueName="Locked">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ </elements>
+ </policy>
<policy name="FlashPlugin_Allow" class="Both" displayName="$(string.Allow)" explainText="$(string.FlashPlugin_Allow_Explain)" key="Software\Policies\Mozilla\Firefox" presentation="$(presentation.Permissions)">
<parentCategory ref="Flash"/>
<supportedOn ref="SUPPORTED_FF60"/>
<text id="OverridePage" valueName="OverridePostUpdatePage"/>
</elements>
</policy>
+ <policy name="PromptForDownloadLocation" class="Both" displayName="$(string.PromptForDownloadLocation)" explainText="$(string.PromptForDownloadLocation_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="PromptForDownloadLocation">
+ <parentCategory ref="firefox"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
<!-- Alphabetization is based on name, so had to add P -->
<policy name="P_DisableSecurityBypass_InvalidCertificate" class="Both" displayName="$(string.DisableSecurityBypass_InvalidCertificate)" explainText="$(string.DisableSecurityBypass_InvalidCertificate_Explain)" key="Software\Policies\Mozilla\Firefox\DisableSecurityBypass" valueName="InvalidCertificate">
<parentCategory ref="firefox"/>
</disabledValue>
</policy>
<!-- Alphabetization is based on name, so had to add C -->
- <policy name="C_SanitizeOnShutdown" class="Both" displayName="$(string.SanitizeOnShutdown)" explainText="$(string.SanitizeOnShutdown_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="SanitizeOnShutdown">
+ <policy name="C_SanitizeOnShutdown" class="Both" displayName="$(string.SanitizeOnShutdown)" explainText="$(string.SanitizeOnShutdown_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="SanitizeOnShutdown" presentation="$(presentation.SanitizeOnShutdown)" >
<parentCategory ref="firefox"/>
- <supportedOn ref="SUPPORTED_FF60"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
<enabledValue>
<decimal value="1"/>
</enabledValue>
<disabledValue>
<decimal value="0"/>
</disabledValue>
+ <elements >
+ <boolean id="SanitizeOnShutdown_Cache" key="Software\Policies\Mozilla\Firefox\SanitizeOnShutdown" valueName="Cache">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ <boolean id="SanitizeOnShutdown_Cookies" key="Software\Policies\Mozilla\Firefox\SanitizeOnShutdown" valueName="Cookies">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ <boolean id="SanitizeOnShutdown_Downloads" key="Software\Policies\Mozilla\Firefox\SanitizeOnShutdown" valueName="Downloads">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ <boolean id="SanitizeOnShutdown_FormData" key="Software\Policies\Mozilla\Firefox\SanitizeOnShutdown" valueName="FormData">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ <boolean id="SanitizeOnShutdown_History" key="Software\Policies\Mozilla\Firefox\SanitizeOnShutdown" valueName="History">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ <boolean id="SanitizeOnShutdown_Sessions" key="Software\Policies\Mozilla\Firefox\SanitizeOnShutdown" valueName="Sessions">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ <boolean id="SanitizeOnShutdown_SiteSettings" key="Software\Policies\Mozilla\Firefox\SanitizeOnShutdown" valueName="SiteSettings">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ <boolean id="SanitizeOnShutdown_OfflineApps" key="Software\Policies\Mozilla\Firefox\SanitizeOnShutdown" valueName="OfflineApps">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ </elements>
</policy>
<policy name="HomepageURL" class="Both" displayName="$(string.HomepageURL)" explainText="$(string.HomepageURL_Explain)" key="Software\Policies\Mozilla\Firefox\Homepage" presentation="$(presentation.HomepageURL)" >
<parentCategory ref="Homepage" />
</enum>
</elements>
</policy>
+ <policy name="SearchSuggestEnabled" class="Both" displayName="$(string.SearchSuggestEnabled)" explainText="$(string.SearchSuggestEnabled_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="SearchSuggestEnabled">
+ <parentCategory ref="Search"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
<policy name="TrackingProtection" class="Both" displayName="$(string.TrackingProtection)" explainText="$(string.TrackingProtection_Explain)" key="Software\Policies\Mozilla\Firefox\EnableTrackingProtection" valueName="Value" presentation="$(presentation.TrackingProtection)">
<parentCategory ref="firefox"/>
<supportedOn ref="SUPPORTED_FF60"/>
<text id="SearchEngine_Alias" valueName="Alias"/>
<text id="SearchEngine_Description" valueName="Description"/>
<text id="SearchEngine_SuggestURLTemplate" valueName="SuggestURLTemplate"/>
+ <text id="SearchEngine_PostData" valueName="PostData"/>
</elements>
</policy>
<policy name="SearchEngines_2" class="Both" displayName="$(string.SearchEngines_2)" explainText="$(string.SearchEngines_Explain)" key="Software\Policies\Mozilla\Firefox\SearchEngines\Add\2" presentation="$(presentation.SearchEngine)" >
<text id="SearchEngine_Alias" valueName="Alias"/>
<text id="SearchEngine_Description" valueName="Description"/>
<text id="SearchEngine_SuggestURLTemplate" valueName="SuggestURLTemplate"/>
+ <text id="SearchEngine_PostData" valueName="PostData"/>
</elements>
</policy>
<policy name="SearchEngines_3" class="Both" displayName="$(string.SearchEngines_3)" explainText="$(string.SearchEngines_Explain)" key="Software\Policies\Mozilla\Firefox\SearchEngines\Add\3" presentation="$(presentation.SearchEngine)" >
<text id="SearchEngine_Alias" valueName="Alias"/>
<text id="SearchEngine_Description" valueName="Description"/>
<text id="SearchEngine_SuggestURLTemplate" valueName="SuggestURLTemplate"/>
+ <text id="SearchEngine_PostData" valueName="PostData"/>
</elements>
</policy>
<policy name="SearchEngines_4" class="Both" displayName="$(string.SearchEngines_4)" explainText="$(string.SearchEngines_Explain)" key="Software\Policies\Mozilla\Firefox\SearchEngines\Add\4" presentation="$(presentation.SearchEngine)" >
<text id="SearchEngine_Alias" valueName="Alias"/>
<text id="SearchEngine_Description" valueName="Description"/>
<text id="SearchEngine_SuggestURLTemplate" valueName="SuggestURLTemplate"/>
+ <text id="SearchEngine_PostData" valueName="PostData"/>
</elements>
</policy>
<policy name="SearchEngines_5" class="Both" displayName="$(string.SearchEngines_5)" explainText="$(string.SearchEngines_Explain)" key="Software\Policies\Mozilla\Firefox\SearchEngines\Add\5" presentation="$(presentation.SearchEngine)" >
<text id="SearchEngine_Alias" valueName="Alias"/>
<text id="SearchEngine_Description" valueName="Description"/>
<text id="SearchEngine_SuggestURLTemplate" valueName="SuggestURLTemplate"/>
+ <text id="SearchEngine_PostData" valueName="PostData"/>
</elements>
</policy>
<policy name="SearchEngines_Default" class="Both" displayName="$(string.SearchEngines_Default)" explainText="$(string.SearchEngines_Default_Explain)" key="Software\Policies\Mozilla\Firefox\SearchEngines" presentation="$(presentation.SearchEngines_Default)" >
<list id="RequestedLocales" key="Software\Policies\Mozilla\Firefox\RequestedLocales" valuePrefix=""/>
</elements>
</policy>
+ <policy name="RequestedLocalesString" class="Both" displayName="$(string.RequestedLocalesString)" explainText="$(string.RequestedLocales_Explain)" key="Software\Policies\Mozilla\Firefox" presentation="$(presentation.Preferences_String)" >
+ <parentCategory ref="firefox" />
+ <supportedOn ref="SUPPORTED_FF68" />
+ <elements >
+ <text id="Preferences_String" valueName="RequestedLocales"/>
+ </elements>
+ </policy>
<policy name="SSLVersionMin" class="Both" displayName="$(string.SSLVersionMin)" explainText="$(string.SSLVersionMin_Explain)" key="Software\Policies\Mozilla\Firefox" presentation="$(presentation.SSLVersion)" >
<parentCategory ref="firefox" />
<supportedOn ref="SUPPORTED_FF66" />
</enum>
</elements>
</policy>
+ <policy name="SupportMenu" class="Both" displayName="$(string.SupportMenu)" explainText="$(string.SupportMenu_Explain)" key="Software\Policies\Mozilla\Firefox\SupportMenu" presentation="$(presentation.SupportMenu)" >
+ <parentCategory ref="firefox" />
+ <supportedOn ref="SUPPORTED_FF67" />
+ <elements >
+ <text id="SupportMenuTitle" valueName="Title" required="true" />
+ <text id="SupportMenuURL" valueName="URL" required="true" />
+ <text id="SupportMenuAccessKey" valueName="AccessKey" />
+ </elements>
+ </policy>
+ <policy name="app.update.auto" class="Both" displayName="$(string.app_update_auto)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="app.update.auto">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="browser.cache.disk.enable" class="Both" displayName="$(string.browser_cache_disk_enable)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="browser.cache.disk.enable">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="browser.fixup.dns_first_for_single_words" class="Both" displayName="$(string.browser_fixup_dns_first_for_single_words)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="browser.fixup.dns_first_for_single_words">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="browser.search.update" class="Both" displayName="$(string.browser_search_update)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="browser.search.update">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="browser.tabs.warnOnClose" class="Both" displayName="$(string.browser_tabs_warnOnClose)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="browser.tabs.warnOnClose">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="browser.urlbar.suggest.bookmark" class="Both" displayName="$(string.browser_urlbar_suggest_bookmark)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="browser.urlbar.suggest.bookmark">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="browser.urlbar.suggest.history" class="Both" displayName="$(string.browser_urlbar_suggest_history)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="browser.urlbar.suggest.history">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="browser.urlbar.suggest.openpage" class="Both" displayName="$(string.browser_urlbar_suggest_openpage)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="browser.urlbar.suggest.openpage">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="datareporting.policy.dataSubmissionPolicyBypassNotification" class="Both" displayName="$(string.datareporting_policy_dataSubmissionPolicyBypassNotification)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="datareporting.policy.dataSubmissionPolicyBypassNotification">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="dom.disable_window_flip" class="Both" displayName="$(string.dom_disable_window_flip)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="browser.dom.disable_window_flip">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="dom.disable_window_move_resize" class="Both" displayName="$(string.dom_disable_window_move_resize)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="dom.disable_window_move_resize">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="dom.event.contextmenu.enabled" class="Both" displayName="$(string.dom_event_contextmenu_enabled)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="dom.event.contextmenu.enabled">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="extensions.getAddons.showPane" class="Both" displayName="$(string.extensions_getAddons_showPane)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="extensions.getAddons.showPane">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="media.gmp-gmpopenh264.enabled" class="Both" displayName="$(string.media_gmp-gmpopenh264_enabled)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="media.gmp-gmpopenh264.enabled">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="media.gmp-widevinecdm.enabled" class="Both" displayName="$(string.media_gmp-widevinecdm_enabled)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="media.gmp-widevinecdm.enabled">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="network.dns.disableIPv6" class="Both" displayName="$(string.network_dns_disableIPv6)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="network.dns.disableIPv6">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="network.IDN_show_punycode" class="Both" displayName="$(string.network_IDN_show_punycode)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="network.IDN_show_punycode">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="places.history.enabled" class="Both" displayName="$(string.places_history_enabled)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="places.history.enabled">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="security.ssl.errorReporting.enabled" class="Both" displayName="$(string.security_ssl_errorReporting_enabled)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="security.ssl.errorReporting.enabled">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="ui.key.menuAccessKeyFocuses" class="Both" displayName="$(string.ui_key_menuAccessKeyFocuses)" explainText="$(string.Preferences_Boolean_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" valueName="ui.key.menuAccessKeyFocuses">
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="browser.cache.disk.parent_directory" class="Both" displayName="$(string.browser_cache_disk_parent_directory)" explainText="$(string.AppUpdateURL_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" presentation="$(presentation.Preferences_String)" >
+ <parentCategory ref="Preferences" />
+ <supportedOn ref="SUPPORTED_FF68" />
+ <elements >
+ <text id="Preferences_String" valueName="browser.cache.disk.parent_directory" required="true" />
+ </elements>
+ </policy>
+ <policy name="dom.keyboardevent.keypress.hack.dispatch_non_printable_keys.addl" class="Both" displayName="$(string.dom_keyboardevent_keypress_hack_dispatch_non_printable_keys_addl)" explainText="$(string.AppUpdateURL_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" presentation="$(presentation.Preferences_String)" >
+ <parentCategory ref="Preferences" />
+ <supportedOn ref="SUPPORTED_FF68" />
+ <elements >
+ <text id="Preferences_String" valueName="dom.keyboardevent.keypress.hack.dispatch_non_printable_keys.addl" required="true" />
+ </elements>
+ </policy>
+ <policy name="dom.keyboardevent.keypress.hack.use_legacy_keycode_and_charcode.addl" class="Both" displayName="$(string.dom_keyboardevent_keypress_hack_use_legacy_keycode_and_charcode_addl)" explainText="$(string.AppUpdateURL_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" presentation="$(presentation.Preferences_String)" >
+ <parentCategory ref="Preferences" />
+ <supportedOn ref="SUPPORTED_FF68" />
+ <elements >
+ <text id="Preferences_String" valueName="dom.keyboardevent.keypress.hack.use_legacy_keycode_and_charcode.addl" required="true" />
+ </elements>
+ </policy>
+ <policy name="security.default_personal_cert" class="Both" displayName="$(string.security_default_personal_cert)" explainText="$(string.Preferences_Enum_Explain)" key="Software\Policies\Mozilla\Firefox\Preferences" presentation="$(presentation.Preferences_security_default_personal_cert)" >
+ <parentCategory ref="Preferences"/>
+ <supportedOn ref="SUPPORTED_FF68"/>
+ <elements>
+ <enum id="Preferences_security_default_personal_cert" valueName="security.default_personal_cert">
+ <item displayName="$(string.Preferences_security_default_personal_cert_Ask_Every_Time)">
+ <value>
+ <string>Ask Every Time</string>
+ </value>
+ </item>
+ <item displayName="$(string.Preferences_security_default_personal_cert_Select_Automatically)">
+ <value>
+ <string>Select Automatically</string>
+ </value>
+ </item>
+ </enum>
+ </elements>
+ </policy>
</policies>
</policyDefinitions>
-