From: Michael Kaply <345868+mkaply@users.noreply.github.com>
Date: Wed, 1 Jun 2022 20:55:13 +0000 (-0400)
Subject: Merge pull request #905 from mozilla/PasswordManagerExceptions
X-Git-Tag: 3.10~2
X-Git-Url: https://git.p6c8.net/policy-templates.git/commitdiff_plain/e313ae1f80f3b7852b93e037cc24f5bd515bd22e?hp=c039a2523b9f3aeb48ca9195ebb7082aba98192a
Merge pull request #905 from mozilla/PasswordManagerExceptions
Password manager exceptions
---
diff --git a/README.md b/README.md
index 59425e4..254caa3 100644
--- a/README.md
+++ b/README.md
@@ -69,7 +69,7 @@ Policies can be specified using the [Group Policy templates on Windows](https://
| **[`LegacySameSiteCookieBehaviorEnabledForDomainList`](#legacysamesitecookiebehaviorenabledfordomainlist)** | Revert to legacy SameSite behavior for cookies on specified sites.
| **[`LocalFileLinks`](#localfilelinks)** | Enable linking to local files by origin.
| **[`ManagedBookmarks`](#managedbookmarks)** | Configures a list of bookmarks managed by an administrator that cannot be changed by the user.
-| **[`ManualAppUpdateOnly`](#manualappupdateonly)** | Allow manual updates only and do not notify the user about updates..
+| **[`ManualAppUpdateOnly`](#manualappupdateonly)** | Allow manual updates only and do not notify the user about updates.
| **[`NetworkPrediction`](#networkprediction)** | Enable or disable network prediction (DNS prefetching).
| **[`NewTabPage`](#newtabpage)** | Enable or disable the New Tab page.
| **[`NoDefaultBookmarks`](#nodefaultbookmarks)** | Disable the creation of default bookmarks.
@@ -78,6 +78,7 @@ Policies can be specified using the [Group Policy templates on Windows](https://
| **[`OverrideFirstRunPage`](#overridefirstrunpage)** | Override the first run page.
| **[`OverridePostUpdatePage`](#overridepostupdatepage)** | Override the upgrade page.
| **[`PasswordManagerEnabled`](#passwordmanagerenabled)** | Remove (some) access to the password manager.
+| **[`PasswordManagerExceptions`](#passwordmanagerexceptions)** | Prevent Firefox from saving passwords for specific sites.
| **[`PDFjs`](#pdfjs)** | Disable or configure PDF.js, the built-in PDF viewer.
| **[`Permissions`](#permissions)** | Set permissions associated with camera, microphone, location, and notifications.
| **[`PictureInPicture`](#pictureinpicture)** | Enable or disable Picture-in-Picture.
@@ -3822,6 +3823,50 @@ Value (string):
}
}
```
+### PasswordManagerExceptions
+Prevent Firefox from saving passwords for specific sites.
+
+The sites are specified as a list of origins.
+
+**Compatibility:** Firefox 101\
+**CCK2 Equivalent:** N/A\
+**Preferences Affected:** N/A
+
+#### Windows (GPO)
+```
+Software\Policies\Mozilla\Firefox\PasswordManagerExceptions\1 = "https://example.org"
+Software\Policies\Mozilla\Firefox\PasswordManagerExceptions\2 = "https://example.edu"
+```
+#### Windows (Intune)
+OMA-URI:
+```
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/PasswordManagerExceptions
+```
+Value (string):
+```
+
+
+```
+#### macOS
+```
+
+ PasswordManagerExceptions
+
+ https://example.org
+ https://example.edu
+
+
+```
+#### policies.json
+```
+{
+ "policies": {
+ "PasswordManagerExceptions": ["https://example.org",
+ "https://example.edu"]
+ }
+}
+```
+
### PDFjs
Disable or configure PDF.js, the built-in PDF viewer.
diff --git a/mac/org.mozilla.firefox.plist b/mac/org.mozilla.firefox.plist
index 1ad8bc6..d1a1c2c 100644
--- a/mac/org.mozilla.firefox.plist
+++ b/mac/org.mozilla.firefox.plist
@@ -414,6 +414,11 @@
EnablePermissions
+ PasswordManagerExceptions
+
+ https://example.org
+ https://example.edu
+
Permissions
Camera
diff --git a/windows/de-DE/firefox.adml b/windows/de-DE/firefox.adml
index 6c0e9f1..eeb50a0 100644
--- a/windows/de-DE/firefox.adml
+++ b/windows/de-DE/firefox.adml
@@ -675,6 +675,10 @@ Wenn diese Richtlinieneinstellung nicht konfiguriert ist, entscheidet Firefox se
Wenn diese Richtlinieneinstellung deaktiviert ist, ist der Passwort-Manager nicht über die Einstellungen verfügbar.
Wenn diese Richtlinieneinstellung aktiviert oder nicht konfiguriert ist, ist der Passwort-Manager über die Einstellungen verfügbar.
+ Password Manager Exceptions
+ If this policy is enabled, you can specify sites where Firefox won't offer to save passwords.
+
+If this policy is disabled or not configured, Firefox will offer to save passwords on all sites.
Abfrage des Download-Verzeichnisses
Wenn diese Richtlinieneinstellung deaktiviert ist, wird der Nutzer nicht nach einem Verzeichnis für den Download gefragt.
diff --git a/windows/en-US/firefox.adml b/windows/en-US/firefox.adml
index 7a71f5c..205c9cc 100644
--- a/windows/en-US/firefox.adml
+++ b/windows/en-US/firefox.adml
@@ -675,6 +675,10 @@ If this policy is not configured, Firefox will determine whether or not the home
If this policy is disabled, the password manager is not available via preferences.
If this policy is enabled or not configured, the password manager is available via preferences.
+ Password Manager Exceptions
+ If this policy is enabled, you can specify sites where Firefox won't offer to save passwords.
+
+If this policy is disabled or not configured, Firefox will offer to save passwords on all sites.
Prompt for download location
If this policy is disabled, the user is not prompted for a download location.
diff --git a/windows/es-ES/firefox.adml b/windows/es-ES/firefox.adml
index 122c357..e9f178c 100644
--- a/windows/es-ES/firefox.adml
+++ b/windows/es-ES/firefox.adml
@@ -677,6 +677,10 @@ If this policy is not configured, Firefox will determine whether or not the home
Si esta polÃtica está deshabilitada, el administrador de contraseñas no estará disponible a través de las preferencias.
Si esta polÃtica está habilitada o no está configurada, el administrador de contraseñas estará disponible a través de preferencias.
+ Password Manager Exceptions
+ If this policy is enabled, you can specify sites where Firefox won't offer to save passwords.
+
+If this policy is disabled or not configured, Firefox will offer to save passwords on all sites.
Solicitar ubicación de descarga
Si esta polÃtica está deshabilitada, no se solicitará al usuario una ubicación de descarga.
diff --git a/windows/firefox.admx b/windows/firefox.admx
index 2d13769..9248846 100644
--- a/windows/firefox.admx
+++ b/windows/firefox.admx
@@ -2486,6 +2486,13 @@
+
+
+
+
+
+
+
diff --git a/windows/fr-FR/firefox.adml b/windows/fr-FR/firefox.adml
index 5af1e39..7e8c258 100644
--- a/windows/fr-FR/firefox.adml
+++ b/windows/fr-FR/firefox.adml
@@ -676,6 +676,10 @@ If this policy is not configured, Firefox will determine whether or not the home
Si cette stratégie est désactivée, le gestionnaire de mots de passe n'est pas disponible via les préférences.
Si cette stratégie est activée ou non configurée, le gestionnaire de mots de passe est disponible via les préférences.
+ Password Manager Exceptions
+ If this policy is enabled, you can specify sites where Firefox won't offer to save passwords.
+
+If this policy is disabled or not configured, Firefox will offer to save passwords on all sites.
Demander l'emplacement de téléchargement
Si cette stratégie est désactivée, l'utilisateur n'est pas invité à indiquer un emplacement de téléchargement.
diff --git a/windows/it-IT/firefox.adml b/windows/it-IT/firefox.adml
index e150593..c78a33b 100644
--- a/windows/it-IT/firefox.adml
+++ b/windows/it-IT/firefox.adml
@@ -677,6 +677,10 @@ If this policy is not configured, Firefox will determine whether or not the home
Se questo criterio è disabilitato, il gestore password non è disponibile nelle Preferenze.
Se questo criterio è abilitato o non configurato, il gestore password è disponibile nelle Preferenze.
+ Password Manager Exceptions
+ If this policy is enabled, you can specify sites where Firefox won't offer to save passwords.
+
+If this policy is disabled or not configured, Firefox will offer to save passwords on all sites.
Richiedi percorso di download
Se questo criterio è disabilitato, all'utente non verrà chiesto un percorso di download.
diff --git a/windows/ru-RU/firefox.adml b/windows/ru-RU/firefox.adml
index 8cf0740..2c762ec 100644
--- a/windows/ru-RU/firefox.adml
+++ b/windows/ru-RU/firefox.adml
@@ -677,6 +677,10 @@ If this policy is not configured, Firefox will determine whether or not the home
ÐÑли ÑÑа полиÑика оÑклÑÑена, Ð¼ÐµÐ½ÐµÐ´Ð¶ÐµÑ Ð¿Ð°Ñолей недоÑÑÑпен в наÑÑÑойкаÑ
.
ÐÑли ÑÑа полиÑика вклÑÑена или не наÑÑÑоена, Ð¼ÐµÐ½ÐµÐ´Ð¶ÐµÑ Ð¿Ð°Ñолей доÑÑÑпен в наÑÑÑойкаÑ
.
+ Password Manager Exceptions
+ If this policy is enabled, you can specify sites where Firefox won't offer to save passwords.
+
+If this policy is disabled or not configured, Firefox will offer to save passwords on all sites.
ÐапÑÐ¾Ñ Ð¼ÐµÑÑа загÑÑзки
ÐÑли ÑÑа полиÑика оÑклÑÑена, полÑзоваÑÐµÐ»Ñ Ð½Ðµ пÑедлагаеÑÑÑ ÑказаÑÑ ÑаÑположение Ð´Ð»Ñ Ð·Ð°Ð³ÑÑзки.
diff --git a/windows/zh-CN/firefox.adml b/windows/zh-CN/firefox.adml
index f8b6c75..62f78e7 100644
--- a/windows/zh-CN/firefox.adml
+++ b/windows/zh-CN/firefox.adml
@@ -48,8 +48,8 @@
Firefox 98 ææ´æ°çæ¬
Firefox 99 ææ´æ°çæ¬ãFirefox 91.8 ESR ææ´æ°çæ¬
Firefox 100 ææ´æ°çæ¬ãFirefox 91.9 ESR ææ´æ°çæ¬
- Firefox 101 ææ´æ°çæ¬ãFirefox 91.10 ESR ææ´æ°çæ¬
- Firefox 102 ææ´æ°çæ¬ãFirefox 91.11 ESR ææ´æ°çæ¬
+ Firefox 101 ææ´æ°çæ¬ãFirefox 91.10 ESR ææ´æ°çæ¬
+ Firefox 102 ææ´æ°çæ¬ãFirefox 91.11 ESR ææ´æ°çæ¬
Firefox
æé
æå头
@@ -675,6 +675,10 @@ If this policy is not configured, Firefox will determine whether or not the home
è¥ç¦ç¨æ¤çç¥ï¼å°æ æ³äºå好设å®ä¸ä½¿ç¨å¯ç 管çåã
è¥å¯ç¨æä¸è®¾å®æ¤ååï¼åå¯äºå好设å®ä¸ä½¿ç¨å¯ç 管çåã
+ Password Manager Exceptions
+ If this policy is enabled, you can specify sites where Firefox won't offer to save passwords.
+
+If this policy is disabled or not configured, Firefox will offer to save passwords on all sites.
æ示ä¸è½½ä½ç½®
è¥ç¦ç¨æ¤ååï¼å°ä¸ä¼åç¨æ·è¯¢é®æ件ä¸è½½ä½ç½®ã
diff --git a/windows/zh-TW/firefox.adml b/windows/zh-TW/firefox.adml
index 76bdfb4..4131279 100644
--- a/windows/zh-TW/firefox.adml
+++ b/windows/zh-TW/firefox.adml
@@ -48,8 +48,8 @@
Firefox 98 ææ´æ°çæ¬
Firefox 99 ææ´æ°çæ¬ãFirefox 91.8 ESR ææ´æ°çæ¬
Firefox 100 ææ´æ°çæ¬ãFirefox 91.9 ESR ææ´æ°çæ¬
- Firefox 101 ææ´æ°çæ¬ãFirefox 91.10 ESR ææ´æ°çæ¬
- Firefox 102 ææ´æ°çæ¬ãFirefox 91.11 ESR ææ´æ°çæ¬
+ Firefox 101 ææ´æ°çæ¬ãFirefox 91.10 ESR ææ´æ°çæ¬
+ Firefox 102 ææ´æ°çæ¬ãFirefox 91.11 ESR ææ´æ°çæ¬
Firefox
æ¬é
æå½±æ©
@@ -675,6 +675,10 @@ Mozilla 建è°æ¨ä¸è¦åç¨ Telemetryãéé Telemetry æ¶éå°çè³è¨å¯
è¥åç¨æ¤ååï¼å°ç¡æ³æ¼å好è¨å®ä¸ä½¿ç¨å¯ç¢¼ç®¡çå¡ã
è¥åç¨æä¸è¨å®æ¤ååï¼åå¯æ¼å好è¨å®ä¸ä½¿ç¨å¯ç¢¼ç®¡çå¡ã
+ Password Manager Exceptions
+ If this policy is enabled, you can specify sites where Firefox won't offer to save passwords.
+
+If this policy is disabled or not configured, Firefox will offer to save passwords on all sites.
æ示ä¸è¼ä½ç½®
è¥åç¨æ¤ååï¼å°ä¸æå使ç¨è
è©¢åæªæ¡ä¸è¼ä½ç½®ã