From: Michael Kaply <345868+mkaply@users.noreply.github.com>
Date: Mon, 6 Apr 2020 20:30:33 +0000 (-0500)
Subject: Merge pull request #565 from mozilla/DisableDefaultBrowserAgent
X-Git-Tag: v1.15~10
X-Git-Url: https://git.p6c8.net/policy-templates.git/commitdiff_plain/269ce4f833b3767afe14cb78bd11d3db6c2a7c19?hp=6347eb8d090869ab2fc8656bc4b3f5032487213b
Merge pull request #565 from mozilla/DisableDefaultBrowserAgent
Add support for DisableDefaultBrowserAgent
---
diff --git a/README.md b/README.md
index e493353..df2ccf4 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,7 @@ Policies can be specified using the Group Policy templates on Windows (https://g
| Policy Name | Description
| --- | --- |
+| **[`AppAutoUpdate`](#AppAutoUpdate)** | Enable or disable automatic application update.
| **[`AppUpdateURL`](#AppUpdateURL)** | Change the URL for application update.
| **[`Authentication`](#Authentication)** | Configure sites that support integrated authentication.
| **[`BlockAboutAddons`](#blockaboutaddons)** | Block access to the Add-ons Manager (about:addons).
@@ -32,6 +33,7 @@ Policies can be specified using the Group Policy templates on Windows (https://g
| **[`DisableFormHistory`](#disableformhistory)** | Turn off saving information on web forms and the search bar.
| **[`DisablePocket`](#disablepocket)** | Remove Pocket in the Firefox UI.
| **[`DisablePrivateBrowsing`](#disableprivatebrowsing)** | Remove access to private browsing.
+| **[`DisablePasswordReveal`](#disablepasswordreveal)** | Do not allow passwords to be revealed in saved logins.
| **[`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 within the browser.
@@ -84,8 +86,42 @@ Policies can be specified using the Group Policy templates on Windows (https://g
| **[`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.
+| **[`UserMessaging`](#usermessaging)** | Don't show certain messages to the user.
| **[`WebsiteFilter`](#websitefilter)** | Block websites from being visited.
+### AppAutoUpdate
+
+Enable or disable **automatic** application update.
+
+If set to true, application updates are installed without user approval.
+
+If set to false, application updates are downloaded but the user can choose when to install the update.
+
+If you have disabled updates via DisableAppUpdate, this policy has no effect.
+
+**Compatibility:** Firefox 75, Firefox ESR 68.7\
+**CCK2 Equivalent:** N/A\
+**Preferences Affected:** app.update.auto
+
+#### Windows (GPO)
+```
+Software\Policies\Mozilla\Firefox\AppAutoUpdate = 0x1 | 0x0
+```
+#### macOS
+```
+
+ AppAutoUpdate
+ |
+
+```
+#### policies.json
+```
+{
+ "policies": {
+ "AppAutoUpdate": true | false
+ }
+}
+```
### AppUpdateURL
Change the URL for application update.
@@ -2277,7 +2313,7 @@ Set and lock certain preferences.
| --- | --- | --- | ---
| accessibility.force_disabled | integer | Firefox 70, Firefox ESR 68.2 | 0
| If set to 1, platform accessibility is disabled.
-| app.update.auto | boolean | Firefox 68, Firefox ESR 68 | true
+| app.update.auto (Deprecated - Switch to AppAutoUpdate policy) | boolean | Firefox 68, Firefox ESR 68 | true
| If false, Firefox doesn't automatically install update.
| browser.bookmarks.autoExportHTML | boolean | Firefox 70, Firefox ESR 68.2 | false
| If true, bookmarks are exported on shutdown.
@@ -3041,6 +3077,58 @@ Software\Policies\Mozilla\Firefox\SupportMenu\AccessKey = "S"
}
}
```
+### UserMessaging
+
+Prevent installing search engines from webpages.
+
+`WhatsNew` Remove the "What's New" icon and menuitem. (Firefox 75 only)
+
+`ExtensionRecommendations` Don't recommend extensions.
+
+`FeatureRecommendations` Don't recommend browser features.
+
+`UrlbarInterventions` Don't offer Firefox specific suggestions in the URL bar. (Firefox 75 only)
+
+**Compatibility:** Firefox 75, Firefox ESR 68.7\
+**CCK2 Equivalent:** N/A\
+**Preferences Affected:** `browser.messaging-system.whatsNewPanel.enabled`,`browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons`,`browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features`
+
+#### Windows (GPO)
+```
+Software\Policies\Mozilla\Firefox\UserMessaging\WhatsNew = 0x1 | 0x0
+Software\Policies\Mozilla\Firefox\UserMessaging\ExtensionRecommendations = 0x1 | 0x0
+Software\Policies\Mozilla\Firefox\UserMessaging\FeatureRecommendations = 0x1 | 0x0
+Software\Policies\Mozilla\Firefox\UserMessaging\UrlbarInterventions = 0x1 | 0x0
+```
+#### macOS
+```
+
+ UserMessaging
+
+ WhatsNew
+ |
+ ExtensionRecommendations
+ |
+ FeatureRecommendations
+ |
+ UrlbarInterventions
+ |
+
+
+```
+#### policies.json
+```
+{
+ "policies": {
+ "UserMessaging": {
+ "WhatsNew": true | false,
+ "ExtensionRecommendations": true | false,
+ "FeatureRecommendations": true | false,
+ "UrlbarInterventions": true | false
+ }
+ }
+}
+```
### 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.
@@ -3050,8 +3138,8 @@ Block websites from being visited. The parameters take an array of Match Pattern
#### Windows (GPO)
```
-Software\Policies\Mozilla\Firefox\WebsiteFilters\Block\1 = ""
-Software\Policies\Mozilla\Firefox\WebsiteFilters\Exceptions\1 = "http://example.org/*"
+Software\Policies\Mozilla\Firefox\WebsiteFilter\Block\1 = ""
+Software\Policies\Mozilla\Firefox\WebsiteFilter\Exceptions\1 = "http://example.org/*"
```
#### macOS
```
diff --git a/mac/org.mozilla.firefox.plist b/mac/org.mozilla.firefox.plist
index c62f305..1fb7f4d 100644
--- a/mac/org.mozilla.firefox.plist
+++ b/mac/org.mozilla.firefox.plist
@@ -4,6 +4,8 @@
EnterprisePoliciesEnabled
+ AppAutoUpdate
+
AppUpdateURL
https://www.example.com/update.xml
Authentication
@@ -412,6 +414,17 @@
SearchBar
separate
+ UserMessaging
+
+ WhatsNew
+
+ ExtensionRecommendations
+
+ FeatureRecommendations
+
+ UrlbarInterventions
+
+
WebsiteFilter
Block
diff --git a/windows/de-DE/firefox.adml b/windows/de-DE/firefox.adml
index f54fcc6..98a4b80 100644
--- a/windows/de-DE/firefox.adml
+++ b/windows/de-DE/firefox.adml
@@ -23,6 +23,7 @@
Firefox 73 oder höher, Firefox 68.5 ESR oder höher
Firefox 74 oder höher, Firefox 68.6 ESR oder höher
Firefox 75 oder höher, Firefox 68.7 ESR oder höher
+ Firefox 75 oder höher
Firefox 76 oder höher, Firefox 68.8 ESR oder höher
Firefox 77 oder höher, Firefox 68.9 ESR oder höher
Firefox
@@ -43,8 +44,15 @@
Startseite
Suche
Einstellungen
+ User Messaging
Erlaubte Seiten
Gesperrte Seiten
+ Application Autoupdate
+ If this policy is enabled, Firefox is automatically updated without user approval.
+
+If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.
+
+If this policy is not configured, the user can choose whether not Firefox is automatically updated.
Benutzerdefinierte Update-URL
Wenn diese Policy aktiviert ist, dann können Sie eine URL zu einem Update-Server setzen, die eine andere ist, als die standardmäÃige. Dies kann hilfreich sein, in dem Fall, wenn Sie einen eigenen Update-Server in Ihrem Netzwerk betreiben.
@@ -666,6 +674,22 @@ Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, verwe
+ What's New
+ If this policy is disabled, the What's new icon and menuitem will not be displayed.
+
+If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.
+ Extension Recommendations
+ If this policy is disabled, extensions will not be recommended as the user visits websites.
+
+If this policy is enabled or not configured, extensions will be recommended as the user visits websites.
+ Feature Recommendations
+ If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+
+If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.
+ Urlbar Interventions
+ If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+
+If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.
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 32f2f47..1147813 100644
--- a/windows/en-US/firefox.adml
+++ b/windows/en-US/firefox.adml
@@ -23,6 +23,7 @@
Firefox 73 or later, Firefox 68.5 ESR or later
Firefox 74 or later, Firefox 68.6 ESR or later
Firefox 75 or later, Firefox 68.7 ESR or later
+ Firefox 75 or later
Firefox 76 or later, Firefox 68.8 ESR or later
Firefox 77 or later, Firefox 68.9 ESR or later
Firefox
@@ -43,8 +44,15 @@
Home page
Search
Preferences
+ User Messaging
Allowed Sites
Blocked Sites
+ Application Autoupdate
+ If this policy is enabled, Firefox is automatically updated without user approval.
+
+If this policy is disabled Firefox updates are downloaded, but the user can choose when to install the update.
+
+If this policy is not configured, the user can choose whether not Firefox is automatically updated.
Custom Update URL
If this policy is enabled, you can set a URL to an update server other than the default. This could be helpful if you run your own update server on your network.
@@ -668,6 +676,22 @@ If this policy is disabled or not configured, Firefox defaults to a maximum of T
+ What's New
+ If this policy is disabled, the What's new icon and menuitem will not be displayed.
+
+If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.
+ Extension Recommendations
+ If this policy is disabled, extensions will not be recommended as the user visits websites.
+
+If this policy is enabled or not configured, extensions will be recommended as the user visits websites.
+ Feature Recommendations
+ If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+
+If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.
+ Urlbar Interventions
+ If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+
+If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.
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 31faded..f7504e6 100644
--- a/windows/es-ES/firefox.adml
+++ b/windows/es-ES/firefox.adml
@@ -23,6 +23,7 @@
Firefox 73 o posterior, Firefox 68.5 ESR o posterior
Firefox 74 o posterior, Firefox 68.6 ESR o posterior
Firefox 75 o posterior, Firefox 68.7 ESR o posterior
+ Firefox 75 o posterior
Firefox 76 o posterior, Firefox 68.8 ESR o posterior
Firefox 77 o posterior, Firefox 68.9 ESR o posterior
Firefox
@@ -43,8 +44,15 @@
Página de inicio
Búsqueda
Preferencias
+ User Messaging
Sitios permitidos
Sitios bloqueados
+ Application Autoupdate
+ If this policy is enabled, Firefox is automatically updated without user approval.
+
+If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.
+
+If this policy is not configured, the user can choose whether not Firefox is automatically updated.
URL de actualización personalizada
Si esta polÃtica está habilitada, podrá establecer una URL para un servidor de actualización que no sea el predeterminado. Esto podrÃa ser útil si ejecuta tu propio servidor de actualización en tu red.
@@ -668,6 +676,22 @@ Si esta polÃtica está deshabilitada o no está configurada, Firefox establecer
+ What's New
+ If this policy is disabled, the What's new icon and menuitem will not be displayed.
+
+If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.
+ Extension Recommendations
+ If this policy is disabled, extensions will not be recommended as the user visits websites.
+
+If this policy is enabled or not configured, extensions will be recommended as the user visits websites.
+ Feature Recommendations
+ If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+
+If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.
+ Urlbar Interventions
+ If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+
+If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.
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, visite:
diff --git a/windows/firefox.admx b/windows/firefox.admx
index 17c85c5..36948d5 100644
--- a/windows/firefox.admx
+++ b/windows/firefox.admx
@@ -25,6 +25,7 @@
+
@@ -90,8 +91,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -3306,5 +3320,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/windows/fr-FR/firefox.adml b/windows/fr-FR/firefox.adml
index f500ac7..6677c4a 100644
--- a/windows/fr-FR/firefox.adml
+++ b/windows/fr-FR/firefox.adml
@@ -23,6 +23,7 @@
Firefox 73 ou supérieur, Firefox 68.5 ESR ou supérieur
Firefox 74 ou supérieur, Firefox 68.6 ESR ou supérieur
Firefox 75 ou supérieur, Firefox 68.7 ESR ou supérieur
+ Firefox 75 ou supérieur
Firefox 76 ou supérieur, Firefox 68.8 ESR ou supérieur
Firefox 77 ou supérieur, Firefox 68.9 ESR ou supérieur
Firefox
@@ -43,8 +44,15 @@
Page d'accueil
Recherche
Préférences
+ User Messaging
Sites autorisés
Sites bloqués
+ Application Autoupdate
+ If this policy is enabled, Firefox is automatically updated without user approval.
+
+If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.
+
+If this policy is not configured, the user can choose whether not Firefox is automatically updated.
URL de mise à jour personnalisée
Si cette stratégie est activée, vous pouvez définir une URL vers un serveur de mise à jour autre que celui par défaut. Cela pourrait être utile si vous exécutez votre propre serveur de mise à jour sur votre réseau.
@@ -668,6 +676,22 @@ Si cette stratégie est désactivée ou non configurée, Firefox utilise par dé
+ What's New
+ If this policy is disabled, the What's new icon and menuitem will not be displayed.
+
+If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.
+ Extension Recommendations
+ If this policy is disabled, extensions will not be recommended as the user visits websites.
+
+If this policy is enabled or not configured, extensions will be recommended as the user visits websites.
+ Feature Recommendations
+ If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+
+If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.
+ Urlbar Interventions
+ If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+
+If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.
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/it-IT/firefox.adml b/windows/it-IT/firefox.adml
index d5cac30..48c6f6a 100644
--- a/windows/it-IT/firefox.adml
+++ b/windows/it-IT/firefox.adml
@@ -23,6 +23,7 @@
Firefox 73 o versione successiva, Firefox 68.5 ESR o versione successiva
Firefox 74 o versione successiva, Firefox 68.6 ESR o versione successiva
Firefox 75 o versione successiva, Firefox 68.7 ESR o versione successiva
+ Firefox 75 o versione successiva
Firefox 76 o versione successiva, Firefox 68.8 ESR o versione successiva
Firefox 77 o versione successiva, Firefox 68.9 ESR o versione successiva
Firefox
@@ -43,8 +44,15 @@
Pagina iniziale
Ricerca
Preferenze
+ User Messaging
Siti consentiti
Siti bloccati
+ Application Autoupdate
+ If this policy is enabled, Firefox is automatically updated without user approval.
+
+If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.
+
+If this policy is not configured, the user can choose whether not Firefox is automatically updated.
URL aggiornamento personalizzato
Se questo criterio è abilitato, è possibile impostare un URL diverso da quello predefinito per il server di aggiornamento. Ciò potrebbe essere utile se si dispone di un server di aggiornamento sulla propria rete.
@@ -668,6 +676,22 @@ Se questo criterio è disabilitato o non configurato, per impostazione predefini
+ What's New
+ If this policy is disabled, the What's new icon and menuitem will not be displayed.
+
+If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.
+ Extension Recommendations
+ If this policy is disabled, extensions will not be recommended as the user visits websites.
+
+If this policy is enabled or not configured, extensions will be recommended as the user visits websites.
+ Feature Recommendations
+ If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+
+If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.
+ Urlbar Interventions
+ If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+
+If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.
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/zh-TW/firefox.adml b/windows/zh-TW/firefox.adml
index 2437b10..67a9bb7 100644
--- a/windows/zh-TW/firefox.adml
+++ b/windows/zh-TW/firefox.adml
@@ -23,6 +23,7 @@
Firefox 73 ææ´æ°çæ¬ãFirefox 68.5 ESR ææ´æ°çæ¬
Firefox 74 ææ´æ°çæ¬ãFirefox 68.6 ESR ææ´æ°çæ¬
Firefox 75 ææ´æ°çæ¬ãFirefox 68.7 ESR ææ´æ°çæ¬
+ Firefox 75 ææ´æ°çæ¬
Firefox 76 ææ´æ°çæ¬ãFirefox 68.8 ESR ææ´æ°çæ¬
Firefox 77 ææ´æ°çæ¬ãFirefox 68.9 ESR ææ´æ°çæ¬
Firefox
@@ -43,8 +44,15 @@
é¦é
æå°
å好è¨å®
+ User Messaging
å
許ç網ç«
å°éç網ç«
+ Application Autoupdate
+ If this policy is enabled, Firefox is automatically updated without user approval.
+
+If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.
+
+If this policy is not configured, the user can choose whether not Firefox is automatically updated.
èªè¨æ´æ°ç¶²å
è¥åç¨æ¤ååï¼å¯æå®ç¨ä¾æª¢æ¥æ´æ°ç伺æå¨ç¶²åãç¶æ¨å¨å
§é¨ç¶²è·¯èªè¡æ¶è¨æ´æ°ä¼ºæå¨æææ幫å©ã
@@ -666,6 +674,22 @@ If this policy is disabled or not configured, the user can change tracking prote
+ What's New
+ If this policy is disabled, the What's new icon and menuitem will not be displayed.
+
+If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.
+ Extension Recommendations
+ If this policy is disabled, extensions will not be recommended as the user visits websites.
+
+If this policy is enabled or not configured, extensions will be recommended as the user visits websites.
+ Feature Recommendations
+ If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+
+If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.
+ Urlbar Interventions
+ If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+
+If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.
è¥åç¨æ¤ååï¼å好è¨å®å°éå®çº trueãè¥åç¨æ¤ååï¼å好è¨å®åéå®çº falseã
è¥éè¦å好è¨å®ç詳細說æï¼è«åèï¼