| **[`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.
+| **[`Preferences`](#preferences)** | Set and lock some preferences.
| **[`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.
}
}
```
+### 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>Preference</key>
+ <dict>
+ <key>boolean_preference_name</key>
+ <true/> | <false/>
+ <key>string_preference_name</key>
+ <string>string_value</string>
+ </dict>
+</dict>
+```
+#### JSON
+```
+{
+ "policies": {
+ "Preference": {
+ "boolean_preference_name": true | false,
+ "string_preference_name": "string_value"
+ }
+ }
+}
+```
### Proxy
Configugre proxy settings. These settings correspond to the connection settings in Firefox preferences.
To specify ports, append them to the hostnames with a colon (:).
<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">
<presentation id="SSLVersion">
<dropdownList refId="SSLVersion"/>
</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>
</presentationTable>
</resources>
</policyDefinitionResources>
<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="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">
<presentation id="SSLVersion">
<dropdownList refId="SSLVersion"/>
</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>
</presentationTable>
</resources>
</policyDefinitionResources>
<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">
<presentation id="SSLVersion">
<dropdownList refId="SSLVersion"/>
</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>
</presentationTable>
</resources>
</policyDefinitionResources>
<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)">
</enum>
</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>
-
<string id="TLS1_1">TLS 1.1</string>\r
<string id="TLS1_2">TLS 1.2</string>\r
<string id="TLS1_3">TLS 1.3</string>\r
+ <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>\r
+ <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>\r
+ <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>\r
+ <string id="Preferences_security_default_personal_cert_Ask_Every_Time">Ask Every Time</string>\r
+ <string id="Preferences_security_default_personal_cert_Select_Automatically">Select Automatically</string>\r
+ <string id="app_update_auto">app.update.auto</string>\r
+ <string id="browser_cache_disk_enable">browser.cache.disk.enable</string>\r
+ <string id="browser_fixup_dns_first_for_single_words">browser.fixup.dns_first_for_single_words</string>\r
+ <string id="browser_search_update">browser.search.update</string>\r
+ <string id="browser_tabs_warnOnClose">browser.tabs.warnOnClose</string>\r
+ <string id="browser_cache_disk_parent_directory">browser.cache.disk.parent_directory</string>\r
+ <string id="browser_urlbar_suggest_bookmark">browser.urlbar.suggest.bookmark</string>\r
+ <string id="browser_urlbar_suggest_history">browser.urlbar.suggest.history</string>\r
+ <string id="browser_urlbar_suggest_openpage">browser.urlbar.suggest.openpage</string>\r
+ <string id="datareporting_policy_dataSubmissionPolicyBypassNotification">datareporting.policy.dataSubmissionPolicyBypassNotification</string>\r
+ <string id="dom_disable_window_flip">browser.dom.disable_window_flip</string>\r
+ <string id="dom_disable_window_move_resize">dom.disable_window_move_resize</string>\r
+ <string id="dom_event_contextmenu_enabled">dom.event.contextmenu.enabled</string>\r
+ <string id="dom_keyboardevent_keypress_hack_dispatch_non_printable_keys_addl">dom.keyboardevent.keypress.hack.dispatch_non_printable_keys.addl</string>\r
+ <string id="dom_keyboardevent_keypress_hack_use_legacy_keycode_and_charcode_addl">dom.keyboardevent.keypress.hack.use_legacy_keycode_and_charcode.addl</string>\r
+ <string id="extensions_getAddons_showPane">extensions.getAddons.showPane</string>\r
+ <string id="media_gmp-gmpopenh264_enabled">media.gmp-gmpopenh264.enabled</string>\r
+ <string id="media_gmp-widevinecdm_enabled">media.gmp-widevinecdm.enabled</string>\r
+ <string id="network_dns_disableIPv6">network.dns.disableIPv6</string>\r
+ <string id="network_IDN_show_punycode">network.IDN_show_punycode</string>\r
+ <string id="places_history_enabled">places.history.enabled</string>\r
+ <string id="security_default_personal_cert">security.default_personal_cert</string>\r
+ <string id="security_ssl_errorReporting_enabled">security.ssl.errorReporting.enabled</string>\r
+ <string id="ui_key_menuAccessKeyFocuses">ui.key.menuAccessKeyFocuses</string>\r
</stringTable>\r
<presentationTable>\r
<presentation id="AppUpdateURL">\r
<presentation id="SSLVersion">\r
<dropdownList refId="SSLVersion"/>\r
</presentation>\r
+ <presentation id="Preferences_String">\r
+ <textBox refId="Preferences_String">\r
+ <label/>\r
+ </textBox>\r
+ </presentation>\r
+ <presentation id="Preferences_security_default_personal_cert">\r
+ <dropdownList refId="Preferences_security_default_personal_cert"/>\r
+ </presentation>\r
</presentationTable>\r
</resources>\r
</policyDefinitionResources>\r
<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">
<presentation id="SSLVersion">
<dropdownList refId="SSLVersion"/>
</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>
</presentationTable>
</resources>
</policyDefinitionResources>