From a842349fc2f989973cac2cc2b82e2b614b2b3a57 Mon Sep 17 00:00:00 2001
From: Michael Kaply <345868+mkaply@users.noreply.github.com>
Date: Wed, 6 Sep 2023 15:40:25 -0400
Subject: [PATCH] Add information for new FirefoxSuggest policy
---
docs/index.md | 79 ++++++++++++++++++++++++++++++++++-
linux/policies.json | 6 +++
mac/org.mozilla.firefox.plist | 11 +++++
windows/de-DE/firefox.adml | 21 ++++++++++
windows/en-US/firefox.adml | 21 ++++++++++
windows/es-ES/firefox.adml | 21 ++++++++++
windows/firefox.admx | 43 +++++++++++++++++++
windows/fr-FR/firefox.adml | 21 ++++++++++
windows/it-IT/firefox.adml | 21 ++++++++++
windows/ru-RU/firefox.adml | 21 ++++++++++
windows/zh-CN/firefox.adml | 21 ++++++++++
windows/zh-TW/firefox.adml | 21 ++++++++++
12 files changed, 306 insertions(+), 1 deletion(-)
diff --git a/docs/index.md b/docs/index.md
index 3cbb173..a1d1ba8 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -71,6 +71,7 @@ Unfortunately, JSON files do not support comments, but you can add extra entries
| **[`ExtensionSettings`](#extensionsettings)** | Manage all aspects of extensions.
| **[`ExtensionUpdate`](#extensionupdate)** | Control extension updates.
| **[`FirefoxHome`](#firefoxhome)** | Customize the Firefox Home page.
+| **[`FirefoxSuggest`](#firefoxsuggest)** | Customize Firefox Suggest.
| **[`GoToIntranetSiteForSingleWordEntryInAddressBar`](#gotointranetsiteforsinglewordentryinaddressbar)** | Force direct intranet site navigation instead of searching when typing single word entries in the address bar.
| **[`Handlers`](#handlers)** | Configure default application handlers.
| **[`HardwareAcceleration`](#hardwareacceleration)** | Control hardware acceleration.
@@ -2968,6 +2969,82 @@ Value (string):
}
}
```
+### FirefoxSuggest
+Customize Firefox Suggest (US only).
+
+**Compatibility:** Firefox 118, Firefox ESR 115.3.
+**CCK2 Equivalent:** N/A\
+**Preferences Affected:** `browser.urlbar.suggest.quicksuggest.nonsponsored`, `browser.urlbar.suggest.quicksuggest.sponsored`, `browser.urlbar.quicksuggest.dataCollection.enabled`
+
+#### Windows (GPO)
+```
+Software\Policies\Mozilla\Firefox\FirefoxHome\WebSuggestions = 0x1 | 0x0
+Software\Policies\Mozilla\Firefox\FirefoxHome\SponsoredSuggestions = 0x1 | 0x0
+Software\Policies\Mozilla\Firefox\FirefoxHome\ImproveSuggest = 0x1 | 0x0
+Software\Policies\Mozilla\Firefox\FirefoxHome\Locked = 0x1 | 0x0
+```
+#### Windows (Intune)
+OMA-URI:
+```
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~FirefoxSuggest/WebSuggestions
+```
+Value (string):
+```
+ or
+```
+OMA-URI:
+```
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~FirefoxSuggest/SponsoredSuggestions
+```
+Value (string):
+```
+ or
+```
+OMA-URI:
+```
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~FirefoxSuggest/ImproveSuggest
+```
+Value (string):
+```
+ or
+```
+OMA-URI:
+```
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~FirefoxSuggest/Locked
+```
+Value (string):
+```
+ or
+```
+#### macOS
+```
+
+ FirefoxHome
+
+ WebSuggestions
+ |
+ SponsoredSuggestions
+ |
+ ImproveSuggest
+ |
+ Locked
+ |
+
+
+```
+#### policies.json
+```
+{
+ "policies": {
+ "FirefoxHome": {
+ "WebSuggestions": true | false,
+ "SponsoredSuggestions": true | false,
+ "ImproveSuggest": true | false,
+ "Locked": true | false
+ }
+ }
+}
+```
### GoToIntranetSiteForSingleWordEntryInAddressBar
Whether to always go through the DNS server before sending a single word search string to a search engine.
@@ -4788,7 +4865,7 @@ Unless you lock this policy, changes the user already has in place will take eff
```
Software\Policies\Mozilla\Firefox\Proxy\Mode = "none" | "system" | "manual" | "autoDetect" | "autoConfig"
Software\Policies\Mozilla\Firefox\Proxy\Locked = 0x1 | 0x0
-Software\Policies\Mozilla\Firefox\=Proxy\HTTPProxy = https://httpproxy.example.com
+Software\Policies\Mozilla\Firefox\Proxy\HTTPProxy = https://httpproxy.example.com
Software\Policies\Mozilla\Firefox\Proxy\UseHTTPProxyForAllProtocols = 0x1 | 0x0
Software\Policies\Mozilla\Firefox\Proxy\SSLProxy = https://sslproxy.example.com
Software\Policies\Mozilla\Firefox\Proxy\FTPProxy = https://ftpproxy.example.com
diff --git a/linux/policies.json b/linux/policies.json
index ca1daee..95eccb0 100644
--- a/linux/policies.json
+++ b/linux/policies.json
@@ -147,6 +147,12 @@
"Snippets": true | false,
"Locked": true | false
},
+ "FirefoxSuggest": {
+ "WebSuggestions": true | false,
+ "SponsoredSuggestions": true | false,
+ "ImproveSuggest": true | false,
+ "Locked": true | false
+ },
"GoToIntranetSiteForSingleWordEntryInAddressBar": true | false,
"Handlers": {
"mimeTypes": {
diff --git a/mac/org.mozilla.firefox.plist b/mac/org.mozilla.firefox.plist
index dc02907..0a8733b 100644
--- a/mac/org.mozilla.firefox.plist
+++ b/mac/org.mozilla.firefox.plist
@@ -320,6 +320,17 @@
Locked
+ FirefoxHome
+
+ WebSuggestions
+
+ SponsoredSuggestions
+
+ ImproveSuggest
+
+ Locked
+
+
GoToIntranetSiteForSingleWordEntryInAddressBar
Handlers
diff --git a/windows/de-DE/firefox.adml b/windows/de-DE/firefox.adml
index adaeedc..3ca512d 100644
--- a/windows/de-DE/firefox.adml
+++ b/windows/de-DE/firefox.adml
@@ -87,6 +87,7 @@
Bild in Bild
Proxy
Sicherheitsmodule
+ Firefox Suggest (US only)
Erlaubte Seiten
Erlaubte Seiten (Session Only)
Gesperrte Seiten
@@ -1038,6 +1039,26 @@ Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, dürf
Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden die integrierten Standardwerte verwendet.
Ausführliche Informationen zur Erstellung der Richtlinie finden Sie unter https://github.com/mozilla/policy-templates/blob/master/README.md#containers.
+ Suggestions from the web
+ If this policy is enabled, you will get suggestions from Firefox related to your search.
+
+If this policy is disabled, you will not get these suggestions.
+
+If this policy is not configured, , you will get suggestions from Firefox related to your search.
+
+
+ Improve the Firefox Suggest experience
+ If this policy is enabled, you will help create a richer search experience by allowing Mozilla to process your search queries.
+
+If this policy is disabled or not configured, you do not allow Mozilla to process your search queries.
+ Do not allow preferences to be changed
+ If this policy is enabled, Firefox Suggest preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their Firefox Suggest preferences.
Wenn diese Richtlinieneinstellung aktiviert ist, ist die Einstellung auf true gesperrt. Wenn diese Richtlinieneinstellung deaktiviert ist, ist die Einstellung auf false gesperrt.
Für eine Beschreibung der Einstellung, siehe:
diff --git a/windows/en-US/firefox.adml b/windows/en-US/firefox.adml
index 44bd4a4..163fc5b 100644
--- a/windows/en-US/firefox.adml
+++ b/windows/en-US/firefox.adml
@@ -87,6 +87,7 @@
Picture-in-Picture
Proxy Settings
Security Devices
+ Firefox Suggest (US only)
Allowed Sites
Allowed Sites (Session Only)
Blocked Sites
@@ -1033,6 +1034,26 @@ If this policy is disabled or not configured, users users are allowed to block t
If this policy is disabled or not configured, the built-in defaults are used.
For detailed information on creating the policy, see https://github.com/mozilla/policy-templates/blob/master/README.md#containers.
+ Suggestions from the web
+ If this policy is enabled, you will get suggestions from Firefox related to your search.
+
+If this policy is disabled, you will not get these suggestions.
+
+If this policy is not configured, , you will get suggestions from Firefox related to your search.
+
+
+ Improve the Firefox Suggest experience
+ If this policy is enabled, you will help create a richer search experience by allowing Mozilla to process your search queries.
+
+If this policy is disabled or not configured, you do not allow Mozilla to process your search queries.
+ Do not allow preferences to be changed
+ If this policy is enabled, Firefox Suggest preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their Firefox Suggest preferences.
If this policy is enabled, the preference is locked to true. If this policy is disabled, the preference is locked to false.
For a description of the preference, see:
diff --git a/windows/es-ES/firefox.adml b/windows/es-ES/firefox.adml
index 3301efb..337abce 100644
--- a/windows/es-ES/firefox.adml
+++ b/windows/es-ES/firefox.adml
@@ -87,6 +87,7 @@
Picture-in-Picture
Proxy Settings
Security Devices
+ Firefox Suggest (US only)
Sitios permitidos
Sitios permitidos (Session Only)
Sitios bloqueados
@@ -1035,6 +1036,26 @@ If this policy is disabled or not configured, users users are allowed to block t
If this policy is disabled or not configured, the built-in defaults are used.
For detailed information on creating the policy, see https://github.com/mozilla/policy-templates/blob/master/README.md#containers.
+ Suggestions from the web
+ If this policy is enabled, you will get suggestions from Firefox related to your search.
+
+If this policy is disabled, you will not get these suggestions.
+
+If this policy is not configured, , you will get suggestions from Firefox related to your search.
+
+
+ Improve the Firefox Suggest experience
+ If this policy is enabled, you will help create a richer search experience by allowing Mozilla to process your search queries.
+
+If this policy is disabled or not configured, you do not allow Mozilla to process your search queries.
+ Do not allow preferences to be changed
+ If this policy is enabled, Firefox Suggest preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their Firefox Suggest preferences.
Si esta polÃtica está habilitada, la preferencia se bloquea en true. Si esta polÃtica está deshabilitada, la preferencia está bloqueada en false.
Para una descripción de la preferencia, visita:
diff --git a/windows/firefox.admx b/windows/firefox.admx
index aa209ee..7e67078 100644
--- a/windows/firefox.admx
+++ b/windows/firefox.admx
@@ -153,6 +153,9 @@
+
+
+
@@ -4090,5 +4093,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/windows/fr-FR/firefox.adml b/windows/fr-FR/firefox.adml
index fe86638..e81b5b8 100644
--- a/windows/fr-FR/firefox.adml
+++ b/windows/fr-FR/firefox.adml
@@ -87,6 +87,7 @@
Picture-in-Picture
Proxy Settings
Security Devices
+ Firefox Suggest (US only)
Sites autorisés
Sites autorisés (Session Only)
Sites bloqués
@@ -1034,6 +1035,26 @@ If this policy is disabled or not configured, users users are allowed to block t
If this policy is disabled or not configured, the built-in defaults are used.
For detailed information on creating the policy, see https://github.com/mozilla/policy-templates/blob/master/README.md#containers.
+ Suggestions from the web
+ If this policy is enabled, you will get suggestions from Firefox related to your search.
+
+If this policy is disabled, you will not get these suggestions.
+
+If this policy is not configured, , you will get suggestions from Firefox related to your search.
+
+
+ Improve the Firefox Suggest experience
+ If this policy is enabled, you will help create a richer search experience by allowing Mozilla to process your search queries.
+
+If this policy is disabled or not configured, you do not allow Mozilla to process your search queries.
+ Do not allow preferences to be changed
+ If this policy is enabled, Firefox Suggest preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their Firefox Suggest preferences.
Si cette stratégie est activée, la préférence est verrouillée sur true. Si cette stratégie est désactivée, la préférence est verrouillée sur false.
Pour une description de la préférence, voir:
diff --git a/windows/it-IT/firefox.adml b/windows/it-IT/firefox.adml
index 2c0ce5f..7a3aeab 100644
--- a/windows/it-IT/firefox.adml
+++ b/windows/it-IT/firefox.adml
@@ -87,6 +87,7 @@
Picture-in-Picture
Proxy Settings
Security Devices
+ Firefox Suggest (US only)
Siti consentiti
Siti consentiti (solo sessione)
Siti bloccati
@@ -1036,6 +1037,26 @@ If this policy is disabled or not configured, users users are allowed to block t
If this policy is disabled or not configured, the built-in defaults are used.
For detailed information on creating the policy, see https://github.com/mozilla/policy-templates/blob/master/README.md#containers.
+ Suggestions from the web
+ If this policy is enabled, you will get suggestions from Firefox related to your search.
+
+If this policy is disabled, you will not get these suggestions.
+
+If this policy is not configured, , you will get suggestions from Firefox related to your search.
+
+
+ Improve the Firefox Suggest experience
+ If this policy is enabled, you will help create a richer search experience by allowing Mozilla to process your search queries.
+
+If this policy is disabled or not configured, you do not allow Mozilla to process your search queries.
+ Do not allow preferences to be changed
+ If this policy is enabled, Firefox Suggest preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their Firefox Suggest preferences.
Se questo criterio è abilitato, la preferenza è impostata a Vero e resa non modificabile. Se questo criterio è disabilitato, la preferenza è impostata a Falso e resa non modificabile.
Per una descrizione della preferenza, si veda:
diff --git a/windows/ru-RU/firefox.adml b/windows/ru-RU/firefox.adml
index 44d5f9a..86d5801 100644
--- a/windows/ru-RU/firefox.adml
+++ b/windows/ru-RU/firefox.adml
@@ -87,6 +87,7 @@
ÐаÑÑинка в каÑÑинке
Proxy Settings
Security Devices
+ Firefox Suggest (US only)
РазÑеÑÑннÑе ÑайÑÑ
РазÑеÑÑннÑе ÑайÑÑ (Session Only)
ÐаблокиÑованнÑе ÑайÑÑ
@@ -1035,6 +1036,26 @@ If this policy is disabled or not configured, users users are allowed to block t
If this policy is disabled or not configured, the built-in defaults are used.
For detailed information on creating the policy, see https://github.com/mozilla/policy-templates/blob/master/README.md#containers.
+ Suggestions from the web
+ If this policy is enabled, you will get suggestions from Firefox related to your search.
+
+If this policy is disabled, you will not get these suggestions.
+
+If this policy is not configured, , you will get suggestions from Firefox related to your search.
+
+
+ Improve the Firefox Suggest experience
+ If this policy is enabled, you will help create a richer search experience by allowing Mozilla to process your search queries.
+
+If this policy is disabled or not configured, you do not allow Mozilla to process your search queries.
+ Do not allow preferences to be changed
+ If this policy is enabled, Firefox Suggest preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their Firefox Suggest preferences.
ÐÑли ÑÑа полиÑика вклÑÑена, пÑедпоÑÑение заблокиÑовано на true. ÐÑли ÑÑа полиÑика оÑклÑÑена, пÑедпоÑÑение заблокиÑовано на false.
ÐпиÑание пÑедпоÑÑÐµÐ½Ð¸Ñ Ñм.:
diff --git a/windows/zh-CN/firefox.adml b/windows/zh-CN/firefox.adml
index cc860eb..472ce66 100644
--- a/windows/zh-CN/firefox.adml
+++ b/windows/zh-CN/firefox.adml
@@ -87,6 +87,7 @@
åæ¯ç»é¢
Proxy Settings
Security Devices
+ Firefox Suggest (US only)
å
许çç½ç«
å
许çç½ç«ï¼ä»
å½æ¬¡æµè§é¶æ®µï¼
å°éçç½ç«
@@ -1035,6 +1036,26 @@ If this policy is disabled or not configured, users users are allowed to block t
If this policy is disabled or not configured, the built-in defaults are used.
For detailed information on creating the policy, see https://github.com/mozilla/policy-templates/blob/master/README.md#containers.
+ Suggestions from the web
+ If this policy is enabled, you will get suggestions from Firefox related to your search.
+
+If this policy is disabled, you will not get these suggestions.
+
+If this policy is not configured, , you will get suggestions from Firefox related to your search.
+
+
+ Improve the Firefox Suggest experience
+ If this policy is enabled, you will help create a richer search experience by allowing Mozilla to process your search queries.
+
+If this policy is disabled or not configured, you do not allow Mozilla to process your search queries.
+ Do not allow preferences to be changed
+ If this policy is enabled, Firefox Suggest preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their Firefox Suggest preferences.
è¥å¯ç¨æ¤ååï¼å好设å®å°éå®ä¸º trueã è¥ç¦ç¨æ¤ååï¼å好设å®åéå®ä¸ºfalseã
è¥éè¦å好设置ç详ç»è¯´æï¼è¯·åèï¼
diff --git a/windows/zh-TW/firefox.adml b/windows/zh-TW/firefox.adml
index a7ae754..4163262 100644
--- a/windows/zh-TW/firefox.adml
+++ b/windows/zh-TW/firefox.adml
@@ -87,6 +87,7 @@
åæ¯ç«é¢
Proxy Settings
Security Devices
+ Firefox Suggest (US only)
å
許ç網ç«
å
許ç網ç«ï¼å
ç¶æ¬¡ç覽é段ï¼
å°éç網ç«
@@ -1033,6 +1034,26 @@ If this policy is disabled or not configured, users users are allowed to block t
If this policy is disabled or not configured, the built-in defaults are used.
For detailed information on creating the policy, see https://github.com/mozilla/policy-templates/blob/master/README.md#containers.
+ Suggestions from the web
+ If this policy is enabled, you will get suggestions from Firefox related to your search.
+
+If this policy is disabled, you will not get these suggestions.
+
+If this policy is not configured, , you will get suggestions from Firefox related to your search.
+
+
+ Improve the Firefox Suggest experience
+ If this policy is enabled, you will help create a richer search experience by allowing Mozilla to process your search queries.
+
+If this policy is disabled or not configured, you do not allow Mozilla to process your search queries.
+ Do not allow preferences to be changed
+ If this policy is enabled, Firefox Suggest preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their Firefox Suggest preferences.
è¥åç¨æ¤ååï¼å好è¨å®å°éå®çº trueãè¥åç¨æ¤ååï¼å好è¨å®åéå®çº falseã
è¥éè¦å好è¨å®ç詳細說æï¼è«åèï¼
--
2.34.1