+**IMPORTANT**: This file is in active development along with the policies in Firefox. To get the policy information that corresponds to a specific release, go to https://github.com/mozilla/policy-templates/releases.
+
Policies can either be specified using the Group Policy templates or by creating a file called `policies.json`. On Windows, create a directory called `distribution` where the EXE is located and place the file there. On Mac, the file goes into `Firefox.app/Contents/Resources/distribution`. On Linux, the file goes into `firefox/distribution`, where `firefox` is the installation directory for firefox, which varies by distribution.
The content of the JSON file should look like this:
**Note**: though comments are used in this readme file for documentation, comments are not valid in actual JSON files. Remove all comments before attempting to deploy.
-Some of the policies are only available on the ESR for security reasons. These policies are marked ESR only.
+Some of the policies were originally only available on the ESR for security reasons. As of Firefox 62, these policies are available outside of the ESR, but only via JSON file or a Local Machine-based Group Policy. User-based Group Policies are not allowed to set values for these policies. The descriptions below mark such policies as "Machine only".
-### Authentication (ESR only)
+### Authentication
This policy is for configuring sites that support integrated authentication. See https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication for more information.
```
{
"Authentication": {
"SPNEGO": ["mydomain.com", "https://myotherdomain.com"],
"Delegated": ["mydomain.com", "https://myotherdomain.com"],
- "NTLM": ["mydomain.com", "https://myotherdomain.com"]
+ "NTLM": ["mydomain.com", "https://myotherdomain.com"],
+ "AllowNonFQDN": {
+ "SPNEGO": true,
+ "NTLM": true
+ }
}
}
}
}
```
### Certificates
-This is a Windows only policy that tells Firefox to read certificates from the Windows certificate store.
+If this Windows only policy is set to true, Firefox reads certificates from the Windows certificate store.
```
{
"policies": {
}
```
### DisableMasterPasswordCreation
-This policy removes the master password functionality if set to true.
+If this policy is set to true, the master password functionality is removed.
```
{
"policies": {
}
}
```
-### DisableAppUpdate (ESR only)
+### DisableAppUpdate (Machine only)
This policy turns off application updates.
```
{
}
```
### DisableFeedbackCommands
-This policy disables the menus for reporting sites (Submit Feedback, Report Deceptive Site)
+This policy disables the menus for reporting sites (Submit Feedback, Report Deceptive Site).
```
{
"policies": {
}
```
### DisableFirefoxScreenshots
-This policy removes access to Firefox Screenshots
+This policy removes access to Firefox Screenshots.
```
{
"policies": {
}
```
### DisableFirefoxAccounts
-This policy disables Sync
+This policy disables Sync.
```
{
"policies": {
}
```
### DisableFirefoxStudies
-This policy disables Firefox studies (Shield)
+This policy disables Firefox studies (Shield).
```
{
"policies": {
}
```
### DisableForgetButton
-This policy disables the "Forget" button
+This policy disables the "Forget" button.
```
{
"policies": {
}
```
### DisableFormHistory
-This policy turns off the browser.formfill.enable preferences
+This policy turns off the browser.formfill.enable preferences.
```
{
"policies": {
}
```
### DisablePocket
-This policy turns off Pocket
+This policy turns off Pocket.
```
{
"policies": {
}
```
### DisablePrivateBrowsing
-This policy removes access to private browsing
+This policy removes access to private browsing.
```
{
"policies": {
}
```
### DisableProfileImport
-This policy disables the"Import data from another browser" option in the bookmarks window.
+This policy disables the "Import data from another browser" option in the bookmarks window.
```
{
"policies": {
}
```
### DisableSafeMode
-This policy disables safe mode on Windows only
+This policy disables safe mode on Windows only.
```
{
"policies": {
}
}
```
-### DisableSystemAddonUpdate (ESR only)
+### DisableSystemAddonUpdate (Machine only)
This policy prevents system add-ons from being updated or installed.
```
{
}
}
```
-### DisableTelemetry (ESR only)
+### DisableTelemetry (Machine only)
This policy prevents the upload of telemetry data.
Mozilla recommends that you do not disable telemetry. Information collected through telemetry helps us build a better product for businesses like yours.
}
```
### DisplayBookmarksToolbar
-This policy turns on the bookmarks toolbar by default. A user can still turn it off and it will stay off.
+This policy turns on the bookmarks toolbar by default. A user can still turn it off, and it will stay off.
```
{
"policies": {
}
```
### DisplayMenuBar
-This policy turns on the menubar by default. A user can still turn it off and it will stay off.
+This policy turns on the menubar by default. A user can still turn it off, and it will stay off.
```
{
"policies": {
### EnableTrackingProtection
This policy affects tracking protection.
-If this policy is not configured, tracking protection is not enabled by default in the browser but it is enabled by default in private browsing and the user can change it.
+If this policy is not configured, tracking protection is not enabled by default in the browser, but it is enabled by default in private browsing and the user can change it.
If Value is set to false, tracking protection is disabled and locked in both the browser and private browsing.
-If Value is set to true, private browsing is enabled by default in both the browser and private browsing and you can choose set the Locked value if you want to prevent the user from changing it.
+If Value is set to true, tracking protection is enabled by default in both the browser and private browsing and you can choose set the Locked value if you want to prevent the user from changing it.
```
{
"policies": {
}
}
```
-### Extensions (ESR only)
-This policy controls the install, uninstall and locking of extensions. Locked extensions cannot be disabled or uninstalled.
-For Install, you can specify a list of URLs or paths.
+### Extensions (Machine only)
+This policy controls the installation, uninstallation and locking of extensions. Locked extensions cannot be disabled or uninstalled.
+For Install, you specify a list of URLs or paths.
For Uninstall and Locked, you specify extension IDs.
```
{
}
}
```
+### HardwareAcceleration
+This policy disables hardware acceleration by locking the preference layers.acceleration.disabled to true.
+```
+{
+ "policies": {
+ "HardwareAcceleration": false
+ }
+}
+```
### NoDefaultBookmarks
-Don't create the default bookmarks or the Smart Bookmarks (Most Visited, Recent Tags). Note: this policy is only effective if used before the first run of the profile.
+This policy prevents the default bookmarks or the Smart Bookmarks (Most Visited, Recent Tags) from being created. Note: this policy is only effective if used before the first run of the profile.
```
{
"policies": {
}
}
```
-### Homepage (ESR only)
+### Homepage (Machine only)
This policy sets the default homepage value. It can also be used to lock the homepage and add additional homepages.
```
{
}
```
### PopupBlocking
-This policy sets domains for which pop-up windows are allowed. It also set the default pop-up policy
+This policy sets domains for which pop-up windows are allowed. It also sets the default pop-up policy.
```
{
"policies": {
"FlashPlugin": {
"Allow": ["http://example.org/"], /* Sites on the allow list do not override Flash being completely disabled */
"Block": ["http://example.edu/"],
- "Default": [true|false], /* If this is set to true, flash is always enabled. If it is set to false, Flash is never enabled */
+ "Default": [true|false], /* If this is set to true, Flash is always enabled. If it is set to false, Flash is never enabled */
"Locked": [true|false]
}
}
}
```
-### OverrideFirstRunPage (ESR only)
-This policy allowed you to override the first run page. If you leave the URL blank, the first run page will not be displayed.
+### OverrideFirstRunPage (Machine only)
+This policy allows you to override the first run page. If you leave the URL blank, the first run page will not be displayed.
```
{
"policies": {
}
}
```
-### OverridePostUpdatePage (ESR only)
-This policy allowed you to override the upgrade page page. If you leave the URL blank, the upgrade page will not be displayed.
+### OverridePostUpdatePage (Machine only)
+This policy allows you to override the upgrade page. If you leave the URL blank, the upgrade page will not be displayed.
```
{
"policies": {
}
```
### Bookmarks
-This policy allows you to specify bookmarks. You can have any number of bookmarks although only ten are specified in the ADMX file.
+This policy allows you to specify bookmarks. You can have any number of bookmarks, although only ten are specified in the ADMX file.
Placement can be specified as either toolbar or menu. If a folder is specified, it is automatically created and bookmarks with the
same folder name are grouped together.
}
}
```
-### SearchBar (ESR only)
+### SearchBar
This policy can be used to determine if the search bar is separate or combined with the URL bar.
```
{
}
}
```
-### WebsiteFilter (ESR only)
-Blocks 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 accesses are supported at the moment. The arrays are limited to 1000 entries each.
+### WebsiteFilter (Machine only)
+This policy blocks 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.
```
{
"policies": {
}
}
```
-### Search Engines (ESR only)
-This policy allows you to add new search engines, as well as set the default and prevent the install of search engines from web pages. Only Name and URLTemplate is required.
+### Search Engines (This policy is only available on the ESR.)
+This policy allows you to add new search engines, remove or hide search engines, as well as set the default and prevent the install of search engines from web pages. Only Name and URLTemplate is required.
```
{
"policies": {
}
],
"Default": "Name of engine",
- "PreventInstalls": [true|false]
+ "PreventInstalls": [true|false],
+ "Remove": ["Twitter", "Wikipedia (en)"]
+ }
+ }
+}
+```
+### Permissions
+This policy allows you to change the permissions associated with camera, microphone, location, and notifications
+```
+{
+ "policies": {
+ "Permissions": {
+ "Camera": {
+ "Allow": ["http://example.org/"], /* Origins where camera access is allowed by default */
+ "Block": ["http://example.org/"], /* Origins where camera access is blocked by default */
+ "BlockNewRequests": [true|false], /* Block new requests to access the camera */
+ "Locked": [true|false] /* Don't allow the user to change the camera preferences */
+ },
+ "Microphone": {
+ "Allow": ["http://example.org/"], /* Origins where microphone access is allowed by default */
+ "Block": ["http://example.org/"], /* Origins where microphone access is blocked by default */
+ "BlockNewRequests": [true|false], /* Block new requests to access the microphone */
+ "Locked": [true|false] /* Don't allow the user to change the microphone preferences */
+ },
+ "Location": {
+ "Allow": ["http://example.org/"], /* Origins where location access is allowed by default */
+ "Block": ["http://example.org/"], /* Origins where location access is blocked by default */
+ "BlockNewRequests": [true|false], /* Block new requests to access location */
+ "Locked": [true|false] /* Don't allow the user to change the location preferences */
+ },
+ "Notifications": {
+ "Allow": ["http://example.org/"], /* Origins where sending notifications is allowed by default */
+ "Block": ["http://example.org/"], /* Origins where sending notifications is blocked by default */
+ "BlockNewRequests": [true|false], /* Block new requests to send notifications */
+ "Locked": [true|false] /* Don't allow the user to change the notification preferences */
+ }
}
}
}
<td>Prevent access to about:support</td>
</tr>
+
+ <tr>
+ <td><a href="#Bookmarks">Bookmarks</a></td>
+
+ <td>Specify bookmarks to be added to Firefox</td>
+ </tr>
<tr>
<td><a href="#Certificates">Certificates</a></td>
<tr>
<td style="padding-left: 21px"><a href="#ImportEnterpriseRoots">ImportEnterpriseRoots</a></td>
- <td>Read certificates from the Windows certificate store.</td>
+ <td>Specify if Firefox reads certificates from the Windows certificate store</td>
</tr>
<tr>
<tr>
<td style="padding-left: 21px"><a href="#CookiesAllow">Allow</a></td>
- <td>Sites that are always allowed to set cookies</td>
+ <td>Specify sites that are always allowed to set cookies</td>
</tr>
<tr>
<td style="padding-left: 21px"><a href="#CookiesBlock">Block</a></td>
- <td>Sites that are blocked from setting cookies</td>
+ <td>Specify sites that are always blocked from setting cookies</td>
</tr>
<tr>
<td style="padding-left: 21px"><a href="#CookiesDefault">Default</a></td>
- <td>Default cookie setting</td>
+ <td>Specify if cookies are accepted from all websites by default</td>
</tr>
<tr>
<td style="padding-left: 21px"><a href="#CookiesAcceptThirdParty">AcceptThirdParty</a></td>
- <td>Accept third-party cookies</td>
+ <td>Specify when to accept third-party cookies</td>
</tr>
<tr>
<td style="padding-left: 21px"><a href="#CookiesExpireAtSessionEnd">ExpireAtSessionEnd</a></td>
- <td>When cookies expire</td>
+ <td>Specify if cookies expire when Firefox is closed</td>
</tr>
<tr>
<td style="padding-left: 21px"><a href="#CookiesLocked">Locked</a></td>
- <td>Don't allow cookie preferences to be changed</td>
+ <td>Prevent the user from changing cookie preferences</td>
</tr>
- <tr>
- <td><a href="#DisableSetDesktopBackground">DisableSetDesktopBackground</a></td>
+ <tr>
+ <td><a href="#DisableAppUpdate">DisableAppUpdate</a></td>
- <td>Disable setting an image as the desktop background</td>
+ <td>Disable application updates</td>
</tr>
+
+ <tr>
+ <td><a href="#DisableBuiltinPDFViewer">DisableBuiltinPDFViewer</a></td>
- <tr>
+ <td>Disable the built-in PDF viewer. PDF files are downloaded and sent externally</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisableDeveloperTools">DisableDeveloperTools</a></td>
+
+ <td>Remove access to all developer tools</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisableFeedbackCommands">DisableFeedbackCommands</a></td>
+
+ <td>Disable the menus for reporting sites (Submit Feedback, Report Deceptive Site)</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisableFirefoxAccounts">DisableFirefoxAccounts</a></td>
+
+ <td>Disable Sync</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisableFirefoxScreenshots">DisableFirefoxScreenshots</a></td>
+
+ <td>Remove access to Firefox Screenshots</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisableFirefoxStudies">DisableFirefoxStudies</a></td>
+
+ <td>Disable Firefox studies (Shield)</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisableForgetButton">DisableForgetButton</a></td>
+
+ <td>Disable the "Forget" button</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisableFormHistory">DisableFormHistory</a></td>
+
+ <td>Turn off the browser.formfill.enable preferences</td>
+ </tr>
+
+ <tr>
<td><a href="#DisableMasterPasswordCreation">DisableMasterPasswordCreation</a></td>
<td>Remove the master password functionality</td>
</tr>
+
+ <tr>
+ <td><a href="#DisablePocket">DisablePocket</a></td>
+
+ <td>Turn off Pocket</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisablePrivateBrowsing">DisablePrivateBrowsing</a></td>
+
+ <td>Remove access to private browsing</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisableProfileImport">DisableProfileImport</a></td>
+
+ <td>Disable the "Import data from another browser" option in the bookmarks window</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisableProfileRefresh">DisableProfileRefresh</a></td>
+
+ <td>Disable the Refresh Firefox button on about:support and support.mozilla.org</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisableSafeMode">DisableSafeMode</a></td>
+ <td>Disable safe mode (Windows only)</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisableSecurityBypass">DisableSecurityBypass</a></td>
+
+ <td>Prevent the user from bypassing security (in certain cases)</td>
+ </tr>
+
<tr>
- <td><a href="#DisableAppUpdate">DisableAppUpdate</a></td>
+ <td><a href="#DisableSetDesktopBackground">DisableSetDesktopBackground</a></td>
+
+ <td>Disable setting an image as the desktop background</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisableSystemAddonUpdate">DisableSystemAddonUpdate</a></td>
+
+ <td>Prevent system add-ons from being updated or installed</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisableTelemetry">DisableTelemetry</a></td>
+
+ <td>Prevent the upload of telemetry data</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisplayBookmarksToolbar">DisplayBookmarksToolbar</a></td>
+
+ <td>Turn on the bookmarks toolbar by default</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DisplayMenuBar">DisplayMenuBar</a></td>
+
+ <td>Turn on the menubar by default.</td>
+ </tr>
+
+ <tr>
+ <td><a href="#DontCheckDefaultBrowser">DontCheckDefaultBrowser</a></td>
+
+ <td>Stop Firefox from checking if it is the default browser</td>
+ </tr>
+
+ <tr>
+ <td><a href="#EnableTrackingProtection">EnableTrackingProtection</a></td>
+
+ <td>Enable tracking protection by default in both the browser and private browsing</td>
+ </tr>
+
+ <tr>
+ <td><a href="#Extensions">Extensions</a></td>
+
+ <td></td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#ExtensionsInstall">Install</a></td>
+
+ <td>Specify extension URLs or paths to be installed</td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#ExtensionsUninstall">Uninstall</a></td>
+
+ <td>Specify extension IDs to be uninstalled</td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#ExtensionsLocked">Locked</a></td>
+
+ <td>Specify extension IDs that cannot be uninstalled or disabled</td>
+ </tr>
+
+ <tr>
+ <td><a href="#FlashPlugin">FlashPlugin</a></td>
+
+ <td></td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#FlashPluginAllow">Allow</a></td>
+
+ <td>Specify sites where Flash is activated by default</td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#FlashPluginBlock">Block</a></td>
+
+ <td>Specify sites where Flash is blocked</td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#FlashPluginDefault">Default</a></td>
+
+ <td>Specify whether Flash is activated always, never, or click to play</td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#FlashPluginLocked">Locked</a></td>
+
+ <td>Prevent the user from changing Flash preferences</td>
+ </tr>
+
+ <tr>
+ <td><a href="#HardwareAcceleration">HardwareAcceleration</a></td>
+
+ <td></td>
+ </tr>
+
+ <tr>
+ <td><a href="#Homepage">Homepage</a></td>
+
+ <td></td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#HomepageURL">URL</a></td>
+
+ <td>Set a default homepage</td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#HomepageLocked">Locked</a></td>
+
+ <td>Prevent the user from changing the homepage</td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#HomepageAdditional">Additional</a></td>
+
+ <td>Specify multiple homepages</td>
+ </tr>
+
+ <tr>
+ <td><a href="#InstallAddonsPermission">InstallAddonsPermission</a></td>
+
+ <td>Specify domains that can install extensions, as well as the default behavior</td>
+ </tr>
+
+ <tr>
+ <td><a href="#NoDefaultBookmarks">NoDefaultBookmarks</a></td>
+
+ <td>Prevent the Smart Bookmarks (Most Visited, Recent Tags) from being created</td>
+ </tr>
+
+ <tr>
+ <td><a href="#OfferToSaveLogins">OfferToSaveLogins</a></td>
+
+ <td>Specify if Firefox offers to save passwords</td>
+ </tr>
+
+ <tr>
+ <td><a href="#OverrideFirstRunPage">OverrideFirstRunPage</a></td>
+
+ <td>Override the first run page</td>
+ </tr>
+
+ <tr>
+ <td><a href="#OverridePostUpdatePage">OverridePostUpdatePage</a></td>
+
+ <td>Override the upgrade page</td>
+ </tr>
+
+ <tr>
+ <td><a href="#Permissions">Permissions</a></td>
+
+ <td></td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#Camera">Camera</a></td>
+
+ <td></td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#Microphone">Microphone</a></td>
+
+ <td></td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#Location">Location</a></td>
+
+ <td></td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#Notifications">Notifications</a></td>
+
+ <td></td>
+ </tr>
+
+ <tr>
+ <td><a href="#PopupBlocking">PopupBlocking</a></td>
+
+ <td></td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#PopupBlockingAllow">Allow</a></td>
+
+ <td>Specify sites where pop-up windows are always allowed</td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#PopupBlockingDefault">Default</a></td>
+
+ <td>Specify if pop-up windows are allowed by default or blocked</td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#PopupBlockingLocked">Locked</a></td>
+
+ <td>Prevent the user from changing pop-up preferences</td>
+ </tr>
+
+ <tr>
+ <td><a href="#Proxy">Proxy</a></td>
+
+ <td>Specify proxy settings</td>
+ </tr>
+
+ <tr>
+ <td><a href="#SanitizeOnShutdown">SanitizeOnShutdown</a></td>
- <td>Turn off application update</td>
+ <td>Clear all data when Firefox is closed</td>
+ </tr>
+
+ <tr>
+ <td><a href="#SearchBar">SearchBar</a></td>
+
+ <td>Specify if the search bar is separate or combined with the URL bar</td>
+ </tr>
+
+ <tr>
+ <td><a href="#SearchEngines">SearchEngines</a></td>
+
+ <td></td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#SearchEnginesAdd">Add</a></td>
+
+ <td>Specify search engines to be added to Firefox</td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#SearchEnginesDefault">Default</a></td>
+
+ <td>Set the name of the default search engine</td>
+ </tr>
+
+ <tr>
+ <td style="padding-left: 21px"><a href="#SearchEnginesPreventInstalls">PreventInstalls</a></td>
+
+ <td>Prevent the install of search engines from web pages</td>
+ </tr>
+
+ <tr>
+ <td><a href="#WebsiteFilter">WebsiteFilter</a></td>
+
+ <td>Specify websites that the user cannot visit</td>
</tr>
</table>
</dl><a href="#top">Back to top</a>
</div>
-
<div style="margin-left:0px">
- <h3><a name="DisableSetDesktopBackground" id="DisableSetDesktopBackground"></a>DisableSetDesktopBackground</h3>
-
- <span>Disable setting an image as the desktop background.</span>
-
- <dl>
- <dt style="font-weight:bold">Data type:</dt>
-
- <dd>Boolean [Windows:REG_DWORD]</dd>
-
- <dt style="font-weight:bold">Windows registry location for Windows clients:</dt>
-
- <dd style="font-family:monospace">Software\Policies\Mozilla\Firefox\DisableSetDesktopBackground</dd>
-
- <dt style="font-weight:bold">Policies.json:</dt>
-
- <dd style="font-family:monospace">DisableSetDesktopBackground</dd>
-
- <dt style="font-weight:bold">Supported on:</dt>
-
- <dd>
- <ul style="padding-left:0px;margin-left:0px">
- <li>Firefox (Linux, Mac, Windows) RR and ESR since version 60</li>
- </ul>
- </dd>
-
- <dt style="font-weight:bold">CCK2 Equivalent:</dt>
-
- <dd style="font-family:monospace">removeSetDesktopBackground</dd>
-
- <dt style="font-weight:bold">Preferences modified:</dt>
-
- <dd>N/A</dd>
-
- <dt style="font-weight:bold">Description:</dt>
-
- <dd>
- <p>If this policy is set to true, the "Set As Desktop Background..." menuitem is removed.
- </dd>
- </dl><a href="#top">Back to top</a>
+ <h3><a name="Certificates" id="Certificates"></a>Certificates</h3><span>Manage Enterprise Certificates on Windows</span>
+ <dl>
+ </dl><a href="#top">Back to top</a>
</div>
-
- <div style="margin-left:0px">
+
+ <div style="margin-left:50px">
<h3><a name="ImportEnterpriseRoots" id="ImportEnterpriseRoots"></a>ImportEnterpriseRoots</h3>
<span>Read certificates from the Windows certificate store</span>
</div>
<div style="margin-left:0px">
+ <h3><a name="Cookies" id="Cookies"></a>Cookies</h3><span>Manage cookie settings</span>
+ <dl>
+ </dl><a href="#top">Back to top</a>
+ </div>
+
+ <div style="margin-left:50px">
<h3><a name="CookiesAllow" id="CookiesAllow"></a>Cookies - Allow</h3>
<span>Sites that are always allowed to set cookies</span>
</dl><a href="#top">Back to top</a>
</div>
- <div style="margin-left:0px">
+ <div style="margin-left:50px">
<h3><a name="CookiesBlock" id="CookieBlock"></a>Cookies - Block</h3>
<span>Sites that are blocked from setting cookies</span>
</dl><a href="#top">Back to top</a>
</div>
-
- <div style="margin-left:0px">
+ <div style="margin-left:50px">
<h3><a name="CookiesDefault" id="CookiesDefault"></a>Cookies - Default</h3>
<span>Default cookie setting</span>
</dl><a href="#top">Back to top</a>
</div>
- <div style="margin-left:0px">
+ <div style="margin-left:50px">
<h3><a name="CookiesAcceptThirdParty" id="CookiesAcceptThirdParty"></a>Cookies - AcceptThirdParty</h3>
<span>Accept third-party cookies</span>
</dl><a href="#top">Back to top</a>
</div>
- <div style="margin-left:0px">
+ <div style="margin-left:50px">
<h3><a name="CookiesExpireAtSessionEnd" id="CookiesExpireAtSessionEnd"></a>Cookies - ExpireAtSessionEnd</h3>
<span>When cookies expire</span>
</dl><a href="#top">Back to top</a>
</div>
- <div style="margin-left:0px">
+ <div style="margin-left:50px">
<h3><a name="CookiesLocked" id="CookiesLocked"></a>Cookies - Locked</h3>
<span>Don't allow cookie preferences to be changed</span>
</dl><a href="#top">Back to top</a>
</div>
+ <div style="margin-left:0px">
+ <h3><a name="DisableAppUpdate" id="DisableAppUpdate"></a>DisableAppUpdate</h3>
+
+ <span>Disable application updates</span>
+
+ <dl>
+ <dt style="font-weight:bold">Data type:</dt>
+
+ <dd>Boolean [Windows:REG_DWORD]</dd>
+
+ <dt style="font-weight:bold">Windows registry location for Windows clients:</dt>
+
+ <dd style="font-family:monospace">Software\Policies\Mozilla\Firefox\DisableAppUpdate</dd>
+
+ <dt style="font-weight:bold">Policies.json:</dt>
+
+ <dd style="font-family:monospace">DisableAppUpdate</dd>
+
+ <dt style="font-weight:bold">Supported on:</dt>
+
+ <dd>
+ <ul style="padding-left:0px;margin-left:0px">
+ <li>Firefox (Linux, Mac, Windows) ESR only since version 60</li>
+ </ul>
+ </dd>
+
+ <dt style="font-weight:bold">CCK2 Equivalent:</dt>
+
+ <dd style="font-family:monospace">disableFirefoxUpdates</dd>
+
+ <dt style="font-weight:bold">Preferences modified:</dt>
+
+ <dd>N/A</dd>
+
+ <dt style="font-weight:bold">Description:</dt>
+
+ <dd>
+ <p>If this policy is set to true, Firefox updates are disabled and locked.
+ </dd>
+ </dl><a href="#top">Back to top</a>
+ </div>
+
<div style="margin-left:0px">
<h3><a name="DisableMasterPasswordCreation" id="DisableMasterPasswordCreation"></a>DisableMasterPasswordCreation</h3>
</div>
<div style="margin-left:0px">
- <h3><a name="DisableAppUpdate" id="DisableAppUpdate"></a>DisableAppUpdate</h3>
+ <h3><a name="DisableSetDesktopBackground" id="DisableSetDesktopBackground"></a>DisableSetDesktopBackground</h3>
- <span>Disable application updates</span>
+ <span>Disable setting an image as the desktop background.</span>
<dl>
<dt style="font-weight:bold">Data type:</dt>
<dt style="font-weight:bold">Windows registry location for Windows clients:</dt>
- <dd style="font-family:monospace">Software\Policies\Mozilla\Firefox\DisableAppUpdate</dd>
+ <dd style="font-family:monospace">Software\Policies\Mozilla\Firefox\DisableSetDesktopBackground</dd>
<dt style="font-weight:bold">Policies.json:</dt>
- <dd style="font-family:monospace">DisableAppUpdate</dd>
+ <dd style="font-family:monospace">DisableSetDesktopBackground</dd>
<dt style="font-weight:bold">Supported on:</dt>
<dd>
<ul style="padding-left:0px;margin-left:0px">
- <li>Firefox (Linux, Mac, Windows) ESR only since version 60</li>
+ <li>Firefox (Linux, Mac, Windows) RR and ESR since version 60</li>
</ul>
</dd>
<dt style="font-weight:bold">CCK2 Equivalent:</dt>
- <dd style="font-family:monospace">disableFirefoxUpdates</dd>
+ <dd style="font-family:monospace">removeSetDesktopBackground</dd>
<dt style="font-weight:bold">Preferences modified:</dt>
<dt style="font-weight:bold">Description:</dt>
<dd>
- <p>If this policy is set to true, Firefox updates are disabled and locked.
+ <p>If this policy is set to true, the "Set As Desktop Background..." menuitem is removed.
</dd>
</dl><a href="#top">Back to top</a>
</div>
-
+
</body>
</html>
<stringTable >
<string id="SUPPORTED_WINXPSP2">Microsoft Windows XP SP2 oder höher</string>
<string id="SUPPORTED_FF60">Firefox 60 oder höher</string>
+ <string id="SUPPORTED_FF62">Firefox 62 or later, Firefox 60.2 ESR or later</string>
<string id="SUPPORTED_FF60ESR">Firefox 60 ESR oder höher</string>
<string id="firefox">Firefox</string>
<string id="Permissions_group">Berechtigungen</string>
+ <string id="Camera_group">Camera</string>
+ <string id="Microphone_group">Microphone</string>
+ <string id="Location_group">Location</string>
+ <string id="Notifications_group">Notifications</string>
<string id="Authentication_group">Authentifizierung</string>
<string id="Bookmarks_group">Lesezeichen</string>
<string id="Certificates_group">Zertifikate</string>
<string id="Search_group">Suche</string>
<string id="Allow">Erlaubte Seiten</string>
<string id="Block">Gesperrte Seiten</string>
+ <string id="AppUpdateURL">Benutzerdefinierte Update-URL</string>
+ <string id="AppUpdateURL_Explain">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.
+
+Wenn diese Policy deaktiviert oder nicht konfiguriert ist, dann wird die Standard-URL verwendet.</string>
<string id="Authentication_SPNEGO">SPNEGO</string>
<string id="Authentication_SPNEGO_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, dürfen Webseiten die SPNEGO-Authentifizierung verwenden. Erlaubte Formate für die Einträge in der Liste sind mydomain.com oder https://myotherdomain.com.
Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, verwenden Webseiten die NTLM Authentifizierung nicht.
Für weitere Informationen, besuchen Sie https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication.</string>
+ <string id="Authentication_AllowNonFQDN">Allow Non FQDN</string>
+ <string id="Authentication_AllowNonFQDN_Explain">If this policy is enabled, you can always allow SPNEGO or NTLM on non FQDNs (fully qualified domain names).
+
+If this policy is disabled or not configured, NTLM and SPNEGO are not enabled on non FQDNs.</string>
<string id="BlockAboutAddons">Zugriff auf Add-ons Manager verhindern</string>
<string id="BlockAboutAddons_Explain" >Wenn Sie die Richtlinieneinstellung aktivieren, können Benutzer nicht auf den Add-on Manager oder about:addons zugreifen.
<string id="DisableAppUpdate">Update deaktivieren</string>
<string id="DisableAppUpdate_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, wird nicht nach Updates gesucht.
-Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden Updates automatisch installiert.</string>
+Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden Updates automatisch installiert.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="DisableBuiltinPDFViewer">PDF-Ansicht (PDF.js) deaktivieren</string>
<string id="DisableBuiltinPDFViewer_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, werden PDF-Dateien nicht in Firefox angezeigt.
<string id="DisableSystemAddonUpdate">System Addon Updates deaktivieren</string>
<string id="DisableSystemAddonUpdate_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, werden neue System-Add-ons nicht installiert und installierte Add-ons werden nicht mit Updates versorgt.
-Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden System Add-ons installiert und mit Updates versorgt.</string>
+Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden System Add-ons installiert und mit Updates versorgt.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="DisableTelemetry">Telemetry deaktivieren</string>
<string id="DisableTelemetry_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, werden keine Telemetriedaten versendet.
Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden Telemetriedaten versendet.
-Mozilla empfiehlt, die Telemetrie nicht zu deaktivieren. Durch Telemetrie gesammelte Informationen helfen uns, ein besseres Produkt für Unternehmen wie Ihres zu erstellen.</string>
+Mozilla empfiehlt, die Telemetrie nicht zu deaktivieren. Durch Telemetrie gesammelte Informationen helfen uns, ein besseres Produkt für Unternehmen wie Ihres zu erstellen.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="DisplayBookmarksToolbar">Lesezeichenleiste anzeigen</string>
<string id="DisplayBookmarksToolbar_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, wird die Lesezeichenleiste standardmäßig in der Menüleiste angezeigt, der Benutzer kann diese wieder ausblenden.
<string id="Extensions_Install_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, können Sie eine Liste mit Erweiterungs-URLs oder -pfaden angeben, die beim Start von Firefox installiert werden.
Jedes Mal, wenn diese Liste geändert wird, werden die Erweiterungen erneut installiert.
-Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden keine Erweiterungen installiert.</string>
+Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden keine Erweiterungen installiert.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="Extensions_Uninstall">Erweiterungen deinstallieren</string>
<string id="Extensions_Uninstall_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, können Sie eine Liste mit Erweiterungs-IDs angeben, die beim Start deinstalliert werden.
Jedes Mal, wenn diese Liste geändert wird, werden die Erweiterungen deinstalliert.
-Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden keine Erweiterungen deinstalliert.</string>
+Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden keine Erweiterungen deinstalliert.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="Extensions_Locked">Erweiterungen deaktivieren und löschen verhindern</string>
<string id="Extensions_Locked_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, können Sie eine Liste mit Erweiterungs-IDs angeben, die den Benutzer hindert die angegebenen Erweiterungen zu deinstallieren oder zu deaktivieren.
-Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden keine Erweiterungen gesperrt.</string>
+Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden keine Erweiterungen gesperrt.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
+ <string id="HardwareAcceleration">Hardware Acceleration</string>
+ <string id="HardwareAcceleration_Explain">If this policy is disabled, hardware acceleration and cannot be enabled.
+
+If this policy is enabled or not configured, hardware acceleration is enabled.</string>
<string id="OfferToSaveLogins">Zugangsdaten und Passwörter für Webseiten speichen</string>
<string id="OfferToSaveLogins_Explain">Wenn Sie die Richtlinieneinstellung aktivieren oder nicht konfigurieren, fordert Firefox zum speichern von Logindaten und Passwörtern auf.
Wenn Sie die Richtlinieneinstellungen nicht konfigurieren oder aktivieren, können Add-ons installiert werden.</string>
<string id="Cookies_Allow_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, sind Cookies immer für die angegebenen URLs erlaubt. Wenn eine Top-Level-Domain angegeben ist (http://example.org), sind Cookies auch für alle Sub-Domains zulässig.
+
Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, wird die Standard Cookie Richtlinie verwendet.</string>
<string id="Cookies_Block_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, sind Cookies für die angegebenen URLs gesperrt. Wenn eine Top-Level-Domain angegeben ist (http://example.org), werden Cookies von allen Sub-Domains ebenfalls blockiert.
<string id="Cookies_Locked_Explain">Wenn Sie die Richtlinieneinstellung aktivieren können Benutzer die Cookie-Einstellungen nicht ändern.
Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, können Benutzer die Cookie-Einstellungen ändern.</string>
+ <string id="Camera_Allow_Explain">If this policy is enabled, access to the camera is always allowed for the origins indicated.
+
+If this policy is disabled or not configured, the default camera policy is followed.</string>
+ <string id="Camera_Block_Explain">If this policy is enabled, access to the camera is blocked for the origins indicated.
+
+If this policy is disabled or not configured, access to the camera is not blocked by default.</string>
+ <string id="Camera_BlockNewRequests">Block new requests asking to access the camera</string>
+ <string id="Camera_BlockNewRequests_Explain">If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to access the camera.
+
+If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to access the camera.</string>
+ <string id="Camera_Locked">Do not allow preferences to be changed</string>
+ <string id="Camera_Locked_Explain">If this policy is enabled, camera preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their camera preferences.</string>
+ <string id="Microphone_Allow_Explain">If this policy is enabled, access to the microphone is always allowed for the origins indicated.
+
+If this policy is disabled or not configured, the default microphone policy is followed.</string>
+ <string id="Microphone_Block_Explain">If this policy is enabled, access to the microphone is blocked for the origins indicated.
+
+If this policy is disabled or not configured, access to the microphone is not blocked by default.</string>
+ <string id="Microphone_BlockNewRequests">Block new requests asking to access the microphone</string>
+ <string id="Microphone_BlockNewRequests_Explain">If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to access the microphone.
+
+If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to access the microphone.</string>
+ <string id="Microphone_Locked">Do not allow preferences to be changed</string>
+ <string id="Microphone_Locked_Explain">If this policy is enabled, microphone preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their camera preferences.</string>
+ <string id="Location_Allow_Explain">If this policy is enabled, access to location is always allowed for the origins indicated.
+
+If this policy is disabled or not configured, the default location policy is followed.</string>
+ <string id="Location_Block_Explain">If this policy is enabled, access to location is blocked for the origins indicated.
+
+If this policy is disabled or not configured, access to location is not blocked by default.</string>
+ <string id="Location_BlockNewRequests">Block new requests asking to access location</string>
+ <string id="Location_BlockNewRequests_Explain">If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to access location.
+
+If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to access location.</string>
+ <string id="Location_Locked">Do not allow preferences to be changed</string>
+ <string id="Location_Locked_Explain">If this policy is enabled, location preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change location preferences.</string>
+ <string id="Notifications_Allow_Explain">If this policy is enabled, notifications can always be sent for the origins indicated.
+
+If this policy is disabled or not configured, the default nofication policy is followed.</string>
+ <string id="Notifications_Block_Explain">If this policy is enabled, notifications are always blocked for the origins indicated.
+
+If this policy is disabled or not configured, notifications are not blocked by default.</string>
+ <string id="Notifications_BlockNewRequests">Block new requests asking to send notifications</string>
+ <string id="Notifications_BlockNewRequests_Explain">If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to send notifications.
+
+If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to send notifications.</string>
+ <string id="Notifications_Locked">Do not allow preferences to be changed</string>
+ <string id="Notifications_Locked_Explain">If this policy is enabled, notification preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their notification preferences.</string>
<string id="FlashPlugin_Allow_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, ist Flash standardmäßig für die angegebenen URLs aktiviert, es sei denn, Flash ist vollständig deaktiviert. Wenn eine Top-Level-Domäne angegeben ist (http://example.org), ist Flash auch für alle Sub-Domains zulässig.
Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, wird die Standard Flash Richtlinie verwendet.</string>
<string id="OverrideFirstRunPage">Willkommen Seite ändern</string>
<string id="OverrideFirstRunPage_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, können Sie eine URL angeben, die als Willkommensseite beim ersten Start von Firefox verwendet werden soll. Wenn Sie die URL leer lassen, wird keine Willkommensseite angezeigt.
-Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, wird die Standard Willkommensseite angezeigt.</string>
+Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, wird die Standard Willkommensseite angezeigt.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="OverridePostUpdatePage">Upgrade Seite ändern</string>
<string id="OverridePostUpdatePage_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, können Sie eine URL angeben, die nach der Aktualisierung von Firefox angezeigt wird. Wenn Sie die URL leer lassen, wird keine Upgrade-Seite angezeigt.
-Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren wird eine Upgrade Seite angezeigt.</string>
+Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren wird eine Upgrade Seite angezeigt.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="SanitizeOnShutdown">Die Chronik löschen, wenn Firefox geschlossen wird</string>
<string id="SanitizeOnShutdown_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, werden alle Daten der Chronik gelöscht, wenn Firefox geschlossen wird. Dies beinhaltet Browsing & Download Verlauf, Cookies, Aktive Logins, Cache, Form & Suchverlauf, Website-Einstellungen und Offline-Website-Daten.
<string id="WebsiteFilter_Block">Gesperrte Webseites</string>
<string id="WebsiteFilter_Block_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, können Sie die Übereinstimmungsmuster für zu blockierende Webseiten angeben. Die Übereinstimmungsmuster sind unter https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns dokumentiert. Derzeit werden nur http / https-Zugriffe unterstützt. Es gibt eine Beschränkung von 1000 Einträgen.
-Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden keine Webseiten gesperrt.</string>
+Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden keine Webseiten gesperrt.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="WebsiteFilter_Exceptions">Ausnahmen zu gesperrten Webseiten</string>
<string id="WebsiteFilter_Exceptions_Explain">Wenn Sie die Richtlinieneinstellung aktivieren und der Webseiten-Filter aktiviert ist, können Sie Übereinstimmungsmuster für Webseiten angeben, die nicht blockiert werden sollen. Die Übereinstimmungsmuster sind unter https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns dokumentiert. Derzeit werden nur http / https-Zugriffe unterstützt. Es gibt eine Beschränkung von 1000 Einträgen.
-Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, gibt es keine Ausnahmen für den Webseiten-Filter.</string>
+Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, gibt es keine Ausnahmen für den Webseiten-Filter.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="Bookmark1">Lesezeichen 1</string>
<string id="Bookmark2">Lesezeichen 2</string>
<string id="Bookmark3">Lesezeichen 3</string>
<string id="HomepageURL">Startseite</string>
<string id="HomepageURL_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, können Sie eine Startseite festlegen. Sie können die Startseite auch sperren.
-Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, können Benutzer eine Startseite festlegen.</string>
+Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, können Benutzer eine Startseite festlegen.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="HomepageAdditional">Zusätzliche Startseiten</string>
<string id="HomepageAdditional_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, können Sie zusätzliche Startseiten festlegen. Diese werden in mehreren Registerkarten geöffnet.
-Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, wird nur eine Startseite angezeigt.</string>
+Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, wird nur eine Startseite angezeigt.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="Proxy">Proxy Einstellungen</string>
<string id="Proxy_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, können Sie die Netzwerkeinstellungen ändern und sperren.
<string id="SearchEngines_PreventInstalls_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, können Benutzer keine Suchmaschinen hinzufügen.
Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, können Suchmaschinen hinzugefügt werden.</string>
+ <string id="SearchEngines_Remove">Remove Search Engines</string>
+ <string id="SearchEngines_Remove_Explain">If this policy is enabled, you can specify the names of engines to be removed or hidden.
+
+If this policy is disabled or not configured, search engines will not be removed or hidden.</string>
</stringTable>
<presentationTable>
+ <presentation id="AppUpdateURL">
+ <textBox refId="AppUpdateURL">
+ <label>URL:</label>
+ </textBox>
+ </presentation>
<presentation id="Authentication">
<listBox refId="Authentication"/>
</presentation>
+ <presentation id="Authentication_AllowNonFQDN">
+ <checkBox refId="Authentication_AllowNonFQDN_NTLM">Always allow NTLM on non FQDNs</checkBox>
+ <checkBox refId="Authentication_AllowNonFQDN_SPNEGO">Always allow SPNEGO on non FQDNs</checkBox>
+ </presentation>
<presentation id="Extensions">
<listBox refId="Extensions"/>
</presentation>
<label/>
</textBox>
</presentation>
+ <presentation id="SearchEngines_Remove">
+ <listBox refId="SearchEngines_Remove"/>
+ </presentation>
<presentation id="Proxy">
<checkBox refId="ProxyLocked">Ändern der Proxy-Einstellungen nicht erlauben</checkBox>
<text>Verbindungs-Einstellungen</text>
<resources >
<stringTable >
<string id="SUPPORTED_WINXPSP2">Microsoft Windows XP SP2 or later</string>
- <string id="SUPPORTED_FF60">Firefox 60 or later</string>
+ <string id="SUPPORTED_FF60">Firefox 60 or later, Firefox 60 ESR or later</string>
+ <string id="SUPPORTED_FF62">Firefox 62 or later, Firefox 60.2 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="Camera_group">Camera</string>
+ <string id="Microphone_group">Microphone</string>
+ <string id="Location_group">Location</string>
+ <string id="Notifications_group">Notifications</string>
<string id="Authentication_group">Authentication</string>
<string id="Bookmarks_group">Bookmarks</string>
<string id="Certificates_group">Certificates</string>
<string id="Search_group">Search</string>
<string id="Allow">Allowed Sites</string>
<string id="Block">Blocked Sites</string>
+ <string id="AppUpdateURL">Custom Update URL</string>
+ <string id="AppUpdateURL_Explain">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.
+
+If this policy is disabled or not configured, the default update URL is used.</string>
<string id="Authentication_SPNEGO">SPNEGO</string>
<string id="Authentication_SPNEGO_Explain">If this policy is enabled, the specified websites are permitted to engage in SPNEGO authentication with the browser. Entries in the list are formatted as mydomain.com or https://myotherdomain.com.
-If this policy is disabled or not configured, No websites are permitted to engage in SPNEGO authentication with the browser.
+If this policy is disabled or not configured, no websites are permitted to engage in SPNEGO authentication with the browser.
For more information, see https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication.</string>
<string id="Authentication_Delegated">Delegated</string>
<string id="Authentication_NTLM">NTLM</string>
<string id="Authentication_NTLM_Explain">If this policy is enabled, the specified websites are trusted to use NTLM authentification. Entries in the list are formatted as mydomain.com or https://myotherdomain.com.
-If this policy is disabled or not configured, No websites are trusted to use NTLM authentification.
+If this policy is disabled or not configured, no websites are trusted to use NTLM authentification.
For more information, see https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication.</string>
+ <string id="Authentication_AllowNonFQDN">Allow Non FQDN</string>
+ <string id="Authentication_AllowNonFQDN_Explain">If this policy is enabled, you can always allow SPNEGO or NTLM on non FQDNs (fully qualified domain names).
+
+If this policy is disabled or not configured, NTLM and SPNEGO are not enabled on non FQDNs.</string>
<string id="BlockAboutAddons">Block Add-ons Manager</string>
- <string id="BlockAboutAddons_Explain" >If this policy is enabled, the user can not access the Add-ons Manager or about:addons.
+ <string id="BlockAboutAddons_Explain" >If this policy is enabled, the user cannot access the Add-ons Manager or about:addons.
If this policy is disabled or not configured, the user can access the Add-ons Manager and about:addons.</string>
<string id="BlockAboutConfig">Block about:config</string>
- <string id="BlockAboutConfig_Explain">If this policy is enabled, the user can not access about:config.
+ <string id="BlockAboutConfig_Explain">If this policy is enabled, the user cannot access about:config.
If this policy is disabled or not configured, the user can access about:config.</string>
<string id="BlockAboutProfiles">Block about:profiles</string>
- <string id="BlockAboutProfiles_Explain">If this policy is enabled, the user can not access about:profiles.
+ <string id="BlockAboutProfiles_Explain">If this policy is enabled, the user cannot access about:profiles.
If this policy is disabled or not configured, the user can access about:profiles.</string>
<string id="BlockAboutSupport">Block Troubleshooting Information</string>
- <string id="BlockAboutSupport_Explain">If this policy is enabled, the user can not access Troubleshooting Information or about:support.
+ <string id="BlockAboutSupport_Explain">If this policy is enabled, the user cannot access Troubleshooting Information or about:support.
If this policy is disabled or not configured, the user can access Troubleshooting Information and about:support.</string>
<string id="DisableSetDesktopBackground">Disable Set Desktop Background</string>
- <string id="DisableSetDesktopBackground_Explain">If this policy is enabled, the user can not set an image as their desktop background.
+ <string id="DisableSetDesktopBackground_Explain">If this policy is enabled, the user cannot set an image as their desktop background.
If this policy is disabled or not configured, users can set images as their desktop background.</string>
<string id="Certificates_ImportEnterpriseRoots">Import Enterprise Roots</string>
If this policy is disabled or not configured, users can create a master password.</string>
<string id="DisableAppUpdate">Disable Update</string>
- <string id="DisableAppUpdate_Explain">If this policy is enabled, the browser does not receive updates.
+ <string id="DisableAppUpdate_Explain">If this policy is enabled, the browser does not receive udpates.
+
+If this policy is disabled or not configured, the browser receives updates.
-If this policy is disabled or not configured, the browser receives updates.</string>
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="DisableBuiltinPDFViewer">Disable Built-in PDF Viewer (PDF.js)</string>
<string id="DisableBuiltinPDFViewer_Explain">If this policy is enabled, PDF files are not viewed within Firefox.
If this policy is disabled or not configured, certificate errors can be overridden.</string>
<string id="DisableSecurityBypass_SafeBrowsing">Prevent overriding safe browsing errors</string>
- <string id="DisableSecurityBypass_SafeBrowsing_Explain">If this policy is enabled, a user can not bypass the warning and visit a harmful site.
+ <string id="DisableSecurityBypass_SafeBrowsing_Explain">If this policy is enabled, a user cannot bypass the warning and visit a harmful site.
If this policy is disabled or not configured, a user can choose to visit a harmful site.</string>
<string id="DisableSystemAddonUpdate">Disable System Addon Updates</string>
<string id="DisableSystemAddonUpdate_Explain">If this policy is enabled, new system add-ons will not be installed and existing system add-ons will not be updated.
-If this policy is disabled or not configured, system add-ons are installed and updated.</string>
+If this policy is disabled or not configured, system add-ons are installed and updated.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="DisableTelemetry">Disable Telemetry</string>
<string id="DisableTelemetry_Explain">If this policy is enabled, telemetry is not uploaded.
If this policy is disabled or not configured, telemetry is collected and uploaded.
-Mozilla recommends that you do not disable telemetry. Information collected through telemetry helps us build a better product for businesses like yours.</string>
+Mozilla recommends that you do not disable telemetry. Information collected through telemetry helps us build a better product for businesses like yours.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="DisplayBookmarksToolbar">Display Bookmarks Toolbar</string>
<string id="DisplayBookmarksToolbar_Explain">If this policy is enabled, the bookmarks toolbar is displayed by default. The user can still hide it.
<string id="Extensions_Install_Explain">If this policy is enabled, you can specify a list of extension URLs or paths that will be installed when Firefox is started.
Anytime this list is changed, the extensions will be reinstalled.
-If this policy is disabled or not configured, no extensions are installed.</string>
+If this policy is disabled or not configured, no extensions are installed.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="Extensions_Uninstall">Extensions to Uninstall</string>
<string id="Extensions_Uninstall_Explain">If this policy is enabled, you can specify a list of extension IDs that will be uninstalled.
Anytime this list is changed, the extensions will be uninstalled.
-If this policy is disabled or not configured, no extensions are uninstalled.</string>
+If this policy is disabled or not configured, no extensions are uninstalled.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="Extensions_Locked">Prevent extensions from being disabled or removed</string>
<string id="Extensions_Locked_Explain">If this policy is enabled, you can specify a list of extension IDs that the user will be unable to uninstall or disable.
-If this policy is disabled or not configured, no extensions are locked.</string>
+If this policy is disabled or not configured, no extensions are locked
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
+ <string id="HardwareAcceleration">Hardware Acceleration</string>
+ <string id="HardwareAcceleration_Explain">If this policy is disabled, hardware acceleration and cannot be enabled.
+
+If this policy is enabled or not configured, hardware acceleration is enabled.</string>
<string id="OfferToSaveLogins">Offer to save logins</string>
<string id="OfferToSaveLogins_Explain">If this policy is enabled or not configured, Firefox will offer to save website logins and passwords.
-If this policy is disabled, firefox will not offer to save website logins and passwords.</string>
+If this policy is disabled, Firefox will not offer to save website logins and passwords.</string>
<string id="PopupBlocking_Allow_Explain">If this policy is enabled, pop-up windows are always allowed for the origins indicated. If a top level domain is specified (http://example.org), pop-up windows are allowed for all subdomains as well.
If this policy is disabled or not configured, the default pop-up policy is followed.</string>
If this policy is not configured or enabled, popups are not allowed from websites.</string>
<string id="PopupBlocking_Locked">Do not allow preferences to be changed</string>
- <string id="PopupBlocking_Locked_Explain">If this policy is enabled pop-up preferences cannot be changed by the user.
+ <string id="PopupBlocking_Locked_Explain">If this policy is enabled, pop-up preferences cannot be changed by the user.
If this policy is disabled or not configured, the user can change their pop-up preferences.</string>
<string id="InstallAddonsPermission_Allow_Explain">If this policy is enabled, add-ons are always allowed for the origins indicated unless add-on install is disabled. If a top level domain is specified (http://example.org), add-ons are allowed for all subdomains as well.
This setting is ignored if this policy is disabled or not configured or if cookies are not allowed.</string>
<string id="Cookies_Locked">Do not allow preferences to be changed</string>
- <string id="Cookies_Locked_Explain">If this policy is enabled cookie preferences cannot be changed by the user.
+ <string id="Cookies_Locked_Explain">If this policy is enabled, cookie preferences cannot be changed by the user.
If this policy is disabled or not configured, the user can change their cookie preferences.</string>
+ <string id="Camera_Allow_Explain">If this policy is enabled, access to the camera is always allowed for the origins indicated.
+
+If this policy is disabled or not configured, the default camera policy is followed.</string>
+ <string id="Camera_Block_Explain">If this policy is enabled, access to the camera is blocked for the origins indicated.
+
+If this policy is disabled or not configured, access to the camera is not blocked by default.</string>
+ <string id="Camera_BlockNewRequests">Block new requests asking to access the camera</string>
+ <string id="Camera_BlockNewRequests_Explain">If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to access the camera.
+
+If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to access the camera.</string>
+ <string id="Camera_Locked">Do not allow preferences to be changed</string>
+ <string id="Camera_Locked_Explain">If this policy is enabled, camera preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their camera preferences.</string>
+ <string id="Microphone_Allow_Explain">If this policy is enabled, access to the microphone is always allowed for the origins indicated.
+
+If this policy is disabled or not configured, the default microphone policy is followed.</string>
+ <string id="Microphone_Block_Explain">If this policy is enabled, access to the microphone is blocked for the origins indicated.
+
+If this policy is disabled or not configured, access to the microphone is not blocked by default.</string>
+ <string id="Microphone_BlockNewRequests">Block new requests asking to access the microphone</string>
+ <string id="Microphone_BlockNewRequests_Explain">If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to access the microphone.
+
+If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to access the microphone.</string>
+ <string id="Microphone_Locked">Do not allow preferences to be changed</string>
+ <string id="Microphone_Locked_Explain">If this policy is enabled, microphone preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their camera preferences.</string>
+ <string id="Location_Allow_Explain">If this policy is enabled, access to location is always allowed for the origins indicated.
+
+If this policy is disabled or not configured, the default location policy is followed.</string>
+ <string id="Location_Block_Explain">If this policy is enabled, access to location is blocked for the origins indicated.
+
+If this policy is disabled or not configured, access to location is not blocked by default.</string>
+ <string id="Location_BlockNewRequests">Block new requests asking to access location</string>
+ <string id="Location_BlockNewRequests_Explain">If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to access location.
+
+If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to access location.</string>
+ <string id="Location_Locked">Do not allow preferences to be changed</string>
+ <string id="Location_Locked_Explain">If this policy is enabled, location preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change location preferences.</string>
+ <string id="Notifications_Allow_Explain">If this policy is enabled, notifications can always be sent for the origins indicated.
+
+If this policy is disabled or not configured, the default nofication policy is followed.</string>
+ <string id="Notifications_Block_Explain">If this policy is enabled, notifications are always blocked for the origins indicated.
+
+If this policy is disabled or not configured, notifications are not blocked by default.</string>
+ <string id="Notifications_BlockNewRequests">Block new requests asking to send notifications</string>
+ <string id="Notifications_BlockNewRequests_Explain">If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to send notifications.
+
+If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to send notifications.</string>
+ <string id="Notifications_Locked">Do not allow preferences to be changed</string>
+ <string id="Notifications_Locked_Explain">If this policy is enabled, notification preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their notification preferences.</string>
<string id="FlashPlugin_Allow_Explain">If this policy is enabled, Flash is activated by default for the origins indicated unless Flash is completely disabled. If a top level domain is specified (http://example.org), Flash is allowed for all subdomains as well.
If this policy is disabled or not configured, the default Flash policy is followed.</string>
- <string id="FlashPlugin_Block_Explain">If this policy is enabled, Flash is blocked for the origins indicated. If a top level domain is specified (http://example.org), Flas is blocked from all subdomains as well.
+ <string id="FlashPlugin_Block_Explain">If this policy is enabled, Flash is blocked for the origins indicated. If a top level domain is specified (http://example.org), Flash is blocked from all subdomains as well.
If this policy is disabled or not configured, the default Flash policy is followed.</string>
<string id="FlashPlugin_Default">Activate Flash on websites</string>
- <string id="FlashPlugin_Default_Explain">If this policy is enabled, Flash is always activates on websites.
+ <string id="FlashPlugin_Default_Explain">If this policy is enabled, Flash is always activated on websites.
If this policy is disabled, Flash is never activated on websites, even if they are in the specified in the Allow list.
-If this policy is not configured Flash, Flash is click to play.</string>
+If this policy is not configured, Flash is click to play.</string>
<string id="FlashPlugin_Locked">Do not allow preferences to be changed</string>
- <string id="FlashPlugin_Locked_Explain">If this policy is enabled Flash preferences cannot be changed by the user.
+ <string id="FlashPlugin_Locked_Explain">If this policy is enabled, Flash preferences cannot be changed by the user.
If this policy is disabled or not configured, the user can change their Flash preferences.</string>
<string id="OverrideFirstRunPage">Override the first run page</string>
<string id="OverrideFirstRunPage_Explain">If this policy is enabled, you can specify a URL to be used as the first run page. If you leave the URL blank, no first run page will be shown.
-If this policy is disabled or not configured the first run page is displayed.</string>
+If this policy is disabled or not configured, the first run page is displayed.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="OverridePostUpdatePage">Override the upgrade page</string>
<string id="OverridePostUpdatePage_Explain">If this policy is enabled, you can specify a URL to be displayed after Firefox is updated. If you leave the URL blank, no upgrade page will be shown.
-If this policy is disabled or not configured the upgrade is displayed.</string>
+If this policy is disabled or not configured, the upgrade is displayed.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="SanitizeOnShutdown">Clear all data when browser is closed</string>
<string id="SanitizeOnShutdown_Explain">If this policy is enabled, all data is cleared when Firefox is closed. This includes Browsing & Download History, Cookies, Active Logins, Cache, Form & Search History, Site Preferences and Offline Website Data.
If this policy is disabled or not configured, data is not cleared when the browser is closed.</string>
<string id="WebsiteFilter_Block">Blocked websites</string>
- <string id="WebsiteFilter_Block_Explain">If this policy is enabled, you can specify match patterns that indicate sites to be blocked. The match patterns are documented at https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Only http/https accesses are supported at the moment. There is a 1000 entry limit.",
+ <string id="WebsiteFilter_Block_Explain">If this policy is enabled, you can specify match patterns that indicate sites to be blocked. The match patterns are documented at https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Only http/https addresses are supported at the moment. There is a 1000 entry limit.
+
+If this policy is disabled or not configured, no websites are blocked.
-If this policy is disabled or not configured, no websites are blocked.</string>
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="WebsiteFilter_Exceptions">Exceptions to blocked websites</string>
- <string id="WebsiteFilter_Exceptions_Explain">If this policy is enabled, and the website filter is enabled, you can specify match patterns for sites you do not want to block. The match patterns are documented at https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Only http/https accesses are supported at the moment. There is a 1000 entry limit.",
+ <string id="WebsiteFilter_Exceptions_Explain">If this policy is enabled, and the website filter is enabled, you can specify match patterns for sites you do not want to block. The match patterns are documented at https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Only http/https addresses are supported at the moment. There is a 1000 entry limit.
-If this policy is disabled or not configured, there are no exceptions to the website filter.</string>
+If this policy is disabled or not configured, there are no exceptions to the website filter.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="Bookmark01">Bookmark One</string>
<string id="Bookmark02">Bookmark Two</string>
<string id="Bookmark03">Bookmark Three</string>
<string id="Bookmark50">Bookmark Fifty</string>
<string id="Bookmark_Explain">If this policy is enabled, you can configure a bookmark be added to Firefox. Due to a bug, you must select the location. Note that you must specify the bookmarks in order.
-If this policy is not configured or disabled, a new bookmark is not added.</string>
+If this policy is disabled or not configured, a new bookmark is not added.</string>
<string id="BookmarkPlacementToolbar">Toolbar</string>
<string id="BookmarkPlacementMenu">Menu</string>
<string id="NoDefaultBookmarks">No Default Bookmarks</string>
<string id="HomepageURL">URL for Home page</string>
<string id="HomepageURL_Explain">If this policy is enabled, you can set a default home page. You can also lock the home page.
-If this policy is disabled or not configured, the user can set and change the home page.</string>
+If this policy is disabled or not configured, the user can set and change the home page.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="HomepageAdditional">Additional Homepages</string>
<string id="HomepageAdditional_Explain">If this policy is enabled, you can have additional home pages. They are opened in multiple tabs.
-If this policy is disabled or not configured, there is only one home page.</string>
+If this policy is disabled or not configured, there is only one home page.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
<string id="Proxy">Proxy Settings</string>
<string id="Proxy_Explain">If this policy is enabled, you can configure and lock network settings.
<string id="SearchBar">Search bar location</string>
<string id="SearchBar_Explain">If this policy is enabled, you can set whether the search bar is separate from the URL bar.
-If this policy is not configured or disabled, new users get a unified search bar, users upgrading from Firefox 56 and below get a separate search bar.</string>
+If this policy is disabled or not configured, new users get a unified search bar, users upgrading from Firefox 56 and below get a separate search bar.</string>
<string id="SearchEngines_1">Search Engine One</string>
<string id="SearchEngines_2">Search Engine Two</string>
<string id="SearchEngines_3">Search Engine Three</string>
<string id="SearchEngines_5">Search Engine Five</string>
<string id="SearchEngines_Explain">If this policy is enabled, you can configure a search engine to be added to Firefox. Use {searchTerms} to indicate where the search term is placed. Due to a bug, you must select the method (usually GET). Note that you must specify the search engines in order.
-If this policy is not configured or disabled, a new search engine is not added.</string>
+If this policy is disabled or not configured, a new search engine is not added.</string>
<string id="SearchBar_Unified">Unified</string>
<string id="SearchBar_Separate">Separate</string>
<string id="SearchEngine_Method_GET">GET</string>
<string id="SearchEngine_Method_POST">POST</string>
<string id="SearchEngines_Default">Default Search Engine</string>
- <string id="SearchEngines_Default_Explain">If this policy is enabled, you can set type the name of a search engine to be used as the default.
+ <string id="SearchEngines_Default_Explain">If this policy is enabled, you can set the name of a search engine to be used as the default.
-If this policy is not configured or disabled, the Firefox default engine is used.</string>
+If this policy is disabled or not configured, the Firefox default engine is used.</string>
<string id="SearchEngines_PreventInstalls">Prevent Search Engine Installs</string>
<string id="SearchEngines_PreventInstalls_Explain">If this policy is enabled, the user cannot install search engines from web page.
-If this policy is not configured or disabled, search engines can be installed from web pages.</string>
+If this policy is disabled or not configured, search engines can be installed from web pages.</string>
+ <string id="SearchEngines_Remove">Remove Search Engines</string>
+ <string id="SearchEngines_Remove_Explain">If this policy is enabled, you can specify the names of engines to be removed or hidden.
+
+If this policy is disabled or not configured, search engines will not be removed or hidden.</string>
</stringTable>
<presentationTable>
+ <presentation id="AppUpdateURL">
+ <textBox refId="AppUpdateURL">
+ <label>URL:</label>
+ </textBox>
+ </presentation>
<presentation id="Authentication">
<listBox refId="Authentication"/>
</presentation>
+ <presentation id="Authentication_AllowNonFQDN">
+ <checkBox refId="Authentication_AllowNonFQDN_NTLM">Always allow NTLM on non FQDNs</checkBox>
+ <checkBox refId="Authentication_AllowNonFQDN_SPNEGO">Always allow SPNEGO on non FQDNs</checkBox>
+ </presentation>
<presentation id="Extensions">
<listBox refId="Extensions"/>
</presentation>
<label/>
</textBox>
</presentation>
+ <presentation id="SearchEngines_Remove">
+ <listBox refId="SearchEngines_Remove"/>
+ </presentation>
<presentation id="Proxy">
<checkBox refId="ProxyLocked">Don't allow proxy settings to be changed.</checkBox>
<text>Connection Type:</text>
<category displayName="$(string.Search_group)" name="Search">
<parentCategory ref="firefox"/>
</category>
+ <category displayName="$(string.Permissions_group)" name="Permissions">
+ <parentCategory ref="firefox"/>
+ </category>
+ <category displayName="$(string.Camera_group)" name="Camera">
+ <parentCategory ref="Permissions"/>
+ </category>
+ <category displayName="$(string.Microphone_group)" name="Microphone">
+ <parentCategory ref="Permissions"/>
+ </category>
+ <category displayName="$(string.Location_group)" name="Location">
+ <parentCategory ref="Permissions"/>
+ </category>
+ <category displayName="$(string.Notifications_group)" name="Notifications">
+ <parentCategory ref="Permissions"/>
+ </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)">
<list id="Authentication" key="Software\Policies\Mozilla\Firefox\Authentication\NTLM" valuePrefix=""/>
</elements>
</policy>
+ <policy name="Authentication_AllowNonFQDN" class="Both" displayName="$(string.Authentication_AllowNonFQDN)" key="Software\Policies\Mozilla\Firefox\Authentication\AllowNonFQDN" explainText="$(string.Authentication_AllowNonFQDN_Explain)" presentation="$(presentation.Authentication_AllowNonFQDN)">
+ <parentCategory ref="Authentication"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <elements>
+ <boolean id="Authentication_AllowNonFQDN_NTLM" key="Software\Policies\Mozilla\Firefox\Authentication\AllowNonFQDN" valueName="NTLM">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ <boolean id="Authentication_AllowNonFQDN_SPNEGO" key="Software\Policies\Mozilla\Firefox\Authentication\AllowNonFQDN" valueName="SPNEGO">
+ <trueValue>
+ <decimal value="1"/>
+ </trueValue>
+ <falseValue>
+ <decimal value="0"/>
+ </falseValue>
+ </boolean>
+ </elements>
+ </policy>
<policy name="BlockAboutAddons" class="Both" displayName="$(string.BlockAboutAddons)" explainText="$(string.BlockAboutAddons_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="BlockAboutAddons">
<parentCategory ref="firefox"/>
<supportedOn ref="SUPPORTED_FF60"/>
<decimal value="0"/>
</disabledValue>
</policy>
+ <policy name="Camera_Allow" class="Both" displayName="$(string.Allow)" explainText="$(string.Camera_Allow_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions" presentation="$(presentation.Permissions)">
+ <parentCategory ref="Camera"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <elements>
+ <list id="Permissions" key="Software\Policies\Mozilla\Firefox\Permissions\Camera\Allow" valuePrefix=""/>
+ </elements>
+ </policy>
+ <policy name="Camera_Block" class="Both" displayName="$(string.Block)" explainText="$(string.Camera_Block_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions" presentation="$(presentation.Permissions)">
+ <parentCategory ref="Camera"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <elements>
+ <list id="Permissions" key="Software\Policies\Mozilla\Firefox\Camera\Permissions\Block" valuePrefix=""/>
+ </elements>
+ </policy>
+ <policy name="Camera_BlockNewRequests" class="Both" displayName="$(string.Camera_BlockNewRequests)" explainText="$(string.Camera_BlockNewRequests_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions\Camera" valueName="BlockNewRequests">
+ <parentCategory ref="Camera"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="Camera_Locked" class="Both" displayName="$(string.Camera_Locked)" explainText="$(string.Camera_Locked_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions\Camera" valueName="Locked">
+ <parentCategory ref="Camera"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="Microphone_Allow" class="Both" displayName="$(string.Allow)" explainText="$(string.Microphone_Allow_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions" presentation="$(presentation.Permissions)">
+ <parentCategory ref="Microphone"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <elements>
+ <list id="Permissions" key="Software\Policies\Mozilla\Firefox\Permissions\Microphone\Allow" valuePrefix=""/>
+ </elements>
+ </policy>
+ <policy name="Microphone_Block" class="Both" displayName="$(string.Block)" explainText="$(string.Microphone_Block_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions" presentation="$(presentation.Permissions)">
+ <parentCategory ref="Microphone"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <elements>
+ <list id="Permissions" key="Software\Policies\Mozilla\Firefox\Permissions\Microphone\Block" valuePrefix=""/>
+ </elements>
+ </policy>
+ <policy name="Microphone_BlockNewRequests" class="Both" displayName="$(string.Microphone_BlockNewRequests)" explainText="$(string.Microphone_BlockNewRequests_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions\Microphone" valueName="BlockNewRequests">
+ <parentCategory ref="Microphone"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="Microphone_Locked" class="Both" displayName="$(string.Microphone_Locked)" explainText="$(string.Microphone_Locked_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions\Microphone" valueName="Locked">
+ <parentCategory ref="Microphone"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="Location_Allow" class="Both" displayName="$(string.Allow)" explainText="$(string.Location_Allow_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions" presentation="$(presentation.Permissions)">
+ <parentCategory ref="Location"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <elements>
+ <list id="Permissions" key="Software\Policies\Mozilla\Firefox\Permissions\Location\Allow" valuePrefix=""/>
+ </elements>
+ </policy>
+ <policy name="Location_Block" class="Both" displayName="$(string.Block)" explainText="$(string.Location_Block_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions" presentation="$(presentation.Permissions)">
+ <parentCategory ref="Location"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <elements>
+ <list id="Permissions" key="Software\Policies\Mozilla\Firefox\Permissions\Location\Block" valuePrefix=""/>
+ </elements>
+ </policy>
+ <policy name="Location_BlockNewRequests" class="Both" displayName="$(string.Location_BlockNewRequests)" explainText="$(string.Location_BlockNewRequests_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions\Location" valueName="BlockNewRequests">
+ <parentCategory ref="Location"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="Location_Locked" class="Both" displayName="$(string.Location_Locked)" explainText="$(string.Location_Locked_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions\Location" valueName="Locked">
+ <parentCategory ref="Location"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="Notifications_Allow" class="Both" displayName="$(string.Allow)" explainText="$(string.Notifications_Allow_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions" presentation="$(presentation.Permissions)">
+ <parentCategory ref="Notifications"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <elements>
+ <list id="Permissions" key="Software\Policies\Mozilla\Firefox\Permissions\Notifications\Allow" valuePrefix=""/>
+ </elements>
+ </policy>
+ <policy name="Notifications_Block" class="Both" displayName="$(string.Block)" explainText="$(string.Notifications_Block_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions" presentation="$(presentation.Permissions)">
+ <parentCategory ref="Notifications"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <elements>
+ <list id="Permissions" key="Software\Policies\Mozilla\Firefox\Permissions\Notifications\Block" valuePrefix=""/>
+ </elements>
+ </policy>
+ <policy name="Notifications_BlockNewRequests" class="Both" displayName="$(string.Notifications_BlockNewRequests)" explainText="$(string.Notifications_BlockNewRequests_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions\Notifications" valueName="BlockNewRequests">
+ <parentCategory ref="Notifications"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
+ <policy name="Notifications_Locked" class="Both" displayName="$(string.Notifications_Locked)" explainText="$(string.Notifications_Locked_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions\Notifications" valueName="Locked">
+ <parentCategory ref="Notifications"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
<policy name="DisableAppUpdate" class="Both" displayName="$(string.DisableAppUpdate)" explainText="$(string.DisableAppUpdate_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="DisableAppUpdate">
<parentCategory ref="firefox"/>
<supportedOn ref="SUPPORTED_FF60ESR"/>
<decimal value="0"/>
</disabledValue>
</policy>
+ <policy name="HardwareAcceleration" class="Both" displayName="$(string.HardwareAcceleration)" explainText="$(string.HardwareAcceleration_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="HardwareAcceleration">
+ <parentCategory ref="firefox"/>
+ <supportedOn ref="SUPPORTED_FF62"/>
+ <enabledValue>
+ <decimal value="1"/>
+ </enabledValue>
+ <disabledValue>
+ <decimal value="0"/>
+ </disabledValue>
+ </policy>
<policy name="DisableMasterPasswordCreation" class="Both" displayName="$(string.DisableMasterPasswordCreation)" explainText="$(string.DisableMasterPasswordCreation_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="DisableMasterPasswordCreation">
<parentCategory ref="firefox"/>
<supportedOn ref="SUPPORTED_FF60"/>
<decimal value="0"/>
</disabledValue>
</policy>
+ <policy name="SearchEngines_Remove" class="Both" displayName="$(string.SearchEngines_Remove)" explainText="$(string.SearchEngines_Remove_Explain)" key="Software\Policies\Mozilla\Firefox\SearchEngines\Remove" presentation="$(presentation.SearchEngines_Remove)" >
+ <parentCategory ref="Search" />
+ <supportedOn ref="SUPPORTED_FF60ESR" />
+ <elements >
+ <list id="SearchEngines_Remove" key="Software\Policies\Mozilla\Firefox\SearchEngines\Remove" valuePrefix=""/>
+ </elements>
+ </policy>
+ <policy name="AppUpdateURL" class="Both" displayName="$(string.AppUpdateURL)" explainText="$(string.AppUpdateURL_Explain)" key="Software\Policies\Mozilla\Firefox" presentation="$(presentation.AppUpdateURL)" >
+ <parentCategory ref="firefox" />
+ <supportedOn ref="SUPPORTED_FF62" />
+ <elements >
+ <text id="AppUpdateURL" valueName="URL" required="true" />
+ </elements>
+ </policy>
</policies>
</policyDefinitions>
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<policyDefinitionResources revision="1.1" schemaVersion="1.0" >
+ <displayName/>
+ <description/>
+ <resources >
+ <stringTable >
+ <string id="SUPPORTED_WINXPSP2">Microsoft Windows XP SP2 o versione successiva</string>
+ <string id="SUPPORTED_FF60">Firefox 60 o versione successiva</string>
+ <string id="SUPPORTED_FF62">Firefox 62 or later, Firefox 60.2 ESR or later</string>
+ <string id="SUPPORTED_FF60ESR">Firefox 60 ESR o versione successiva</string>
+ <string id="firefox">Firefox</string>
+ <string id="Permissions_group">Permessi</string>
+ <string id="Camera_group">Camera</string>
+ <string id="Microphone_group">Microphone</string>
+ <string id="Location_group">Location</string>
+ <string id="Notifications_group">Notifications</string>
+ <string id="Authentication_group">Autenticazione</string>
+ <string id="Bookmarks_group">Segnalibri</string>
+ <string id="Certificates_group">Certificati</string>
+ <string id="Popups_group">Pop-up</string>
+ <string id="Cookies_group">Cookie</string>
+ <string id="Addons_group">Plugin</string>
+ <string id="Extensions_group">Estensioni</string>
+ <string id="Flash_group">Flash</string>
+ <string id="Homepage_group">Pagina iniziale</string>
+ <string id="Search_group">Ricerca</string>
+ <string id="Allow">Siti consentiti</string>
+ <string id="Block">Siti bloccati</string>
+ <string id="AppUpdateURL">Custom Update URL</string>
+ <string id="AppUpdateURL_Explain">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.
+
+If this policy is disabled or not configured, the default update URL is used.</string>
+ <string id="Authentication_SPNEGO">SPNEGO</string>
+ <string id="Authentication_SPNEGO_Explain">Se questo criterio è abilitato, i siti Web specificati possono utilizzare l'autenticazione SPNEGO nel browser. Le voci dell'elenco devono essere nel formato mydomain.com o https://myotherdomain.com.
+
+Se questo criterio è disabilitato o non configurato, nessun sito Web può utilizzare l'autenticazione SPNEGO nel browser.
+
+Per ulteriori informazioni, vedi https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication.</string>
+ <string id="Authentication_Delegated">Delegata</string>
+ <string id="Authentication_Delegated_Explain">Se questo criterio è abilitato, il browser può delegare l'autorizzazione utente al server per i siti Web specificato. Le voci dell'elenco devono essere nel formato mydomain.com o https://myotherdomain.com.
+
+Se questo criterio è disabilitato o non configurato, il browser non delegherà l'autorizzazione utente per nessun sito Web.
+
+Per ulteriori informazioni, vedi https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication.</string>
+ <string id="Authentication_NTLM">NTLM</string>
+ <string id="Authentication_NTLM_Explain">Se questo criterio è abilitato, i siti Web specificati sono considerati attendibili per l'utilizzo dell'autenticazione NTLM. Le voci dell'elenco devono essere nel formato mydomain.com o https://myotherdomain.com.
+
+Se questo criterio è disabilitato o non configurato, nessun sito Web è considerato attendibile per l'utilizzo dell'autenticazione NTLM.
+
+Per ulteriori informazioni, vedi https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication.</string>
+ <string id="Authentication_AllowNonFQDN">Allow Non FQDN</string>
+ <string id="Authentication_AllowNonFQDN_Explain">If this policy is enabled, you can always allow SPNEGO or NTLM on non FQDNs (fully qualified domain names).
+
+If this policy is disabled or not configured, NTLM and SPNEGO are not enabled on non FQDNs.</string>
+ <string id="BlockAboutAddons">Blocca Gestore componenti aggiuntivi</string>
+ <string id="BlockAboutAddons_Explain">Se questo criterio è abilitato, l'utente non può accedere al Gestore componenti aggiuntivi o ad about:addons.
+
+Se questo criterio è disabilitato o non configurato, l'utente può accedere al Gestore componenti aggiuntivi e ad about:addons.</string>
+ <string id="BlockAboutConfig">Blocca about:config</string>
+ <string id="BlockAboutConfig_Explain">Se questo criterio è abilitato, l'utente non può accedere ad about:config.
+
+Se questo criterio è disabilitato o non configurato, l'utente può accedere ad about:config.</string>
+ <string id="BlockAboutProfiles">Blocca about:profiles</string>
+ <string id="BlockAboutProfiles_Explain">Se questo criterio è abilitato, l'utente non può accedere ad about:profiles.
+
+Se questo criterio è disabilitato o non configurato, l'utente può accedere ad about:profiles.</string>
+ <string id="BlockAboutSupport">Blocca Informazioni per la risoluzione dei problemi</string>
+ <string id="BlockAboutSupport_Explain">Se questo criterio è abilitato, l'utente non può accedere a Informazioni per la risoluzione dei problemi o ad about:support.
+
+Se questo criterio è disabilitato o non configurato, l'utente può accedere a Informazioni per la risoluzione dei problemi e ad about:support.</string>
+ <string id="DisableSetDesktopBackground">Disabilita Imposta come sfondo del desktop</string>
+ <string id="DisableSetDesktopBackground_Explain">Se questo criterio è abilitato, l'utente non può impostare un'immagine come sfondo del Desktop.
+
+Se questo criterio è disabilitato o non configurato, l'utente può impostare un'immagine come sfondo del Desktop.</string>
+ <string id="Certificates_ImportEnterpriseRoots">Importa Autorità di certificazione radice enterprise</string>
+ <string id="Certificates_ImportEnterpriseRoots_Explain">Se questo criterio è abilitato, Firefox utilizzerà i certificati radice nell'Archivio certificati di Windows.
+
+Se questo criterio è disabilitato o non configurato, Firefox non utilizzerà i certificati radice nell'Archivio certificati di Windows.</string>
+ <string id="DisableMasterPasswordCreation">Disabilita creazione password principale</string>
+ <string id="DisableMasterPasswordCreation_Explain">Se questo criterio è abilitato, gli utenti non possono creare una password principale.
+
+Se questo criterio è disabilitato o non configurato, gli utenti possono creare una password principale.</string>
+ <string id="DisableAppUpdate">Disabilita aggiornamenti</string>
+ <string id="DisableAppUpdate_Explain">Se questo criterio è abilitato, il browser non riceverà aggiornamenti.
+
+Se questo criterio è disabilitato o non configurato, il browser riceverà aggiornamenti.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
+ <string id="DisableBuiltinPDFViewer">Disabilita visualizzatore PDF integrato (PDF.js)</string>
+ <string id="DisableBuiltinPDFViewer_Explain">Se questo criterio è abilitato, i file PDF non sono visualizzati all'interno di Firefox.
+
+Se questo criterio è disabilitato o non configurato, i file PDF sono visualizzati all'interno di Firefox.</string>
+ <string id="DisableDeveloperTools">Disabilita Strumenti Sviluppo web</string>
+ <string id="DisableDeveloperTools_Explain">Se questo criterio è abilitato, gli Strumenti Sviluppo web non sono disponibili all'interno di Firefox.
+
+Se questo criterio è disabilitato o non configurato, gli Strumenti Sviluppo web sono disponibili all'interno di Firefox.</string>
+ <string id="DisableFeedbackCommands">Disabilita comandi feedback</string>
+ <string id="DisableFeedbackCommands_Explain">Se questo criterio è abilitato, le voci di menù "Invia feedback" e "Segnala un sito ingannevole" non sono disponibili nel menù Aiuto.
+
+Se questo criterio è disabilitato o non configurato, le voci di menù "Invia feedback" e "Segnala un sito ingannevole" sono disponibili nel menù Aiuto.</string>
+ <string id="DisableFirefoxAccounts">Disabilita Account Firefox</string>
+ <string id="DisableFirefoxAccounts_Explain">Se questo criterio è abilitato, la funzionalità Account Firefox è disabilitata (ciò include la disabilitazione di Sync).
+
+Se questo criterio è disabilitato o non configurato, Account Firefox e Sync sono disponibili.</string>
+ <string id="DisableFirefoxScreenshots">Disabilita Firefox Screenshots</string>
+ <string id="DisableFirefoxScreenshots_Explain">Se questo criterio è abilitato, Firefox Screenshots non è disponibile.
+
+Se questo criterio è disabilitato o non configurato, Firefox Screenshots è disponibile.</string>
+ <string id="DisableFirefoxStudies">Disabilita Firefox Studies</string>
+ <string id="DisableFirefoxStudies_Explain">Se questo criterio è abilitato, Firefox non eseguirà mai studi SHIELD né proporrà sondaggi Heartbeat.
+
+Se questo criterio è disabilitato o non configurato, l'utente può scegliere di abilitare gli studi SHIELD o i sondaggi Heartbeat.
+
+Per ulteriori informazioni, vedi https://support.mozilla.org/en-US/kb/shield e https://wiki.mozilla.org/Firefox/Shield/Heartbeat</string>
+ <string id="DisableForgetButton">Disabilita pulsante Dimentica</string>
+ <string id="DisableForgetButton_Explain">Se questo criterio è abilitato, il pulsante "Dimentica" non è disponibile.
+
+Se questo criterio è disabilitato o non configurato, il pulsante "Dimentica" è disponibile.</string>
+ <string id="DisableFormHistory">Disabilita Cronologia moduli</string>
+ <string id="DisableFormHistory_Explain">Se questo criterio è abilitato, Firefox non ricorderà la cronologia dei moduli o di ricerca.
+
+Se questo criterio è disabilitato o non configurato, Firefox ricorderà la cronologia dei moduli e di ricerca.</string>
+ <string id="DisablePocket">Disabilita Pocket</string>
+ <string id="DisablePocket_Explain">Se questo criterio è abilitato, Pocket non è disponibile.
+
+Se questo criterio è disabilitato o non configurato, Pocket è disponibile.</string>
+ <string id="DisablePrivateBrowsing">Disabilita Navigazione anonima</string>
+ <string id="DisablePrivateBrowsing_Explain">Se questo criterio è abilitato, la navigazione anonima non è consentita.
+
+Se questo criterio è disabilitato o non configurato, la navigazione anonima è consentita.</string>
+ <string id="DisableProfileImport">Disabilita importazione profilo</string>
+ <string id="DisableProfileImport_Explain">Se questo criterio è abilitato, l'opzione "Importa dati da un altro browser" non è disponibile nella finestra Segnalibri.
+
+Se questo criterio è disabilitato o non configurato, l'opzione "Importa dati da un altro browser" è disponibile.</string>
+ <string id="DisableProfileRefresh">Disabilita Ripristino profilo</string>
+ <string id="DisableProfileRefresh_Explain">Se questo criterio è abilitato, il pulsante "Ripristina Firefox" non è disponibile nella pagina about:support page o su support.mozilla.org.
+
+Se questo criterio è disabilitato o non configurato, il pulsante "Ripristina Firefox" è disponibile.</string>
+ <string id="DisableSafeMode">Disabilita Modalità provvisoria</string>
+ <string id="DisableSafeMode_Explain">Se questo criterio è abilitato, l'utente non può riavviare il browser in Modalità provvisoria.
+
+Se questo criterio è disabilitato o non configurato, la Modalità provvisoria è consentita.</string>
+ <string id="DisableSecurityBypass_InvalidCertificate">Impedisci l'override degli errori certificato</string>
+ <string id="DisableSecurityBypass_InvalidCertificate_Explain">Se questo criterio è abilitato, il pulsante "Aggiungi eccezione" non è disponibile se un certificato non è valido. Ciò impedisce all'utente di eseguire l'override dell'errore del certificato.
+
+Se questo criterio è disabilitato o non configurato, è possibile eseguire l'override degli errori certificato.</string>
+ <string id="DisableSecurityBypass_SafeBrowsing">Impedisci l'override degli errori Protezione phishing e malware</string>
+ <string id="DisableSecurityBypass_SafeBrowsing_Explain">Se questo criterio è abilitato, un utente non può ignorare l'avvertimento e visitare un sito malevolo.
+
+Se questo criterio è disabilitato o non configurato, un utente può decidere di visitare un sito malevolo.</string>
+ <string id="DisableSystemAddonUpdate">Disabilita aggiornamenti componenti aggiuntivi di sistema</string>
+ <string id="DisableSystemAddonUpdate_Explain">Se questo criterio è abilitato, non saranno installati nuovi componenti aggiuntivi di sistema e i componenti aggiuntivi di sistema esistenti non saranno aggiornati.
+
+Se questo criterio è disabilitato o non configurato, i componenti aggiuntivi di sistema saranno installati e aggiornati.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
+ <string id="DisableTelemetry">Disabilita telemetria</string>
+ <string id="DisableTelemetry_Explain">Se questo criterio è abilitato, la telemetria non è caricata.
+
+Se questo criterio è disabilitato o non configurato, la telemetria è raccolta e caricata.
+
+Mozilla consiglia di non disabilitare la telemetria. Le informazioni raccolte tramite la telemetria ci consentono di realizzare un prodotto migliore per le aziende come la tua.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
+ <string id="DisplayBookmarksToolbar">Visualizza barra degli strumenti Segnalibri</string>
+ <string id="DisplayBookmarksToolbar_Explain">Se questo criterio è abilitato, la barra degli strumenti Segnalibri è visualizzata per impostazione predefinita. L'utente può sempre nasconderla.
+
+Se questo criterio è disabilitato o non configurato, la barra degli strumenti Segnalibri non è visualizzata per impostazione predefinita.</string>
+ <string id="DisplayMenuBar">Visualizza barra dei menù</string>
+ <string id="DisplayMenuBar_Explain">Se questo criterio è abilitato, la barra dei menù è visualizzata per impostazione predefinita. L'utente può sempre nasconderla.
+
+Se questo criterio è disabilitato o non configurato, la barra dei menù non viene visualizzata per impostazione predefinita.</string>
+ <string id="DontCheckDefaultBrowser">Non controllare il browser predefinito</string>
+ <string id="DontCheckDefaultBrowser_Explain">Se questo criterio è abilitato, Firefox all'avvio non controlla se è il browser predefinito.
+
+Se questo criterio è disabilitato o non configurato, Firefox all'avvio controlla se è il browser predefinito.</string>
+ <string id="Extensions_Install">Estensioni da installare</string>
+ <string id="Extensions_Install_Explain">Se questo criterio è abilitato, è possibile specificare un elenco di URL o percorsi a estensioni che saranno installate all'avvio di Firefox.
+Le estensioni saranno reinstallate a ogni modifica dell'elenco.
+
+Se questo criterio è disabilitato o non configurato, non sarà installata alcuna estensione.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
+ <string id="Extensions_Uninstall">Estensioni da disinstallare</string>
+ <string id="Extensions_Uninstall_Explain">Se questo criterio è abilitato, è possibile specificare un elenco di ID di estensioni da disinstallare.
+Le estensioni saranno disinstallate a ogni modifica dell'elenco.
+
+Se questo criterio è disabilitato o non configurato, non sarà disinstallata alcuna estensione.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
+ <string id="Extensions_Locked">Impedisci la disabilitazione o la rimozione delle estensioni</string>
+ <string id="Extensions_Locked_Explain">Se questo criterio è abilitato, è possibile specificare un elenco di ID delle estensioni che l'utente non sarà in grado di disinstallare o disabilitare.
+
+Se questo criterio è disabilitato o non configurato, non sarà bloccata nessuna estensione.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
+ <string id="HardwareAcceleration">Hardware Acceleration</string>
+ <string id="HardwareAcceleration_Explain">If this policy is disabled, hardware acceleration and cannot be enabled.
+
+If this policy is enabled or not configured, hardware acceleration is enabled.</string>
+ <string id="OfferToSaveLogins">Offri di salvare le credenziali di accesso</string>
+ <string id="OfferToSaveLogins_Explain">Se questo criterio è abilitato o non configurato, Firefox si offrirà di salvare i nomi utente e le password di accesso ai siti.
+
+Se questo criterio è disabilitato, Firefox non offrirà la possibilità di salvare i nomi utente e le password di accesso ai siti.</string>
+ <string id="PopupBlocking_Allow_Explain">Se questo criterio è abilitato, le finestre pop-up sui siti indicati sono sempre consentite. Se è specificato un dominio di primo livello (http://example.org), le finestre pop-up sono consentite anche per tutti i sottodomini.
+
+Se questo criterio è disabilitato o non configurato, viene seguita la politica predefinita delle finestre pop-up.</string>
+ <string id="PopupBlocking_Default">Consenti le finestre pop-up dei siti Web</string>
+ <string id="PopupBlocking_Default_Explain">Se questo criterio è disabilitato, le finestre pop-up dei siti Web sono consentite per impostazione predefinita.
+
+Se questo criterio non è configurato o abilitato, le finestre pop-up dei siti Web non sono consentite.</string>
+ <string id="PopupBlocking_Locked">Non consentire la modifica delle preferenze</string>
+ <string id="PopupBlocking_Locked_Explain">Se questo criterio è abilitato, le preferenze relative alle finestre pop-up non possono essere modificate dall'utente.
+
+Se questo criterio è disabilitato o non configurato, l'utente può modificare le preferenze relative alle finestre pop-up.</string>
+ <string id="InstallAddonsPermission_Allow_Explain">Se questo criterio è abilitato, l'installazione dei componenti aggiuntivi dai siti indicati è sempre consentita a meno che questa non sia disabilitata in generale. Se è specificato un dominio di primo livello (http://example.org), l'installazione dei componenti aggiuntivi è consentita anche da tutti i sottodomini.
+
+Se questo criterio è disabilitato o non configurato, viene seguita la politica predefinita per i componenti aggiuntivi.</string>
+ <string id="InstallAddonsPermission_Default">Consenti l'installazione di componenti aggiuntivi dai siti Web</string>
+ <string id="InstallAddonsPermission_Default_Explain">Se questo criterio è disabilitato, non è possibile installare componenti aggiuntivi.
+
+Se questo criterio non è configurato o è abilitato, è possibile installare componenti aggiuntivi.</string>
+ <string id="Cookies_Allow_Explain">Se questo criterio è abilitato, i cookie dai siti indicati sono sempre consentiti. Se è specificato un dominio di primo livello (http://example.org), i cookie sono consentiti anche da tutti i sottodomini.
+
+Se questo criterio è disabilitato o non configurato, viene seguita la politica predefinita per i cookie.</string>
+ <string id="Cookies_Block_Explain">Se questo criterio è abilitato, i cookie dai siti indicati sono bloccati. Se è specificato un dominio di primo livello (http://example.org), i cookie sono bloccati anche da tutti i sottodomini.
+
+Se questo criterio è disabilitato o non configurato, i cookie non sono bloccati per impostazione predefinita.</string>
+ <string id="Cookies_Default">Accetta i cookie dai siti Web</string>
+ <string id="Cookies_Default_Explain">Se questo criterio è disabilitato, i cookie dai siti Web non sono accettati per impostazione predefinita.
+
+Se questo criterio non è configurato o è abilitato, i cookie dai siti Web sono accettati.</string>
+ <string id="Cookies_AcceptThirdParty">Accetta cookie di terze parti</string>
+ <string id="Cookies_AcceptThirdParty_Explain">Se questo criterio è abilitato e i cookie sono consentiti, è possibile impostare quando accettare i cookie di terze parti.
+
+Quest'impostazione è ignorata se questo criterio è disabilitato o non configurato o se i cookie non sono consentiti.</string>
+ <string id="Cookies_AcceptThirdParty_All">Sempre</string>
+ <string id="Cookies_AcceptThirdParty_None">Mai</string>
+ <string id="Cookies_AcceptThirdParty_FromVisited">Dai siti visitati</string>
+ <string id="Cookies_ExpireAtSessionEnd">Conserva i cookie fino alla chiusura di Firefox</string>
+ <string id="Cookies_ExpireAtSessionEnd_Explain">Se questo criterio è abilitato e i cookie sono consentiti, questi scadranno alla chiusura di Firefox.
+
+Quest'impostazione è ignorata se questo criterio è disabilitato o non configurato o se i cookie non sono consentiti.</string>
+ <string id="Cookies_Locked">Non consentire la modifica delle preferenze</string>
+ <string id="Cookies_Locked_Explain">Se questo criterio è abilitato, le preferenze relative ai cookie non possono essere modificate dall'utente.
+
+Se questo criterio è disabilitato o non configurato, l'utente può modificare le preferenze relative ai cookie.</string>
+ <string id="Camera_Allow_Explain">If this policy is enabled, access to the camera is always allowed for the origins indicated.
+
+If this policy is disabled or not configured, the default camera policy is followed.</string>
+ <string id="Camera_Block_Explain">If this policy is enabled, access to the camera is blocked for the origins indicated.
+
+If this policy is disabled or not configured, access to the camera is not blocked by default.</string>
+ <string id="Camera_BlockNewRequests">Block new requests asking to access the camera</string>
+ <string id="Camera_BlockNewRequests_Explain">If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to access the camera.
+
+If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to access the camera.</string>
+ <string id="Camera_Locked">Do not allow preferences to be changed</string>
+ <string id="Camera_Locked_Explain">If this policy is enabled, camera preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their camera preferences.</string>
+ <string id="Microphone_Allow_Explain">If this policy is enabled, access to the microphone is always allowed for the origins indicated.
+
+If this policy is disabled or not configured, the default microphone policy is followed.</string>
+ <string id="Microphone_Block_Explain">If this policy is enabled, access to the microphone is blocked for the origins indicated.
+
+If this policy is disabled or not configured, access to the microphone is not blocked by default.</string>
+ <string id="Microphone_BlockNewRequests">Block new requests asking to access the microphone</string>
+ <string id="Microphone_BlockNewRequests_Explain">If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to access the microphone.
+
+If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to access the microphone.</string>
+ <string id="Microphone_Locked">Do not allow preferences to be changed</string>
+ <string id="Microphone_Locked_Explain">If this policy is enabled, microphone preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their camera preferences.</string>
+ <string id="Location_Allow_Explain">If this policy is enabled, access to location is always allowed for the origins indicated.
+
+If this policy is disabled or not configured, the default location policy is followed.</string>
+ <string id="Location_Block_Explain">If this policy is enabled, access to location is blocked for the origins indicated.
+
+If this policy is disabled or not configured, access to location is not blocked by default.</string>
+ <string id="Location_BlockNewRequests">Block new requests asking to access location</string>
+ <string id="Location_BlockNewRequests_Explain">If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to access location.
+
+If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to access location.</string>
+ <string id="Location_Locked">Do not allow preferences to be changed</string>
+ <string id="Location_Locked_Explain">If this policy is enabled, location preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change location preferences.</string>
+ <string id="Notifications_Allow_Explain">If this policy is enabled, notifications can always be sent for the origins indicated.
+
+If this policy is disabled or not configured, the default nofication policy is followed.</string>
+ <string id="Notifications_Block_Explain">If this policy is enabled, notifications are always blocked for the origins indicated.
+
+If this policy is disabled or not configured, notifications are not blocked by default.</string>
+ <string id="Notifications_BlockNewRequests">Block new requests asking to send notifications</string>
+ <string id="Notifications_BlockNewRequests_Explain">If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to send notifications.
+
+If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to send notifications.</string>
+ <string id="Notifications_Locked">Do not allow preferences to be changed</string>
+ <string id="Notifications_Locked_Explain">If this policy is enabled, notification preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their notification preferences.</string>
+ <string id="FlashPlugin_Allow_Explain">Se questo criterio è abilitato, Flash è attivato per impostazione predefinita sui siti indicati a meno che non sia completamente disabilitato. Se è specificato un dominio di primo livello (http://example.org), Flash è consentito anche su tutti i sottodomini.
+
+Se questo criterio è disabilitato o non configurato, viene seguita la politica predefinita per Flash.</string>
+ <string id="FlashPlugin_Block_Explain">Se questo criterio è abilitato, Flash è bloccato sui siti indicati. If a top level domain is specified (http://example.org), Se è specificato un dominio di primo livello (http://example.org), Flash è bloccato anche su tutti i sottodomini.
+
+Se questo criterio è disabilitato o non configurato, viene seguita la politica predefinita per Flash.</string>
+ <string id="FlashPlugin_Default">Attiva Flash sui siti Web</string>
+ <string id="FlashPlugin_Default_Explain">Se questo criterio è abilitato, Flash è sempre attivato sui siti Web.
+
+Se questo criterio è disabilitato, Flash non è mai attivato sui siti Web, anche nel caso in cui questi siano specificati nella lista Consenti.
+
+Se questo criterio non è configurato, Flash viene eseguito in modalità "Chiedi prima di attivare".</string>
+ <string id="FlashPlugin_Locked">Non consentire la modifica delle preferenze</string>
+ <string id="FlashPlugin_Locked_Explain">Se questo criterio è abilitato, le preferenze relative a Flash non possono essere modificate dall'utente.
+
+Se questo criterio è disabilitato o non configurato, l'utente può modificare le preferenze relative a Flash.</string>
+ <string id="OverrideFirstRunPage">Esegui l'override della pagina visualizzata al primo avvio</string>
+ <string id="OverrideFirstRunPage_Explain">Se questo criterio è abilitato, è possibile specificare l'indirizzo di una pagina da visualizzare al primo avvio del browser. Se il campo è lasciato vuoto, non verrà visualizzata alcuna pagina al primo avvio.
+
+Se questo criterio è disabilitato o non configurato, al primo avvio verrà visualizzata la pagina predefinita.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
+ <string id="OverridePostUpdatePage">Esegui l'override della pagina visualizzata dopo un aggiornamento</string>
+ <string id="OverridePostUpdatePage_Explain">Se questo criterio è abilitato, è possibile specificare l'indirizzo di una pagina da visualizzare dopo l'aggiornamento di Firefox. Se il campo è lasciato vuoto, non verrà visualizzata alcuna pagina dopo l'aggiornamento.
+
+Se questo criterio è disabilitato o non configurato, dopo ogni aggiornamento verrà visualizzata la pagina predefinita.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
+ <string id="SanitizeOnShutdown">Cancella tutti i dati alla chiusura del browser</string>
+ <string id="SanitizeOnShutdown_Explain">Se questo criterio è abilitato, tutti i dati saranno cancellati alla chiusura di Firefox. Ciò include la cronologia di navigazione e dei download, i cookie, gli accessi effettuati, la cache, la cronologia dei moduli e di ricerca, le preferenze e i dati non in linea dei siti Web.
+
+Se questo criterio è disabilitato o non configurato, i dati non sono cancellati alla chiusura del browser.</string>
+ <string id="WebsiteFilter_Block">Siti Web bloccati</string>
+ <string id="WebsiteFilter_Block_Explain">Se questo criterio è abilitato, è possibile utilizzare dei pattern per specificare i siti da bloccare. I pattern sono documentati alla pagina https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Attualmente sono supportati solo i protocolli HTTP e HTTPS. C'è un limite di 1000 voci.
+
+Se questo criterio è disabilitato o non configurato, non sarà bloccato nessun sito.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
+ <string id="WebsiteFilter_Exceptions">Eccezioni ai siti Web bloccati</string>
+ <string id="WebsiteFilter_Exceptions_Explain">Se questo criterio è abilitato e il sito filtri Web è abilitato, è possibile utilizzare dei pattern per specificare i siti da non bloccare. I pattern sono documentati alla pagina https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Attualmente sono supportati solo i protocolli HTTP e HTTPS. C'è un limite di 1000 voci.
+
+Se questo criterio è disabilitato o non configurato, non ci sono eccezioni al sito filtri Web.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
+ <string id="Bookmark1">Segnalibro 1</string>
+ <string id="Bookmark2">Segnalibro 2</string>
+ <string id="Bookmark3">Segnalibro 3</string>
+ <string id="Bookmark4">Segnalibro 4</string>
+ <string id="Bookmark5">Segnalibro 5</string>
+ <string id="Bookmark_Explain">Se questo criterio è abilitato, è possibile configurare l'aggiunta di un segnalibro a Firefox. A causa di un bug, è necessario selezionare l'indirizzo. I segnalibri devono essere specificati in ordine.
+
+Se questo criterio è disabilitato o non configurato, non sarà aggiunto un nuovo segnalibro.</string>
+ <string id="BookmarkPlacementToolbar">Barra degli strumenti</string>
+ <string id="BookmarkPlacementMenu">Menù</string>
+ <string id="NoDefaultBookmarks">Nessun segnalibro predefinito</string>
+ <string id="NoDefaultBookmarks_Explain">Se questo criterio è abilitato, i segnalibri predefiniti e i segnalibri smart (Più visitati, Tag recenti) non saranno creati.
+
+Se questo criterio è disabilitato o non configurato, i segnalibri predefiniti e i segnalibri smart (Più visitati, Tag recenti) saranno creati.
+
+Nota: questo criterio ha efficacia solo se è utilizzato prima della prima esecuzione del profilo.</string>
+ <string id="HomepageURL">Indirizzo pagina iniziale</string>
+ <string id="HomepageURL_Explain">Se questo criterio è abilitato, è possibile specificare una pagina iniziale predefinita. È anche possibile bloccare l'impostazione relativa alla pagina iniziale.
+
+Se questo criterio è disabilitato o non configurato, l'utente può impostare e modificare la pagina iniziale.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
+ <string id="HomepageAdditional">Pagine iniziali aggiuntive</string>
+ <string id="HomepageAdditional_Explain">Se questo criterio è abilitato, è possibile avere pagine iniziali aggiuntive. Queste saranno aperte in schede multiple.
+
+Se questo criterio è disabilitato o non configurato, ci sarà una sola pagina iniziale.
+
+Starting with Firefox 62, this policy will only work from Computer Configuration.</string>
+ <string id="Proxy">Impostazioni proxy</string>
+ <string id="Proxy_Explain">Se questo criterio è abilitato, è possibile configurare e bloccare le impostazioni di rete.
+
+Selezionare il tipo di connessione e quindi compilare le sezioni appropriate. A causa di un bug, è necessario selezionare un valore per la versione del proxy SOCKS.
+
+Se questo criterio è disabilitato o non configurato, saranno utilizzate le impostazioni di rete predefinite e l'utente potrà modificarle.</string>
+ <string id="SOCKSVersion4">SOCKS v4</string>
+ <string id="SOCKSVersion5">SOCKS v5</string>
+ <string id="AutoConfigURL">URL configurazione automatica proxy</string>
+ <string id="AutoConfigURL_Explain">Queste opzioni devono essere impostate solo se è stata selezionata la configurazione automatica</string>
+ <string id="Passthrough">Nessun proxy per</string>
+ <string id="Passthrough_Explain">Queste opzioni devono essere impostate solo se è stata selezionata la configurazione manuale dei proxy</string>
+ <string id="Connection">Tipo connessione</string>
+ <string id="NoProxy">Nessun proxy</string>
+ <string id="SystemProxy">Utilizza le impostazioni proxy del sistema</string>
+ <string id="ManualProxy">Configurazione manuale dei proxy</string>
+ <string id="AutoDetectProxy">Individua automaticamente le impostazioni proxy</string>
+ <string id="AutoConfigProxy">Configurazione automatica proxy</string>
+ <string id="TrackingProtection">Protezione antitracciamento</string>
+ <string id="TrackingProtection_Explain">Se questo criterio non è configurato, la protezione antitracciamento non è abilitata nel browser per impostazione preddefinita ma è abilitata per impostazione predefinita in Navigazione anonima e l'utente può modificarla.
+
+Se questo criterio è disabilitato, la protezione antitracciamento è disabilitata e bloccata sia nel browser, sia in Navigazione anonima.
+
+Se questo criterio è abilitato, la protezione antitracciamento è abilitata per impostazione predefinita sia nel browser, sia in Navigazione anonima ed è possibile scegliere se l'utente sarà in grado di modificare tale impostazione o meno.</string>
+ <string id="SearchBar">Posizione barra di ricerca</string>
+ <string id="SearchBar_Explain">Se questo criterio è abilitato, è possibile impostare se la barra di ricerca sarà separata dalla barra degli indirizzi.
+
+Se questo criterio è disabilitato o non configurato, i nuovi utenti visualizzeranno una barra di ricerca unificata, gli utenti che eseguono l'aggiornamento da Firefox 56 o da una versione precedente visualizzeranno una barra di ricerca separata.</string>
+ <string id="SearchEngines_1">Motore di ricerca 1</string>
+ <string id="SearchEngines_2">Motore di ricerca 2</string>
+ <string id="SearchEngines_3">Motore di ricerca 3</string>
+ <string id="SearchEngines_4">Motore di ricerca 4</string>
+ <string id="SearchEngines_5">Motore di ricerca 5</string>
+ <string id="SearchEngines_Explain">Se questo criterio è abilitato, è possibile configurare un motore di ricerca da aggiungere a Firefox. Utilizzare {searchTerms} per indicare dove inserire il termine di ricerca. A causa di un bug, è necessario selezionare il metodo (di solito GET). Si noti che è necessario specificare i motori di ricerca in ordine.
+
+Se questo criterio è disabilitato o non configurato, non verrà aggiunto nessun nuovo motore di ricerca.</string>
+ <string id="SearchBar_Unified">Unificata</string>
+ <string id="SearchBar_Separate">Separata</string>
+ <string id="SearchEngine_Method_GET">GET</string>
+ <string id="SearchEngine_Method_POST">POST</string>
+ <string id="SearchEngines_Default">Motore di ricerca predefinito</string>
+ <string id="SearchEngines_Default_Explain">Se questo criterio è abilitato, è possibile digitare il nome del motore di ricerca da utilizzare per impostazione predefinita.
+
+Se questo criterio è disabilitato o non configurato, verrà utilizzato il motore di ricerca predefinito di Firefox.</string>
+ <string id="SearchEngines_PreventInstalls">Impedisci l'installazione dei motori di ricerca</string>
+ <string id="SearchEngines_PreventInstalls_Explain">Se questo criterio è abilitato, l'utente non potrà installare motori di ricerca dalle pagine Web.
+
+Se questo criterio è disabilitato o non configurato, i motori di ricerca potranno essere installati dalle pagine Web.</string>
+ <string id="SearchEngines_Remove">Remove Search Engines</string>
+ <string id="SearchEngines_Remove_Explain">If this policy is enabled, you can specify the names of engines to be removed or hidden.
+
+If this policy is disabled or not configured, search engines will not be removed or hidden.</string>
+ </stringTable>
+ <presentationTable>
+ <presentation id="AppUpdateURL">
+ <textBox refId="AppUpdateURL">
+ <label>URL:</label>
+ </textBox>
+ </presentation>
+ <presentation id="Authentication">
+ <listBox refId="Authentication"/>
+ </presentation>
+ <presentation id="Authentication_AllowNonFQDN">
+ <checkBox refId="Authentication_AllowNonFQDN_NTLM">Always allow NTLM on non FQDNs</checkBox>
+ <checkBox refId="Authentication_AllowNonFQDN_SPNEGO">Always allow SPNEGO on non FQDNs</checkBox>
+ </presentation>
+ <presentation id="Extensions">
+ <listBox refId="Extensions"/>
+ </presentation>
+ <presentation id="WebsiteFilter">
+ <listBox refId="WebsiteFilter"/>
+ </presentation>
+ <presentation id="Permissions"><listBox refId="Permissions"/></presentation>
+ <presentation id="PopupsAllow"><listBox refId="PopupsAllowDesc">Consenti le finestre pop-up dai siti Web</listBox></presentation>
+ <presentation id="Cookies_AcceptThirdParty">
+ <dropdownList refId="Cookies_AcceptThirdParty"/>
+ </presentation>
+ <presentation id="SearchBar">
+ <dropdownList refId="SearchBar"/>
+ </presentation>
+ <presentation id="TrackingProtection">
+ <checkBox refId="TrackingProtectionLocked">Non consentire la modifica delle preferenze relative alla protezione antitracciamento.</checkBox>
+ </presentation>
+ <presentation id="OverridePage">
+ <textBox refId="OverridePage">
+ <label>Indirizzo:</label>
+ </textBox>
+ </presentation>
+ <presentation id="HomepageURL">
+ <text>Indirizzo:</text>
+ <textBox refId="HomepageURL">
+ <label/>
+ </textBox>
+ <checkBox refId="HomepageLocked">Non consentire la modifica della pagina iniziale.</checkBox>
+ </presentation>
+ <presentation id="HomepageAdditional">
+ <listBox refId="HomepageAdditional">Pagine iniziali aggiuntive</listBox>
+ </presentation>
+ <presentation id="Bookmark">
+ <text>Titolo:</text>
+ <textBox refId="BookmarkTitle">
+ <label/>
+ </textBox>
+ <text>Indirizzo:</text>
+ <textBox refId="BookmarkURL">
+ <label/>
+ </textBox>
+ <text>Indirizzo icona segnalibro:</text>
+ <textBox refId="BookmarkFavicon">
+ <label/>
+ </textBox>
+ <text>Posizione:</text>
+ <dropdownList refId="BookmarkPlacement"/>
+ <text>Nome cartella:</text>
+ <textBox refId="BookmarkFolder">
+ <label/>
+ </textBox>
+ </presentation>
+ <presentation id="SearchEngine">
+ <textBox refId="SearchEngine_Name">
+ <label>Nome:</label>
+ </textBox>
+ <textBox refId="SearchEngine_URLTemplate">
+ <label>Modello indirizzo:</label>
+ </textBox>
+ <text>Metodo:</text>
+ <dropdownList refId="SearchEngine_Method"/>
+ <textBox refId="SearchEngine_IconURL">
+ <label>Indirizzo icona:</label>
+ </textBox>
+ <textBox refId="SearchEngine_Alias">
+ <label>Alias:</label>
+ </textBox>
+ <textBox refId="SearchEngine_Description">
+ <label>Descrizione:</label>
+ </textBox>
+ <textBox refId="SearchEngine_SuggestURLTemplate">
+ <label>Modello indirizzo suggerimenti:</label>
+ </textBox>
+ </presentation>
+ <presentation id="SearchEngines_Default">
+ <textBox refId="SearchEngines_Default">
+ <label/>
+ </textBox>
+ </presentation>
+ <presentation id="SearchEngines_Remove">
+ <listBox refId="SearchEngines_Remove"/>
+ </presentation>
+ <presentation id="Proxy">
+ <checkBox refId="ProxyLocked">Non consentire la modifica delle impostazioni del proxy.</checkBox>
+ <text>Tipo connessione:</text>
+ <dropdownList refId="ConnectionType"/>
+ <text>Proxy HTTP:</text>
+ <textBox refId="HTTPProxy">
+ <label/>
+ </textBox>
+ <checkBox refId="UseHTTPProxyForAllProtocols">Utilizza questo server proxy per tutti i protocolli.</checkBox>
+ <text>Proxy SSL:</text>
+ <textBox refId="SSLProxy">
+ <label/>
+ </textBox>
+ <text>Proxy FTP:</text>
+ <textBox refId="FTPProxy">
+ <label/>
+ </textBox>
+ <text>Host SOCKS:</text>
+ <textBox refId="SOCKSProxy">
+ <label/>
+ </textBox>
+ <text>Versione SOCKS:</text>
+ <dropdownList refId="SOCKSVersion"/>
+ <text>Nessun proxy per</text>
+ <textBox refId="Passthrough">
+ <label/>
+ </textBox>
+ <text>Esempio: .mozilla.org, .net.nz, 192.168.1.0/24</text>
+ <text>URL configurazione automatica proxy:</text>
+ <textBox refId="AutoConfigURL">
+ <label/>
+ </textBox>
+ <checkBox refId="AutoLogin">Non richiedere l'autenticazione se la password è salvata.</checkBox>
+ <checkBox refId="UseProxyForDNS">DNS proxy per SOCKS v5.</checkBox>
+ </presentation>
+ </presentationTable>
+ </resources>
+</policyDefinitionResources>
--- /dev/null
+<?xml version="1.0" ?>
+<policyDefinitionResources revision="1.0" schemaVersion="1.0">
+ <displayName/>
+ <description/>
+ <resources>
+ <stringTable>
+ <string id="mozilla">Mozilla</string>
+ </stringTable>
+ </resources>
+</policyDefinitionResources>