From: Michael Kaply <345868+mkaply@users.noreply.github.com>
Date: Mon, 6 Apr 2020 20:30:22 +0000 (-0500)
Subject: Merge pull request #566 from mozilla/AppAutoUpdate
X-Git-Tag: v1.15~11
X-Git-Url: https://git.p6c8.net/policy-templates.git/commitdiff_plain/b0adff85027321e422aec0eaac17ad07b089617f?hp=-c
Merge pull request #566 from mozilla/AppAutoUpdate
Add AppAutoUpdate policy
---
b0adff85027321e422aec0eaac17ad07b089617f
diff --combined README.md
index 9dc5938,7fdee70..e2c1619
--- a/README.md
+++ b/README.md
@@@ -6,6 -6,7 +6,7 @@@ Policies can be specified using the Gro
| 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).
@@@ -31,7 -32,6 +32,7 @@@
| **[`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,9 -84,41 +85,42 @@@
| **[`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.
@@@ -2258,7 -2290,7 +2292,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.
@@@ -3022,58 -3054,6 +3056,58 @@@ Software\Policies\Mozilla\Firefox\Suppo
}
}
```
+### 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.
@@@ -3083,8 -3063,8 +3117,8 @@@
#### 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 --combined mac/org.mozilla.firefox.plist
index c331e5f,1fc837b..1fb7f4d
--- a/mac/org.mozilla.firefox.plist
+++ b/mac/org.mozilla.firefox.plist
@@@ -4,6 -4,8 +4,8 @@@
EnterprisePoliciesEnabled
+ AppAutoUpdate
+
AppUpdateURL
https://www.example.com/update.xml
Authentication
@@@ -412,17 -414,6 +414,17 @@@
SearchBar
separate
+ UserMessaging
+
+ WhatsNew
+
+ ExtensionRecommendations
+
+ FeatureRecommendations
+
+ UrlbarInterventions
+
+
WebsiteFilter
Block
diff --combined windows/de-DE/firefox.adml
index c9593e5,262735c..7f00a0f
--- a/windows/de-DE/firefox.adml
+++ b/windows/de-DE/firefox.adml
@@@ -23,7 -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
@@@ -44,9 -43,14 +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.
@@@ -662,22 -666,6 +668,22 @@@ Wenn Sie die Richtlinieneinstellung dea
+ 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 --combined windows/en-US/firefox.adml
index 63eca6e,72adbb8..238b12d
--- a/windows/en-US/firefox.adml
+++ b/windows/en-US/firefox.adml
@@@ -23,7 -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
@@@ -44,9 -43,14 +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.
@@@ -664,22 -668,6 +670,22 @@@ If this policy is disabled or not confi
+ 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 --combined windows/es-ES/firefox.adml
index 6907a51,20b64e2..a4de3d1
--- a/windows/es-ES/firefox.adml
+++ b/windows/es-ES/firefox.adml
@@@ -23,7 -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
@@@ -44,9 -43,14 +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.
@@@ -664,22 -668,6 +670,22 @@@ Si esta polÃtica está deshabilitada
+ 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 --combined windows/firefox.admx
index a093bec,257df71..7ffa898
--- a/windows/firefox.admx
+++ b/windows/firefox.admx
@@@ -25,7 -25,6 +25,7 @@@
+
@@@ -91,11 -90,18 +91,21 @@@
+
+
+
+
+
+
+
+
+
+
+
+
+
@@@ -3300,45 -3306,5 +3310,45 @@@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --combined windows/fr-FR/firefox.adml
index 68895f9,5a1464a..563c2e4
--- a/windows/fr-FR/firefox.adml
+++ b/windows/fr-FR/firefox.adml
@@@ -23,7 -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
@@@ -44,9 -43,14 +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.
@@@ -664,22 -668,6 +670,22 @@@ Si cette stratégie est désactivée o
+ 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 --combined windows/it-IT/firefox.adml
index dc06bec,9fd3a53..1dbf65c
--- a/windows/it-IT/firefox.adml
+++ b/windows/it-IT/firefox.adml
@@@ -23,7 -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
@@@ -44,9 -43,14 +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.
@@@ -664,22 -668,6 +670,22 @@@ Se questo criterio è disabilitato o no
+ 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 --combined windows/zh-TW/firefox.adml
index 33d6f62,746d735..2c31b4c
--- a/windows/zh-TW/firefox.adml
+++ b/windows/zh-TW/firefox.adml
@@@ -23,7 -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
@@@ -44,9 -43,14 +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.
èªè¨æ´æ°ç¶²å
è¥åç¨æ¤ååï¼å¯æå®ç¨ä¾æª¢æ¥æ´æ°ç伺æå¨ç¶²åãç¶æ¨å¨å
§é¨ç¶²è·¯èªè¡æ¶è¨æ´æ°ä¼ºæå¨æææ幫å©ã
@@@ -662,22 -666,6 +668,22 @@@ If this policy is disabled or not confi
+ 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ã
è¥éè¦å好è¨å®ç詳細說æï¼è«åèï¼