These policies are in active development and so might contain changes that do not work with current versions of Thunderbird.
Policies can be specified using the Group Policy templates on Windows, Intune on Windows, configuration profiles on macOS, 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 Thunderbird.app/Contents/Resources/distribution
. On Linux, the file goes into thunderbird/distribution
, where thunderbird
is the installation directory for Thunderbird, which varies by distribution or you can specify system-wide policy by placing the file in /etc/thunderbird/policies
.
Policy Name | Description |
---|---|
3rdparty |
Set policies that WebExtensions can access via chrome.storage.managed. |
AppAutoUpdate |
Enable or disable automatic application update. |
AppUpdatePin |
Prevent Thunderbird from being updated beyond the specified version. |
AppUpdateURL |
Change the URL for application update. |
Authentication |
Configure sites that support integrated authentication. |
BackgroundAppUpdate |
Enable or disable the background updater (Windows only). |
BlockAboutAddons |
Block access to the Add-ons Manager (about:addons). |
BlockAboutConfig |
Block access to about:config. |
BlockAboutProfiles |
Block access to About Profiles (about:profiles). |
BlockAboutSupport |
Block access to Troubleshooting Information (about:support). |
CaptivePortal |
Enable or disable the detection of captive portals. |
Certificates -> ImportEnterpriseRoots |
Trust certificates that have been added to the operating system certificate store by a user or administrator. |
Certificates -> Install |
Install certificates into the Thunderbird certificate store. |
Cookies |
Configure cookie preferences. |
DefaultDownloadDirectory |
Set the default download directory. |
DisableAppUpdate |
Turn off application updates. |
DisableBuiltinPDFViewer |
Disable the built in PDF viewer. |
DisabledCiphers |
Disable ciphers. |
DisableDeveloperTools |
Remove access to all developer tools. |
DisableMasterPasswordCreation |
Remove the master password functionality. |
DisablePasswordReveal |
Do not allow passwords to be revealed in saved logins. |
DisableSafeMode |
Disable safe mode within the browser. |
DisableSecurityBypass |
Prevent the user from bypassing security in certain cases. |
DisableSystemAddonUpdate |
Prevent system add-ons from being installed or updated. |
DisableTelemetry |
DisableTelemetry |
DNSOverHTTPS |
Configure DNS over HTTPS. |
DownloadDirectory |
Set and lock the download directory. |
Extensions |
Control the installation, uninstallation and locking of extensions. |
ExtensionSettings |
Manage all aspects of extensions. |
ExtensionUpdate |
Control extension updates. |
Handlers |
Configure default application handlers. |
HardwareAcceleration |
Control hardware acceleration. |
InAppNotification |
TBD |
InstallAddonsPermission |
Configure the default extension install policy as well as origins for extension installs are allowed. |
ManualAppUpdateOnly |
Allow manual updates only and do not notify the user about updates. |
NetworkPrediction |
Enable or disable network prediction (DNS prefetching). |
OfferToSaveLogins |
Control whether or not Thunderbird offers to save passwords. |
OfferToSaveLoginsDefault |
Set the default value for whether or not Thunderbird offers to save passwords. |
PasswordManagerEnabled |
Remove (some) access to the password manager. |
PDFjs |
Disable or configure PDF.js, the built-in PDF viewer. |
Preferences |
Set and lock preferences. |
PrimaryPassword |
Require or prevent using a primary (formerly master) password. |
PromptForDownloadLocation |
Ask where to save each file before downloading. |
Proxy |
Configure proxy settings. |
RequestedLocales |
Set the the list of requested locales for the application in order of preference. |
SearchEngines |
|
SearchEngines -> Add |
Add new search engines. |
SearchEngines -> Default |
Set the default search engine. |
SearchEngines -> PreventInstalls |
Prevent installing search engines from webpages. |
SearchEngines -> Remove |
Hide built-in search engines. |
SSLVersionMax |
Set and lock the maximum version of TLS. |
SSLVersionMin |
Set and lock the minimum version of TLS. |
Allow WebExtensions to configure policy. For more information, see Adding policy support to your extension.
For GPO and Intune, the extension developer should provide an ADMX file.
CCK2 Equivalent: N/A
Preferences Affected: N/A
<dict>
<key>3rdparty</key>
<dict>
<key>Extensions</key>
<dict>
<key>uBlock0@raymondhill.net</key>
<dict>
<key>adminSettings</key>
<dict>
<key>selectedFilterLists</key>
<array>
<string>ublock-privacy</string>
<string>ublock-badware</string>
<string>ublock-filters</string>
<string>user-filters</string>
</array>
</dict>
</dict>
</dict>
</dict>
</dict>
{
"policies": {
"3rdparty": {
"Extensions": {
"uBlock0@raymondhill.net": {
"adminSettings": {
"selectedFilterLists": [
"ublock-privacy",
"ublock-badware",
"ublock-filters",
"user-filters"
]
}
}
}
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
3rdparty 3rdparty_Extensions 3rdparty_Extensions_[name] |
78.0 |
Enable or disable automatic application update.
If set to true, application updates are installed without user approval within Thunderbird. The operating system might still require approval.
If set to false, application updates are downloaded but the user can choose when to install the update.
If you have disabled updates via DisableAppUpdate
, this policy has no effect.
CCK2 Equivalent: N/A
Preferences Affected: app.update.auto
Software\Policies\Mozilla\Thunderbird\AppAutoUpdate = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/AppAutoUpdate
Value (string):
<enabled/> or <disabled/>
<dict>
<key>AppAutoUpdate</key>
<true/> | <false/>
</dict>
{
"policies": {
"AppAutoUpdate": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
AppAutoUpdate |
75.0 |
Prevent Thunderbird from being updated beyond the specified version.
You can specify the any version as xx.
and Thunderbird will be updated with all minor versions, but will not be updated beyond the major version.
You can also specify the version as xx.xx
and Thunderbird will be updated with all patch versions, but will not be updated beyond the minor version.
You should specify a version that exists or is guaranteed to exist. If you specify a version that doesn’t end up existing, Thunderbird will update beyond that version.
CCK2 Equivalent: N/A
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\AppUpdatePin = "106."
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/AppUpdatePin
Value (string):
<enabled/>
<data id="String" value="106."/>
<dict>
<key>AppUpdatePin</key>
<string>106.</string>
</dict>
{
"policies": {
"AppUpdatePin": "106."
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
AppUpdatePin |
104.0 |
Change the URL for application update if you are providing Thunderbird updates from a custom update server.
CCK2 Equivalent: N/A
Preferences Affected: app.update.url
Software\Policies\Mozilla\Thunderbird\AppUpdateURL = "https://yoursite.com"
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/AppUpdateURL
Value (string):
<enabled/>
<data id="AppUpdateURL" value="https://yoursite.com"/>
<dict>
<key>AppUpdateURL</key>
<string>https://yoursite.com</string>
</dict>
{
"policies": {
"AppUpdateURL": "https://yoursite.com"
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
AppUpdateURL |
68.0 |
Configure sites that support integrated authentication.
See Integrated authentication for more information.
PrivateBrowsing
enables integrated authentication in private browsing.
CCK2 Equivalent: N/A
Preferences Affected: network.negotiate-auth.trusted-uris
,network.negotiate-auth.delegation-uris
,network.automatic-ntlm-auth.trusted-uris
,network.automatic-ntlm-auth.allow-non-fqdn
,network.negotiate-auth.allow-non-fqdn
,network.automatic-ntlm-auth.allow-proxies
,network.negotiate-auth.allow-proxies
,network.auth.private-browsing-sso
Software\Policies\Mozilla\Thunderbird\Authentication\SPNEGO\1 = "mydomain.com"
Software\Policies\Mozilla\Thunderbird\Authentication\SPNEGO\2 = "https://myotherdomain.com"
Software\Policies\Mozilla\Thunderbird\Authentication\Delegated\1 = "mydomain.com"
Software\Policies\Mozilla\Thunderbird\Authentication\Delegated\2 = "https://myotherdomain.com"
Software\Policies\Mozilla\Thunderbird\Authentication\NTLM\1 = "mydomain.com"
Software\Policies\Mozilla\Thunderbird\Authentication\NTLM\2 = "https://myotherdomain.com"
Software\Policies\Mozilla\Thunderbird\Authentication\AllowNonFQDN\SPNEGO = 0x1 | 0x0
Software\Policies\Mozilla\Thunderbird\Authentication\AllowNonFQDN\NTLM = 0x1 | 0x0
Software\Policies\Mozilla\Thunderbird\Authentication\AllowProxies\SPNEGO = 0x1 | 0x0
Software\Policies\Mozilla\Thunderbird\Authentication\AllowProxies\NTLM = 0x1 | 0x0
Software\Policies\Mozilla\Thunderbird\Authentication\Locked = 0x1 | 0x0
Software\Policies\Mozilla\Thunderbird\Authentication\PrivateBrowsing = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Authentication/Authentication_SPNEGO
Value (string):
<enabled/>
<data id="Authentication" value="1mydomain2https://myotherdomain.com"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Authentication/Authentication_Delegated
Value (string):
<enabled/>
<data id="Authentication" value="1mydomain2https://myotherdomain.com"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Authentication/Authentication_NTLM
Value (string):
<enabled/>
<data id="Authentication" value="1mydomain2https://myotherdomain.com"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Authentication/Authentication_AllowNonFQDN
Value (string):
<enabled/>
<data id="Authentication_AllowNonFQDN_NTLM" value="true | false"/>
<data id="Authentication_AllowNonFQDN_SPNEGO" value="true | false"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Authentication/Authentication_Locked
Value (string):
<enabled/> or <disabled/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Authentication/Authentication_PrivateBrowsing
Value (string):
<enabled/> or <disabled/>
<dict>
<key>Authentication</key>
<dict>
<key>SPNEGO</key>
<array>
<string>mydomain.com</string>
<string>https://myotherdomain.com</string>
</array>
<key>Delegated</key>
<array>
<string>mydomain.com</string>
<string>https://myotherdomain.com</string>
</array>
<key>NTLM</key>
<array>
<string>mydomain.com</string>
<string>https://myotherdomain.com</string>
</array>
<key>AllowNonFQDN</key>
<dict>
<key>SPNEGO</key>
<true/> | <false/>
<key>NTLM</key>
<true/> | <false/>
</dict>
<key>AllowProxies</key>
<dict>
<key>SPNEGO</key>
<true/> | <false/>
<key>NTLM</key>
<true/> | <false/>
</dict>
<key>Locked</key>
<true/> | <false/>
<key>PrivateBrowsing</key>
<true/> | <false/>
</dict>
</dict>
{
"policies": {
"Authentication": {
"SPNEGO": ["mydomain.com", "https://myotherdomain.com"],
"Delegated": ["mydomain.com", "https://myotherdomain.com"],
"NTLM": ["mydomain.com", "https://myotherdomain.com"],
"AllowNonFQDN": {
"SPNEGO": true | false,
"NTLM": true | false
},
"AllowProxies": {
"SPNEGO": true | false,
"NTLM": true | false
},
"Locked": true | false,
"PrivateBrowsing": true | false
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
Authentication Authentication_SPNEGO Authentication_Delegated Authentication_NTLM Authentication_AllowNonFQDN Authentication_AllowNonFQDN_SPNEGO Authentication_AllowNonFQDN_NTLM Authentication_AllowProxies Authentication_AllowProxies_SPNEGO Authentication_AllowProxies_NTLM Authentication_Locked Authentication_PrivateBrowsing |
78.0 |
Enable or disable automatic application update in the background, when the application is not running.
If set to true, application updates may be installed (without user approval) in the background, even when the application is not running. The operating system might still require approval.
If set to false, the application will not try to install updates when the application is not running.
If you have disabled updates via DisableAppUpdate
or disabled automatic updates via AppAutoUpdate
, this policy has no effect.
If you are having trouble getting the background task to run, verify your configuration with the “Requirements to run” section in this support document.
CCK2 Equivalent: N/A
Preferences Affected: app.update.background.enabled
Software\Policies\Mozilla\Thunderbird\BackgroundAppUpdate = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/BackgroundAppUpdate
Value (string):
<enabled/> or <disabled/>
<dict>
<key>BackgroundAppUpdate</key>
<true/> | <false/>
</dict>
{
"policies": {
"BackgroundAppUpdate": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
BackgroundAppUpdate |
91.0 |
Block access to the Add-ons Manager (about:addons).
CCK2 Equivalent: disableAddonsManager
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\BlockAboutAddons = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/BlockAboutAddons
Value (string):
<enabled/> or <disabled/>
<dict>
<key>BlockAboutAddons</key>
<true/> | <false/>
</dict>
{
"policies": {
"BlockAboutAddons": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
BlockAboutAddons |
68.0 |
Block access to about:config.
CCK2 Equivalent: disableAboutConfig
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\BlockAboutConfig = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/BlockAboutConfig
Value (string):
<enabled/> or <disabled/>
<dict>
<key>BlockAboutConfig</key>
<true/> | <false/>
</dict>
{
"policies": {
"BlockAboutConfig": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
BlockAboutConfig |
68.0 |
Block access to About Profiles (about:profiles).
CCK2 Equivalent: disableAboutProfiles
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\BlockAboutProfiles = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/BlockAboutProfiles
Value (string):
<enabled/> or <disabled/>
<dict>
<key>BlockAboutProfiles</key>
<true/> | <false/>
</dict>
{
"policies": {
"BlockAboutProfiles": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
BlockAboutProfiles |
68.0 |
Block access to Troubleshooting Information (about:support).
CCK2 Equivalent: disableAboutSupport
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\BlockAboutSupport = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/BlockAboutSupport
Value (string):
<enabled/> or <disabled/>
<dict>
<key>BlockAboutSupport</key>
<true/> | <false/>
</dict>
{
"policies": {
"BlockAboutSupport": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
BlockAboutSupport |
68.0 |
Enable or disable the detection of captive portals.
CCK2 Equivalent: N/A
Preferences Affected: network.captive-portal-service.enabled
Software\Policies\Mozilla\Thunderbird\CaptivePortal = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/CaptivePortal
Value (string):
<enabled/> or <disabled/>
<dict>
<key>CaptivePortal</key>
<true/> | <false/>
</dict>
{
"policies": {
"CaptivePortal": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
CaptivePortal |
78.0 |
Trust certificates that have been added to the operating system certificate store by a user or administrator.
Note: This policy only works on Windows and macOS. For Linux discussion, see bug 1600509.
See https://support.mozilla.org/kb/setting-certificate-authorities-firefox for more detail.
CCK2 Equivalent: N/A
Preferences Affected: security.enterprise_roots.enabled
Software\Policies\Mozilla\Thunderbird\Certificates\ImportEnterpriseRoots = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Certificates/Certificates_ImportEnterpriseRoots
Value (string):
<enabled/> or <disabled/>
<dict>
<key>Certificates</key>
<dict>
<key>ImportEnterpriseRoots</key>
<true/> | <false/>
</dict>
</dict>
{
"policies": {
"Certificates": {
"ImportEnterpriseRoots": true | false
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
Certificates_ImportEnterpriseRoots |
68.0 |
Install certificates into the Thunderbird certificate store. If only a filename is specified, Thunderbird searches for the file in the following locations:
Starting with Thunderbird 65, Thunderbird 60.5 ESR, a fully qualified path can be used, including UNC paths. You should use the native path style for your operating system. We do not support using %USERPROFILE% or other environment variables on Windows.
If you are specifying the path in the policies.json file on Windows, you need to escape your backslashes (\\
) which means that for UNC paths, you need to escape both (\\\\
). If you use group policy, you only need one backslash.
Certificates are installed using the trust string CT,CT,
.
Binary (DER) and ASCII (PEM) certificates are both supported.
CCK2 Equivalent: certs.ca
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\Certificates\Install\1 = "cert1.der"
Software\Policies\Mozilla\Thunderbird\Certificates\Install\2 = "C:\Users\username\cert2.pem"
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Certificates/Certificates_Install
Value (string):
<enabled/>
<data id="Certificates_Install" value="1cert1.der2C:\Users\username\cert2.pem"/>
<dict>
<key>Certificates</key>
<dict>
<key>Install</key>
<array>
<string>cert1.der</string>
<string>/Users/username/cert2.pem</string>
</array>
</dict>
</dict>
{
"policies": {
"Certificates": {
"Install": ["cert1.der", "/home/username/cert2.pem"]
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
Certificates_Install |
68.0 |
Configure cookie preferences.
Allow
is a list of origins (not domains) where cookies are always allowed. You must include http or https.
AllowSession
is a list of origins (not domains) where cookies are only allowed for the current session. You must include http or https.
Block
is a list of origins (not domains) where cookies are always blocked. You must include http or https.
Behavior
sets the default behavior for cookies based on the values below.
BehaviorPrivateBrowsing
sets the default behavior for cookies in private browsing based on the values below.
Value | Description |
---|---|
accept | Accept all cookies |
reject-foreign | Reject third party cookies |
reject | Reject all cookies |
limit-foreign | Reject third party cookies for sites you haven’t visited |
reject-tracker | Reject cookies for known trackers (default) |
reject-tracker-and-partition-foreign | Reject cookies for known trackers and partition third-party cookies (Total Cookie Protection) (default for private browsing) |
Locked
prevents the user from changing cookie preferences.
Default
determines whether cookies are accepted at all. (Deprecated. Use Behavior
instead)
AcceptThirdParty
determines how third-party cookies are handled. (Deprecated. Use Behavior
instead)
RejectTracker
only rejects cookies for trackers. (Deprecated. Use Behavior
instead)
ExpireAtSessionEnd
determines when cookies expire. (Deprecated. Use SanitizeOnShutdown
instead)
CCK2 Equivalent: N/A
Preferences Affected: network.cookie.cookieBehavior
, network.cookie.cookieBehavior.pbmode
, network.cookie.lifetimePolicy
Software\Policies\Mozilla\Thunderbird\Cookies\Allow\1 = "https://example.com"
Software\Policies\Mozilla\Thunderbird\Cookies\AllowSession\1 = "https://example.edu"
Software\Policies\Mozilla\Thunderbird\Cookies\Block\1 = "https://example.org"
Software\Policies\Mozilla\Thunderbird\Cookies\Behavior = "accept" | "reject-foreign" | "reject" | "limit-foreign" | "reject-tracker" | "reject-tracker-and-partition-foreign"
Software\Policies\Mozilla\Thunderbird\Cookies\BehaviorPrivateBrowsing = "accept" | "reject-foreign" | "reject" | "limit-foreign" | "reject-tracker" | "reject-tracker-and-partition-foreign"
Software\Policies\Mozilla\Thunderbird\Cookies\Locked = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Cookies/Cookies_Allow
Value (string):
<enabled/>
<data id="Permissions" value="1https://example.com"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Cookies/Cookies_AllowSession
Value (string):
<enabled/>
<data id="Permissions" value="1https://example.edu"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Cookies/Cookies_Block
Value (string):
<enabled/>
<data id="Permissions" value="1https://example.org"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Cookies/Cookies_Locked
Value (string):
<enabled/> or <disabled/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Cookies/Cookies_Behavior
Value (string):
<enabled/>
<data id="Cookies_Behavior" value="accept | reject-foreign | reject | limit-foreign | reject-tracker | reject-tracker-and-partition-foreign"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Cookies/Cookies_BehaviorPrivateBrowsing
Value (string):
<enabled/>
<data id="Cookies_BehaviorPrivateBrowsing" value="accept | reject-foreign | reject | limit-foreign | reject-tracker | reject-tracker-and-partition-foreign"/>
<dict>
<key>Cookies</key>
<dict>
<key>Allow</key>
<array>
<string>http://example.com</string>
</array>
<key>AllowSession</key>
<array>
<string>http://example.edu</string>
</array>
<key>Block</key>
<array>
<string>http://example.org</string>
</array>
<key>Locked</key>
<true/> | <false/>
<key>Behavior</key>
<string>accept | reject-foreign | reject | limit-foreign | reject-tracker | reject-tracker-and-partition-foreign</string>
<key>BehaviorPrivateBrowsing</key>
<string>accept | reject-foreign | reject | limit-foreign | reject-tracker | reject-tracker-and-partition-foreign</string>
</dict>
</dict>
{
"policies": {
"Cookies": {
"Allow": ["http://example.org/"],
"AllowSession": ["http://example.edu/"],
"Block": ["http://example.edu/"],
"Locked": true | false,
"Behavior": "accept" | "reject-foreign" | "reject" | "limit-foreign" | "reject-tracker" | "reject-tracker-and-partition-foreign",
"BehaviorPrivateBrowsing": "accept" | "reject-foreign" | "reject" | "limit-foreign" | "reject-tracker" | "reject-tracker-and-partition-foreign",
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
Cookies Cookies_Allow Cookies_Block Cookies_Default Cookies_AcceptThirdParty Cookies_ExpireAtSessionEnd Cookies_Locked |
78.0 | |
Cookies_AllowSession Cookies_RejectTracker Cookies_Behavior Cookies_BehaviorPrivateBrowsing |
Set the default download directory.
You can use ${home} for the native home directory.
CCK2 Equivalent: N/A
Preferences Affected: browser.download.dir
, browser.download.folderList
Software\Policies\Mozilla\Thunderbird\DefaultDownloadDirectory = "${home}\Downloads"
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/DefaultDownloadDirectory
Value (string):
<enabled/>
<data id="Preferences_String" value="${home}\Downloads"/>
<dict>
<key>DefaultDownloadDirectory</key>
<string>${home}/Downloads</string>
</dict>
{
"policies": {
"DefaultDownloadDirectory": "${home}/Downloads"
}
}
{
"policies": {
"DefaultDownloadDirectory": "${home}\\Downloads"
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
DefaultDownloadDirectory |
78.0 |
Turn off application updates within Thunderbird.
CCK2 Equivalent: disableFirefoxUpdates
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\DisableAppUpdate = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/DisableAppUpdate
Value (string):
<enabled/> or <disabled/>
<dict>
<key>DisableAppUpdate</key>
<true/> | <false/>
</dict>
{
"policies": {
"DisableAppUpdate": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
DisableAppUpdate |
68.0 |
Disable the built in PDF viewer. PDF files are downloaded and sent externally.
CCK2 Equivalent: disablePDFjs
Preferences Affected: pdfjs.disabled
Software\Policies\Mozilla\Thunderbird\DisableBuiltinPDFViewer = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/DisableBuiltinPDFViewer
Value (string):
<enabled/> or <disabled/>
<dict>
<key>DisableBuiltinPDFViewer</key>
<true/> | <false/>
</dict>
{
"policies": {
"DisableBuiltinPDFViewer": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
DisableBuiltinPDFViewer |
91.0 |
Disable specific cryptographic ciphers, listed below.
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
TLS_DHE_RSA_WITH_AES_128_CBC_SHA
TLS_DHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_GCM_SHA256
TLS_RSA_WITH_AES_256_GCM_SHA384
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_3DES_EDE_CBC_SHA
Preferences Affected: security.ssl3.ecdhe_rsa_aes_128_gcm_sha256
, security.ssl3.ecdhe_ecdsa_aes_128_gcm_sha256
, security.ssl3.ecdhe_ecdsa_chacha20_poly1305_sha256
, security.ssl3.ecdhe_rsa_chacha20_poly1305_sha256
, security.ssl3.ecdhe_ecdsa_aes_256_gcm_sha384
, security.ssl3.ecdhe_rsa_aes_256_gcm_sha384
, security.ssl3.ecdhe_rsa_aes_128_sha
, security.ssl3.ecdhe_ecdsa_aes_128_sha
, security.ssl3.ecdhe_rsa_aes_256_sha
, security.ssl3.ecdhe_ecdsa_aes_256_sha
, security.ssl3.dhe_rsa_aes_128_sha
, security.ssl3.dhe_rsa_aes_256_sha
, security.ssl3.rsa_aes_128_gcm_sha256
, security.ssl3.rsa_aes_256_gcm_sha384
, security.ssl3.rsa_aes_128_sha
, security.ssl3.rsa_aes_256_sha
, security.ssl3.deprecated.rsa_des_ede3_sha
Note:
This policy was updated in Thunderbird 78 to allow enabling ciphers as well. Setting the value to true disables the cipher, setting the value to false enables the cipher. Previously setting the value to true or false disabled the cipher.
CCK2 Equivalent: N/A
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\DisabledCiphers\CIPHER_NAME = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~DisabledCiphers/DisabledCiphers_CIPHER_NAME
Value (string):
<enabled/> or <disabled/>
<dict>
<key>DisabledCiphers</key>
<dict>
<key>CIPHER_NAME</key>
<true/> | <false/>
</dict>
</dict>
{
"policies": {
"DisabledCiphers": {
"CIPHER_NAME": true | false,
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
DisabledCiphers DisabledCiphers_TLS_DHE_RSA_WITH_AES_128_CBC_SHA DisabledCiphers_TLS_DHE_RSA_WITH_AES_256_CBC_SHA DisabledCiphers_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA DisabledCiphers_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA DisabledCiphers_TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 DisabledCiphers_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 DisabledCiphers_TLS_RSA_WITH_AES_128_CBC_SHA DisabledCiphers_TLS_RSA_WITH_AES_256_CBC_SHA DisabledCiphers_TLS_RSA_WITH_3DES_EDE_CBC_SHA |
76.0 | |
DisabledCiphers_TLS_RSA_WITH_AES_128_GCM_SHA256 DisabledCiphers_TLS_RSA_WITH_AES_256_GCM_SHA384 |
91.0 | |
DisabledCiphers_TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 DisabledCiphers_TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 DisabledCiphers_TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 DisabledCiphers_TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 DisabledCiphers_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA DisabledCiphers_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA |
102.0 | |
DisabledCiphers_TLS_CHACHA20_POLY1305_SHA256 DisabledCiphers_TLS_AES_128_GCM_SHA256 DisabledCiphers_TLS_AES_256_GCM_SHA384 |
Remove access to all developer tools.
CCK2 Equivalent: removeDeveloperTools
Preferences Affected: devtools.policy.disabled
Software\Policies\Mozilla\Thunderbird\DisableDeveloperTools = 0x1 | 0x0`
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/DisableDeveloperTools
Value (string):
<enabled/> or <disabled/>
<dict>
<key>DisableDeveloperTools</key>
<true/> | <false/>
</dict>
{
"policies": {
"DisableDeveloperTools": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
DisableDeveloperTools |
68.0 |
Remove the master password functionality.
If this value is true, it works the same as setting PrimaryPassword
to false and removes the primary password functionality.
If both DisableMasterPasswordCreation
and PrimaryPassword
are used, DisableMasterPasswordCreation
takes precedent.
CCK2 Equivalent: noMasterPassword
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\DisableMasterPasswordCreation = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/DisableMasterPasswordCreation
Value (string):
<enabled/> or <disabled/>
<dict>
<key>DisableMasterPasswordCreation</key>
<true/> | <false/>
</dict>
{
"policies": {
"DisableMasterPasswordCreation": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
DisableMasterPasswordCreation |
68.0 |
Do not allow passwords to be shown in saved logins
CCK2 Equivalent: N/A Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\DisablePasswordReveal = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/DisablePasswordReveal
Value (string):
<enabled/> or <disabled/>
<dict>
<key>DisablePasswordReveal</key>
<true/> | <false/>
</dict>
{
"policies": {
"DisablePasswordReveal": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
DisablePasswordReveal |
78.0 |
Disable safe mode within the browser.
On Windows, this disables safe mode via the command line as well.
CCK2 Equivalent: disableSafeMode
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\DisableSafeMode = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/DisableSafeMode
Value (string):
<enabled/> or <disabled/>
<dict>
<key>DisableSafeMode</key>
<true/> | <false/>
</dict>
{
"policies": {
"DisableSafeMode": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
DisableSafeMode |
78.0 |
Prevent the user from bypassing security in certain cases.
InvalidCertificate
prevents adding an exception when an invalid certificate is shown.
SafeBrowsing
prevents selecting “ignore the risk” and visiting a harmful site anyway.
These policies only affect what happens when an error is shown, they do not affect any settings in preferences.
CCK2 Equivalent: N/A
Preferences Affected: security.certerror.hideAddException
, browser.safebrowsing.allowOverride
Software\Policies\Mozilla\Thunderbird\DisableSecurityBypass\InvalidCertificate = 0x1 | 0x0
Software\Policies\Mozilla\Thunderbird\DisableSecurityBypass\SafeBrowsing = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/P_DisableSecurityBypass_InvalidCertificate
Value (string):
<enabled/> or <disabled/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/P_DisableSecurityBypass_SafeBrowsing
Value (string):
<enabled/> or <disabled/>
<dict>
<key>DisableSecurityBypass</key>
<dict>
<key>InvalidCertificate</key>
<true/> | <false/>
<key>SafeBrowsing</key>
<true/> | <false/>
</dict>
</dict>
{
"policies": {
"DisableSecurityBypass": {
"InvalidCertificate": true | false,
"SafeBrowsing": true | false
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
DisableSecurityBypass DisableSecurityBypass_InvalidCertificate DisableSecurityBypass_SafeBrowsing |
68.0 |
Prevent system add-ons from being installed or updated.
CCK2 Equivalent: N/A
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\DisableSystemAddonUpdate = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/DisableSystemAddonUpdate
Value (string):
<enabled/> or <disabled/>
<dict>
<key>DisableSystemAddonUpdate</key>
<true/> | <false/>
</dict>
{
"policies": {
"DisableSystemAddonUpdate": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
DisableSystemAddonUpdate |
77.0 |
Prevent the upload of telemetry data.
As of Thunderbird 83 and Thunderbird ESR 78.5, local storage of telemetry data is disabled as well.
Mozilla recommends that you do not disable telemetry. Information collected through telemetry helps us build a better product for businesses like yours.
CCK2 Equivalent: disableTelemetry
Preferences Affected: datareporting.healthreport.uploadEnabled
, datareporting.policy.dataSubmissionEnabled
, toolkit.telemetry.archive.enabled
Software\Policies\Mozilla\Thunderbird\DisableTelemetry = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/DisableTelemetry
Value (string):
<enabled/> or <disabled/>
<dict>
<key>DisableTelemetry</key>
<true/> | <false/>
</dict>
{
"policies": {
"DisableTelemetry": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
DisableTelemetry |
78.0 |
Configure DNS over HTTPS.
Enabled
determines whether DNS over HTTPS is enabled
ProviderURL
is a URL to another provider.
Locked
prevents the user from changing DNS over HTTPS preferences.
ExcludedDomains
excludes domains from DNS over HTTPS.
Fallback
determines whether or not Thunderbird will use your default DNS resolver if there is a problem with the secure DNS provider.
CCK2 Equivalent: N/A
Preferences Affected: network.trr.mode
, network.trr.uri
Software\Policies\Mozilla\Thunderbird\DNSOverHTTPS\Enabled = 0x1 | 0x0
Software\Policies\Mozilla\Thunderbird\DNSOverHTTPS\ProviderURL = "URL_TO_ALTERNATE_PROVIDER"
Software\Policies\Mozilla\Thunderbird\DNSOverHTTPS\Locked = 0x1 | 0x0
Software\Policies\Mozilla\Thunderbird\DNSOverHTTPS\ExcludedDomains\1 = "example.com"
Software\Policies\Mozilla\Thunderbird\DNSOverHTTPS\Fallback = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~DNSOverHTTPS/DNSOverHTTPS_Enabled
Value (string):
<enabled/> or <disabled/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~DNSOverHTTPS/DNSOverHTTPS_ProviderURL
Value (string):
<enabled/>
<data id="String" value="URL_TO_ALTERNATE_PROVIDER"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~DNSOverHTTPS/DNSOverHTTPS_Locked
Value (string):
<enabled/> or <disabled/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~DNSOverHTTPS/DNSOverHTTPS_ExcludedDomains
Value (string):
<enabled/>
<data id="List" value="1example.com"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~DNSOverHTTPS/DNSOverHTTPS_Fallback
Value (string):
<enabled/> or <disabled/>
<dict>
<key>DNSOverHTTPS</key>
<dict>
<key>Enabled</key>
<true/> | <false/>
<key>ProviderURL</key>
<string>URL_TO_ALTERNATE_PROVIDER</string>
<key>Locked</key>
<true/> | <false/>
<key>ExcludedDomains</key>
<array>
<string>example.com</string>
</array>
<key>Fallback</key>
<true/> | <false/>
</dict>
</dict>
{
"policies": {
"DNSOverHTTPS": {
"Enabled": true | false,
"ProviderURL": "URL_TO_ALTERNATE_PROVIDER",
"Locked": true | false,
"ExcludedDomains": ["example.com"],
"Fallback": true | false,
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
DNSOverHTTPS DNSOverHTTPS_Enabled DNSOverHTTPS_ProviderURL DNSOverHTTPS_ExcludedDomains DNSOverHTTPS_Locked |
91.0 | |
DNSOverHTTPS_Fallback |
Set and lock the download directory.
You can use ${home} for the native home directory.
CCK2 Equivalent: N/A
Preferences Affected: browser.download.dir
, browser.download.folderList
, browser.download.useDownloadDir
Software\Policies\Mozilla\Thunderbird\DownloadDirectory = "${home}\Downloads"
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/DownloadDirectory
Value (string):
<enabled/>
<data id="Preferences_String" value="${home}\Downloads"/>
<dict>
<key>DownloadDirectory</key>
<string>${home}/Downloads</string>
</dict>
{
"policies": {
"DownloadDirectory": "${home}/Downloads"
}
{
"policies": {
"DownloadDirectory": "${home}\\Downloads"
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
DownloadDirectory |
78.0 |
Control the installation, uninstallation and locking of extensions.
We strongly recommend that you use the ExtensionSettings
policy. It has the same functionality and adds more. It does not support native paths, though, so you’ll have to use file:/// URLs.
This method will be deprecated in the near future.
Install
is a list of URLs or native paths for extensions to be installed.
Uninstall
is a list of extension IDs that should be uninstalled if found.
Locked
is a list of extension IDs that the user cannot disable or uninstall.
CCK2 Equivalent: addons
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\Extensions\Install\1 = "https://addons.thunderbird.net/thunderbird/downloads/somefile.xpi"
Software\Policies\Mozilla\Thunderbird\Extensions\Install\2 = "//path/to/xpi"
Software\Policies\Mozilla\Thunderbird\Extensions\Uninstall\1 = "bad_addon_id@mozilla.org"
Software\Policies\Mozilla\Thunderbird\Extensions\Locked\1 = "addon_id@mozilla.org"
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Extensions/Extensions_Install
Value (string):
<enabled/>
<data id="Extensions" value="1https://addons.thunderbird.net/thunderbird/downloads/somefile.xpi2//path/to/xpi"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Extensions/Extensions_Uninstall
Value (string):
<enabled/>
<data id="Extensions" value="1bad_addon_id@mozilla.org"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Extensions/Extensions_Locked
Value (string):
<enabled/>
<data id="Extensions" value="1addon_id@mozilla.org"/>
<dict>
<key>Extensions</key>
<dict>
<key>Install</key>
<array>
<string>https://addons.thunderbird.net/thunderbird/downloads/somefile.xpi</string>
<string>//path/to/xpi</string>
</array>
<key>Uninstall</key>
<array>
<string>bad_addon_id@mozilla.org</string>
</array>
<key>Locked</key>
<array>
<string>addon_id@mozilla.org</string>
</array>
</dict>
</dict>
{
"policies": {
"Extensions": {
"Install": ["https://addons.thunderbird.net/thunderbird/downloads/somefile.xpi", "//path/to/xpi"],
"Uninstall": ["bad_addon_id@mozilla.org"],
"Locked": ["addon_id@mozilla.org"]
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
Extensions Extensions_Install Extensions_Uninstall Extensions_Locked |
68.0 |
Manage all aspects of extensions. This policy is based heavily on the Chrome policy of the same name.
This policy maps an extension ID to its configuration. With an extension ID, the configuration will be applied to the specified extension only. A default configuration can be set for the special ID “*”, which will apply to all extensions that don’t have a custom configuration set in this policy.
To obtain an extension ID, install the extension and go to about:support. You will see the ID in the Extensions section. I’ve also created an extension that makes it easy to find the ID of extensions on ATN. You can download it here.
The configuration for each extension is another dictionary that can contain the fields documented below.
Name | Description |
---|---|
installation_mode |
Maps to a string indicating the installation mode for the extension. The valid strings are allowed ,blocked ,force_installed , and normal_installed . |
allowed |
Allows the extension to be installed by the user. This is the default behavior. There is no need for an install_url; it will automatically be allowed based on the ID. |
blocked |
Blocks installation of the extension and removes it from the device if already installed. |
force_installed |
The extension is automatically installed and can’t be removed by the user. This option is not valid for the default configuration and requires an install_url. |
normal_installed |
The extension is automatically installed but can be disabled by the user. This option is not valid for the default configuration and requires an install_url. |
install_url |
Maps to a URL indicating where Thunderbird can download a force_installed or normal_installed extension. If installing from the local file system, use a file:/// URL. If installing from the addons.thunderbird.net, use the following URL (substituting SHORT_NAME from the URL on ATN), https://addons.thunderbird.net/thunderbird/downloads/latest/SHORT_NAME/latest.xpi. Languages packs are available from https://releases.mozilla.org/pub/thunderbird/releases/VERSION/PLATFORM/xpi/LANGUAGE.xpi. If you need to update the extension, you can change the name of the extension and it will be automatically updated. Extensions installed from file URLs will additional be updated when their internal version changes. |
install_sources |
A list of sources from which installing extensions is allowed. This is unnecessary if you are only allowing the installation of certain extensions by ID. Each item in this list is an extension-style match pattern. Users will be able to easily install items from any URL that matches an item in this list. Both the location of the *.xpi file and the page where the download is started from (i.e. the referrer) must be allowed by these patterns. This setting can be used only for the default configuration. |
allowed_types |
This setting whitelists the allowed types of extension/apps that can be installed in Thunderbird. The value is a list of strings, each of which should be one of the following: “extension”, “theme”, “dictionary”, “locale” This setting can be used only for the default configuration. |
blocked_install_message |
This maps to a string specifying the error message to display to users if they’re blocked from installing an extension. This setting allows you to append text to the generic error message displayed when the extension is blocked. This could be be used to direct users to your help desk, explain why a particular extension is blocked, or something else. This setting can be used only for the default configuration. |
restricted_domains |
An array of domains on which content scripts can’t be run. This setting can be used only for the default configuration. |
updates_disabled |
Boolean that indicates whether or not to disable automatic updates for an individual extension. |
*As of Thunderbird 85, Thunderbird ESR 78.7, installing a theme makes it the default.)\
CCK2 Equivalent: N/A
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\ExtensionSettings (REG_MULTI_SZ) =
{
"*": {
"blocked_install_message": "Custom error message.",
"install_sources": ["about:addons","https://addons.thunderbird.net/"],
"installation_mode": "blocked",
"allowed_types": ["extension"]
},
"uBlock0@raymondhill.net": {
"installation_mode": "force_installed",
"install_url": "https://addons.thunderbird.net/thunderbird/downloads/latest/ublock-origin/latest.xpi"
},
"https-everywhere@eff.org": {
"installation_mode": "allowed"
}
}
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Extensions/ExtensionSettings
Value (string):
<enabled/>
<data id="ExtensionSettings" value='
{
"*": {
"blocked_install_message": "Custom error message.",
"install_sources": ["about:addons","https://addons.thunderbird.net/"],
"installation_mode": "blocked",
"allowed_types": ["extension"]
},
"uBlock0@raymondhill.net": {
"installation_mode": "force_installed",
"install_url": "https://addons.thunderbird.net/thunderbird/downloads/latest/ublock-origin/latest.xpi"
},
"https-everywhere@eff.org": {
"installation_mode": "allowed"
}
}'/>
<dict>
<key>ExtensionSettings</key>
<dict>
<key>*</key>
<dict>
<key>blocked_install_message</key>
<string>Custom error message.</string>
<key>install_sources</key>
<array>
<string>about:addons</string>
<string>https://addons.thunderbird.net/</string>
</array>
<key>installation_mode</key>
<string>blocked</string>
<key>allowed_types</key>
<array>
<string>extension</string>
</array>
</dict>
<key>uBlock0@raymondhill.net</key>
<dict>
<key>installation_mode</key>
<string>force_installed</string>
<key>install_url</key>
<string>https://addons.thunderbird.net/thunderbird/downloads/latest/ublock-origin/latest.xpi</string>
</dict>
<key>https-everywhere@eff.org</key>
<dict>
<key>installation_mode</key>
<string>allowed</string>
</dict>
</dict>
</dict>
{
"policies": {
"ExtensionSettings": {
"*": {
"blocked_install_message": "Custom error message.",
"install_sources": ["about:addons","https://addons.thunderbird.net/"],
"installation_mode": "blocked",
"allowed_types": ["extension"]
},
"uBlock0@raymondhill.net": {
"installation_mode": "force_installed",
"install_url": "https://addons.thunderbird.net/thunderbird/downloads/latest/ublock-origin/latest.xpi"
},
"https-everywhere@eff.org": {
"installation_mode": "allowed"
}
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
ExtensionSettings ExtensionSettings_[name] ExtensionSettings_[name]_blocked_install_message |
68.0 | |
ExtensionSettings_* ExtensionSettings_*_installation_mode ExtensionSettings_*_allowed_types ExtensionSettings_*_blocked_install_message ExtensionSettings_*_install_sources ExtensionSettings_*_restricted_domains ExtensionSettings_[name]_installation_mode ExtensionSettings_[name]_install_url |
78.10.3, 89.0 | |
ExtensionSettings_[name]_updates_disabled |
91.0 | |
ExtensionSettings_[name]_private_browsing |
136.0 | |
ExtensionSettings_*_temporarily_allow_weak_signatures ExtensionSettings_[name]_default_area ExtensionSettings_[name]_temporarily_allow_weak_signatures |
Control extension updates.
CCK2 Equivalent: N/A
Preferences Affected: extensions.update.enabled
Software\Policies\Mozilla\Thunderbird\ExtensionUpdate = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Extensions/ExtensionUpdate
Value (string):
<enabled/> or <disabled/>
<dict>
<key>ExtensionUpdate</key>
<true/> | <false/>
</dict>
{
"policies": {
"ExtensionUpdate": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
ExtensionUpdate |
68.0 |
Configure default application handlers. This policy is based on the internal format of handlers.json
.
You can configure handlers based on a mime type (mimeTypes
), a file’s extension (extensions
), or a protocol (schemes
).
Within each handler type, you specify the given mimeType/extension/scheme as a key and use the following subkeys to describe how it is handled.
Name | Description |
---|---|
action |
Can be either saveToDisk , useHelperApp , useSystemDefault . |
ask |
If true , the user is asked if what they want to do with the file. If false , the action is taken without user intervention. |
handlers |
An array of handlers with the first one being the default. If you don’t want to have a default handler, use an empty object for the first handler. Choose between path or uriTemplate. |
name |
The display name of the handler (might not be used). |
path |
The native path to the executable to be used. |
uriTemplate |
A url to a web based application handler. The URL must be https and contain a %s to be used for substitution. |
CCK2 Equivalent: N/A
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\Handlers (REG_MULTI_SZ) =
{
"mimeTypes": {
"application/msword": {
"action": "useSystemDefault",
"ask": true | false
}
},
"schemes": {
"mailto": {
"action": "useHelperApp",
"ask": true | false,
"handlers": [{
"name": "Gmail",
"uriTemplate": "https://mail.google.com/mail/?extsrc=mailto&url=%s"
}]
}
},
"extensions": {
"pdf": {
"action": "useHelperApp",
"ask": true | false,
"handlers": [{
"name": "Adobe Acrobat",
"path": "C:\\Program Files (x86)\\Adobe\\Acrobat Reader DC\\Reader\\AcroRd32.exe"
}]
}
}
}
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/Handlers
Value (string):
<enabled/>
<data id="Handlers" value='
{
"mimeTypes": {
"application/msword": {
"action": "useSystemDefault",
"ask": true | false
}
},
"schemes": {
"mailto": {
"action": "useHelperApp",
"ask": true | false,
"handlers": [{
"name": "Gmail",
"uriTemplate": "https://mail.google.com/mail/?extsrc=mailto&url=%s"
}]
}
},
"extensions": {
"pdf": {
"action": "useHelperApp",
"ask": true | false,
"handlers": [{
"name": "Adobe Acrobat",
"path": "C:\\Program Files (x86)\\Adobe\\Acrobat Reader DC\\Reader\\AcroRd32.exe"
}]
}
}
}
'/>
If you are using custom ADMX and ADML administrative templates in Intune, you can use this OMA-URI instead to workaround the limit on the length of strings. Put all of your JSON on one line.
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/HandlersOneLine
Value (string):
<enabled/>
<data id="JSONOneLine" value='{}'/>
<dict>
<key>Handlers</key>
<dict>
<key>mimeTypes</key>
<dict>
<key>application/msword</key>
<dict>
<key>action</key>
<string>useSystemDefault</string>
<key>ask</key>
<true/> | <false/>
</dict>
</dict>
<key>schemes</key>
<dict>
<key>mailto</key>
<dict>
<key>action</key>
<string>useHelperApp</string>
<key>ask</key>
<true/> | <false/>
<key>handlers</key>
<array>
<dict>
<key>name</key>
<string>Gmail</string>
<key>uriTemplate</key>
<string>https://mail.google.com/mail/?extsrc=mailto&url=%s</string>
</dict>
</array>
</dict>
</dict>
<key>extensions</key>
<dict>
<key>pdf</key>
<dict>
<key>action</key>
<string>useHelperApp</string>
<key>ask</key>
<true/> | <false/>
<key>handlers</key>
<array>
<dict>
<key>name</key>
<string>Adobe Acrobat</string>
<key>path</key>
<string>/System/Applications/Preview.app</string>
</dict>
</array>
</dict>
</dict>
</dict>
</dict>
{
"policies": {
"Handlers": {
"mimeTypes": {
"application/msword": {
"action": "useSystemDefault",
"ask": false
}
},
"schemes": {
"mailto": {
"action": "useHelperApp",
"ask": true | false,
"handlers": [{
"name": "Gmail",
"uriTemplate": "https://mail.google.com/mail/?extsrc=mailto&url=%s"
}]
}
},
"extensions": {
"pdf": {
"action": "useHelperApp",
"ask": true | false,
"handlers": [{
"name": "Adobe Acrobat",
"path": "/usr/bin/acroread"
}]
}
}
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
Handlers Handlers_(mimeTypes\|extensions\|schemes) Handlers_(mimeTypes\|extensions\|schemes)_[name] Handlers_(mimeTypes\|extensions\|schemes)_[name]_action Handlers_(mimeTypes\|extensions\|schemes)_[name]_ask Handlers_(mimeTypes\|extensions\|schemes)_[name]_handlers |
91.0 |
Control hardware acceleration.
CCK2 Equivalent: N/A
Preferences Affected: layers.acceleration.disabled
Software\Policies\Mozilla\Thunderbird\HardwareAcceleration = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/HardwareAcceleration
Value (string):
<enabled/> or <disabled/>
<dict>
<key>HardwareAcceleration</key>
<true/> | <false/>
</dict>
{
"policies": {
"HardwareAcceleration": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
HardwareAcceleration |
78.0 |
TBD
Policy/Property Name | supported since | deprecated after |
---|---|---|
InAppNotification InAppNotification_DonationEnabled InAppNotification_SurveyEnabled InAppNotification_MessageEnabled InAppNotification_Disabled |
139.0 |
Configure the default extension install policy as well as origins for extension installs are allowed. This policy does not override turning off all extension installs.
Allow
is a list of origins where extension installs are allowed.
Default
determines whether or not extension installs are allowed by default.
CCK2 Equivalent: permissions.install
Preferences Affected: xpinstall.enabled
, browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons
, browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features
Software\Policies\Mozilla\Thunderbird\InstallAddonsPermission\Allow\1 = "https://example.org"
Software\Policies\Mozilla\Thunderbird\InstallAddonsPermission\Allow\2 = "https://example.edu"
Software\Policies\Mozilla\Thunderbird\InstallAddonsPermission\Default = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Addons/InstallAddonsPermission_Allow
Value (string):
<enabled/>
<data id="Permissions" value="1https://example.org2https://example.edu"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Addons/InstallAddonsPermission_Default
Value (string):
<enabled/>
<dict>
<key>InstallAddonsPermission</key>
<dict>
<key>Allow</key>
<array>
<string>http://example.org</string>
<string>http://example.edu</string>
</array>
<key>Default</key>
<true/> | <false/>
</dict>
</dict>
{
"policies": {
"InstallAddonsPermission": {
"Allow": ["http://example.org/",
"http://example.edu/"],
"Default": true | false
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
InstallAddonsPermission InstallAddonsPermission_Allow InstallAddonsPermission_Default |
68.0 |
Switch to manual updates only.
If this policy is enabled:
This policy is primarily intended for advanced end users, not for enterprises, but it is available via GPO.
CCK2 Equivalent: N/A
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\ManualAppUpdateOnly = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/ManualAppUpdateOnly
Value (string):
<enabled/> or <disabled/>
<dict>
<key>ManualAppUpdateOnly</key>
<true/> | <false/>
</dict>
{
"policies": {
"ManualAppUpdateOnly": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
ManualAppUpdateOnly |
91.0 |
Enable or disable network prediction (DNS prefetching).
CCK2 Equivalent: N/A
Preferences Affected: network.dns.disablePrefetch
, network.dns.disablePrefetchFromHTTPS
Software\Policies\Mozilla\Thunderbird\NetworkPrediction = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/NetworkPrediction
Value (string):
<enabled/> or <disabled/>
<dict>
<key>NetworkPrediction</key>
<true/> | <false/>
</dict>
{
"policies": {
"NetworkPrediction": true | false
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
NetworkPrediction |
91.0 |
Control whether or not Thunderbird offers to save passwords.
CCK2 Equivalent: dontRememberPasswords
Preferences Affected: signon.rememberSignons
Software\Policies\Mozilla\Thunderbird\OfferToSaveLogins = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/OfferToSaveLogins
Value (string):
<enabled/> or <disabled/>
<dict>
<key>OfferToSaveLogins</key>
<true/> | <false/>
</dict>
{
"policies": {
"OfferToSaveLogins": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
OfferToSaveLogins |
91.0 |
Sets the default value of signon.rememberSignons without locking it.
CCK2 Equivalent: dontRememberPasswords
Preferences Affected: signon.rememberSignons
Software\Policies\Mozilla\Thunderbird\OfferToSaveLoginsDefault = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/OfferToSaveLoginsDefault
Value (string):
<enabled/> or <disabled/>
<dict>
<key>OfferToSaveLoginsDefault</key>
<true/> | <false/>
</dict>
{
"policies": {
"OfferToSaveLoginsDefault": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
OfferToSaveLoginsDefault |
91.0 |
Remove access to the password manager via preferences and blocks about:logins.
CCK2 Equivalent: N/A
Preferences Affected: pref.privacy.disable_button.view_passwords
Software\Policies\Mozilla\Thunderbird\PasswordManagerEnabled = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/PasswordManagerEnabled
Value (string):
<enabled/> or <disabled/>
<dict>
<key>PasswordManagerEnabled</key>
<true/> | <false/>
</dict>
{
"policies": {
"PasswordManagerEnabled": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
PasswordManagerEnabled |
78.0 |
Disable or configure PDF.js, the built-in PDF viewer.
If Enabled
is set to false, the built-in PDF viewer is disabled.
If EnablePermissions
is set to true, the built-in PDF viewer will honor document permissions like preventing the copying of text.
Note: DisableBuiltinPDFViewer has not been deprecated. You can either continue to use it, or switch to using PDFjs->Enabled to disable the built-in PDF viewer. This new permission was added because we needed a place for PDFjs->EnabledPermissions.
CCK2 Equivalent: N/A
Preferences Affected: pdfjs.disabled
, pdfjs.enablePermissions
Software\Policies\Mozilla\Thunderbird\PDFjs\Enabled = 0x1 | 0x0
Software\Policies\Mozilla\Thunderbird\PDFjs\EnablePermissions = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~PDFjs/PDFjs_Enabled
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~PDFjs/PDFjs_EnablePermissions
Value (string):
<enabled/>or <disabled/>
<dict>
<key>PDFjs</key>
<dict>
<key>Enabled</key>
<true/> | <false/>
<key>EnablePermissions</key>
<true/> | <false/>
</dict>
</dict>
{
"policies": {
"PDFjs": {
"Enabled": true | false,
"EnablePermissions": true | false
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
PDFjs PDFjs_Enabled PDFjs_EnablePermissions |
91.0 |
Set and lock preferences.
NOTE On Windows, in order to use this policy, you must clear all settings in the old Deprecated Preferences (TB78 and older)
section.
Previously you could only set and lock a subset of preferences. Starting with Thunderbird 91 you can set many more preferences. You can also set default preferences, user preferences and you can clear preferences.
Preferences that start with the following prefixes are supported:
accessibility.
app.update.
browser.
calendar.
chat.
datareporting.policy.
dom.
extensions.
general.autoScroll
general.smoothScroll
geo.
gfx.
intl.
layers.
layout.
mail.
mailnews.
media.
network.
pdfjs.
places.
print.
signon.
spellchecker.
ui.
widget.
as well as the following security preferences: | Preference | Type | Default | — | — | — | security.default_personal_cert | string | Ask Every Time | If set to Select Automatically, Thunderbird automatically chooses the default personal certificate. | security.insecure_connection_text.enabled | bool | false | If set to true, adds the words “Not Secure” for insecure sites. | security.insecure_connection_text.pbmode.enabled | bool | false | If set to true, adds the words “Not Secure” for insecure sites in private browsing. | security.insecure_field_warning.contextual.enabled | bool | true | If set to false, remove the warning for inscure login fields. | security.mixed_content.block_active_content | boolean | true | If false, mixed active content (HTTP and HTTPS) is not blocked. | security.osclientcerts.autoload | boolean | false | If true, client certificates are loaded from the operating system certificate store. | security.ssl.errorReporting.enabled | boolean | true | If false, SSL errors cannot be sent to Mozilla. | security.tls.hello_downgrade_check | boolean | true | If false, the TLS 1.3 downgrade check is disabled. | security.tls.version.enable-deprecated | boolean | false | If true, browser will accept TLS 1.0. and TLS 1.1 | security.warn_submit_secure_to_insecure | boolean | true | If false, no warning is shown when submitting s form from https to http.
Using the preference as the key, set the Value
to the corresponding preference value.
Status
can be “default”, “locked”, “user” or “clear”
Default preferences can be modified by the user.
If a value is locked, it is also set as the default.
User preferences persist across invocations of Thunderbird. It is the equivalent of a user setting the preference. They are most useful when a preference is needed very early in startup so it can’t be set as default by policy.
User preferences persist even if the policy is removed, so if you need to remove them, you should use the clear policy.
See the examples below for more detail.
IMPORTANT: Make sure you’re only setting a particular preference using this mechanism and not some other way.
Status
CCK2 Equivalent: preferences
Preferences Affected: Many
Software\Policies\Mozilla\Thunderbird\Preferences (REG_MULTI_SZ) =
{
"accessibility.force_disabled": {
"Value": 1,
"Status": "default"
},
"browser.cache.disk.parent_directory": {
"Value": "SOME_NATIVE_PATH",
"Status": "user"
},
}
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/Preferences
Value (string):
<enabled/>
<data id="JSON" value='
{
"accessibility.force_disabled": {
"Value": 1,
"Status": "default"
},
"browser.cache.disk.parent_directory": {
"Value": "SOME_NATIVE_PATH",
"Status": "user"
},
}'/>
<dict>
<key>Preferences</key>
<dict>
<key>accessibility.force_disabled</key>
<dict>
<key>Value</key>
<integer>1</integer>
<key>Status</key>
<string>default</string>
</dict>
<key>browser.cache.disk.parent_directory</key>
<dict>
<key>Value</key>
<string>SOME_NATIVE_PATH</string>
<key>Status</key>
<string>user</string>
</dict>
</dict>
</dict>
{
"policies": {
"Preferences": {
"accessibility.force_disabled": {
"Value": 1,
"Status": "default"
},
"browser.cache.disk.parent_directory": {
"Value": "SOME_NATIVE_PATH",
"Status": "user"
},
}
}
}
CCK2 Equivalent: preferences
Preferences Affected: See below
| Preference | Type | Default | — | — | — | accessibility.force_disabled | integer | 0 | If set to 1, platform accessibility is disabled. | browser.cache.disk.enable | boolean | true | If false, don’t store cache on the hard drive. | ~browser.cache.disk.parent_directory~ | string | Profile temporary directory | ~If set, changes the location of the disk cache.~ This policy doesn’t work. It’s being worked on. | browser.fixup.dns_first_for_single_words | boolean | false | If true, single words are sent to DNS, not directly to search. | browser.safebrowsing.phishing.enabled | boolean | true | If false, phishing protection is not enabled (Not recommended) | browser.safebrowsing.malware.enabled | boolean | true | If false, malware protection is not enabled (Not recommended) | browser.search.update | boolean | true | If false, updates for search engines are not checked. | browser.urlbar.suggest.bookmark | boolean | true | If false, bookmarks aren’t suggested when typing in the URL bar. | browser.urlbar.suggest.history | boolean | true | If false, history isn’t suggested when typing in the URL bar. | browser.urlbar.suggest.openpage | boolean | true | If false, open tabs aren’t suggested when typing in the URL bar. | datareporting.policy.dataSubmissionPolicyBypassNotification | boolean | false | If true, don’t show the privacy policy tab on first run. | dom.allow_scripts_to_close_windows | boolean | false | If false, web page can close windows. | dom.disable_window_flip | boolean | true | If false, web pages can focus and activate windows. | dom.disable_window_move_resize | boolean | false | If true, web pages can’t move or resize windows. | dom.event.contextmenu.enabled | boolean | true | If false, web pages can’t override context menus. | dom.keyboardevent.keypress.hack.dispatch_non_printable_keys.addl | string | N/A | See https://support.mozilla.org/en-US/kb/dom-events-changes-introduced-firefox-66 | dom.keyboardevent.keypress.hack.use_legacy_keycode_and_charcode.addl | string | N/A | See https://support.mozilla.org/en-US/kb/dom-events-changes-introduced-firefox-66 | extensions.blocklist.enabled | boolean | true | If false, the extensions blocklist is not used (Not recommended) | geo.enabled | boolean | true | If false, the geolocation API is disabled. | Language dependent | intl.accept_languages | string | If set, preferred language for web pages. | network.dns.disableIPv6 | boolean | false | If true, IPv6 DNS lokoups are disabled. | network.IDN_show_punycode | boolean | false | If true, display the punycode version of internationalized domain names. | places.history.enabled | boolean | true | If false, history is not enabled. | print.save_print_settings | boolean | true | If false, print settings are not saved between jobs. | security.default_personal_cert | string | Ask Every Time | If set to Select Automatically, Thunderbird automatically chooses the default personal certificate. | security.mixed_content.block_active_content | boolean | true | If false, mixed active content (HTTP and HTTPS) is not blocked. | security.osclientcerts.autoload | boolean | false | If true, client certificates are loaded from the operating system certificate store. | security.ssl.errorReporting.enabled | boolean | true | If false, SSL errors cannot be sent to Mozilla. | security.tls.hello_downgrade_check | boolean | true | If false, the TLS 1.3 downgrade check is disabled. | widget.content.gtk-theme-override | string | N/A | If set, overrides the GTK theme for widgets.
Software\Policies\Mozilla\Thunderbird\Preferences\boolean_preference_name = 0x1 | 0x0
Software\Policies\Mozilla\Thunderbird\Preferences\string_preference_name = "string_value"
OMA-URI: (periods are replaced by underscores)
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Preferences/boolean_preference_name
Value (string):
<enabled/> or <disabled/>
OMA-URI: (periods are replaced by underscores)
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Preferences/string_preference_name
Value (string):
<enabled/>
<data id="Preferences_String" value="string_value"/>
<dict>
<key>Preferences</key>
<dict>
<key>boolean_preference_name</key>
<true/> | <false/>
<key>string_preference_name</key>
<string>string_value</string>
</dict>
</dict>
{
"policies": {
"Preferences": {
"boolean_preference_name": true | false,
"string_preference_name": "string_value"
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
Preferences |
68.0 | |
Preferences_network.IDN_show_punycode Preferences_browser.cache.disk.parent_directory |
68.0 | 89.0 |
Preferences_browser.fixup.dns_first_for_single_words Preferences_browser.urlbar.suggest.openpage Preferences_browser.urlbar.suggest.history Preferences_browser.urlbar.suggest.bookmark |
68.0 | 77.0 |
Preferences_accessibility.force_disabled Preferences_browser.cache.disk.enable Preferences_browser.safebrowsing.phishing.enabled Preferences_browser.safebrowsing.malware.enabled Preferences_browser.search.update Preferences_datareporting.policy.dataSubmissionPolicyBypassNotification Preferences_dom.allow_scripts_to_close_windows Preferences_dom.disable_window_flip Preferences_dom.disable_window_move_resize Preferences_dom.event.contextmenu.enabled Preferences_dom.keyboardevent.keypress.hack.dispatch_non_printable_keys.addl Preferences_dom.keyboardevent.keypress.hack.use_legacy_keycode_and_charcode.addl Preferences_extensions.blocklist.enabled Preferences_geo.enabled Preferences_intl.accept_languages Preferences_network.dns.disableIPv6 Preferences_places.history.enabled Preferences_print.save_print_settings Preferences_security.default_personal_cert Preferences_security.mixed_content.block_active_content Preferences_security.osclientcerts.autoload Preferences_security.ssl.errorReporting.enabled Preferences_security.tls.hello_downgrade_check Preferences_widget.content.gtk-theme-override |
78.0 | 89.0 |
Preferences_[name] Preferences_[name]_Value Preferences_[name]_Status |
91.0 | |
Preferences_[name]_Type |
Require or prevent using a primary (formerly master) password.
If this value is true, a primary password is required. If this value is false, it works the same as if DisableMasterPasswordCreation
was true and removes the primary password functionality.
If both DisableMasterPasswordCreation and PrimaryPassword are used, DisableMasterPasswordCreation takes precedent.
CCK2 Equivalent: noMasterPassword
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\PrimaryPassword = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/PrimaryPassword
Value (string):
<enabled/> or <disabled/>
<dict>
<key>PrimaryPassword</key>
<true/> | <false/>
</dict>
{
"policies": {
"PrimaryPassword": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
PrimaryPassword |
91.0 |
Ask where to save each file before downloading.
CCK2 Equivalent: N/A
Preferences Affected: browser.download.useDownloadDir
Software\Policies\Mozilla\Thunderbird\PromptForDownloadLocation = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/PromptForDownloadLocation
Value (string):
<enabled/> or <disabled/>
<dict>
<key>PromptForDownloadLocation</key>
<true/> | <false/>
</dict>
{
"policies": {
"PromptForDownloadLocation": true | false
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
PromptForDownloadLocation |
78.0 |
Configure proxy settings. These settings correspond to the connection settings in Thunderbird preferences. To specify ports, append them to the hostnames with a colon (:).
Unless you lock this policy, changes the user already has in place will take effect.
Mode
is the proxy method being used.
Locked
is whether or not proxy settings can be changed.
HTTPProxy
is the HTTP proxy server.
UseHTTPProxyForAllProtocols
is whether or not the HTTP proxy should be used for all other proxies.
SSLProxy
is the SSL proxy server.
FTPProxy
is the FTP proxy server.
SOCKSProxy
is the SOCKS proxy server
SOCKSVersion
is the SOCKS version (4 or 5)
Passthrough
is list of hostnames or IP addresses that will not be proxied. Use <local>
to bypass proxying for all hostnames which do not contain periods.
AutoConfigURL
is a URL for proxy configuration (only used if Mode is autoConfig).
AutoLogin
means do not prompt for authentication if password is saved.
UseProxyForDNS
to use proxy DNS when using SOCKS v5.
CCK2 Equivalent: networkProxy*
Preferences Affected: network.proxy.type
, network.proxy.autoconfig_url
, network.proxy.socks_remote_dns
, signon.autologin.proxy
, network.proxy.socks_version
, network.proxy.no_proxies_on
, network.proxy.share_proxy_settings
, network.proxy.http
, network.proxy.http_port
, network.proxy.ftp
, network.proxy.ftp_port
, network.proxy.ssl
, network.proxy.ssl_port
, network.proxy.socks
, network.proxy.socks_port
Software\Policies\Mozilla\Thunderbird\Proxy\Mode = "none" | "system" | "manual" | "autoDetect" | "autoConfig"
Software\Policies\Mozilla\Thunderbird\Proxy\Locked = 0x1 | 0x0
Software\Policies\Mozilla\Thunderbird\Proxy\HTTPProxy = https://httpproxy.example.com
Software\Policies\Mozilla\Thunderbird\Proxy\UseHTTPProxyForAllProtocols = 0x1 | 0x0
Software\Policies\Mozilla\Thunderbird\Proxy\SSLProxy = https://sslproxy.example.com
Software\Policies\Mozilla\Thunderbird\Proxy\FTPProxy = https://ftpproxy.example.com
Software\Policies\Mozilla\Thunderbird\Proxy\SOCKSProxy = https://socksproxy.example.com
Software\Policies\Mozilla\Thunderbird\Proxy\SOCKSVersion = 0x4 | 0x5
Software\Policies\Mozilla\Thunderbird\Proxy\Passthrough = <local>
Software\Policies\Mozilla\Thunderbird\Proxy\AutoConfigURL = URL_TO_AUTOCONFIG
Software\Policies\Mozilla\Thunderbird\Proxy\AutoLogin = 0x1 | 0x0
Software\Policies\Mozilla\Thunderbird\Proxy\UseProxyForDNS = 0x1 | 0x0
Note These setttings were moved to a category to make them easier to configure via Intune.
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~ProxySettings/Proxy_Locked
Value (string):
<enabled/> or <disabled/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~ProxySettings/Proxy_ConnectionType
Value (string):
<enabled/>
<data id="Proxy_ConnectionType" value="none | system | manual | autoDetect | autoConfig"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~ProxySettings/Proxy_HTTPProxy
Value (string):
<enabled/>
<data id="Proxy_HTTPProxy" value="httpproxy.example.com"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~ProxySettings/Proxy_UseHTTPProxyForAllProtocols
Value (string):
<enabled/> or <disabled/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~ProxySettings/Proxy_SSLProxy
Value (string):
<enabled/>
<data id="Proxy_SSLProxy" value="sslproxy.example.com"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~ProxySettings/Proxy_SOCKSProxy
Value (string):
<enabled/>
<data id="Proxy_SOCKSProxy" value="socksproxy.example.com"/>
<data id="Proxy_SOCKSVersion" value="4 | 5"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~ProxySettings/Proxy_AutoConfigURL
Value (string):
<enabled/>
<data id="Proxy_AutoConfigURL" value="URL_TO_AUTOCONFIG"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~ProxySettings/Proxy_Passthrough
Value (string):
<enabled/>
<data id="Proxy_Passthrough" value="<local>"/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~ProxySettings/Proxy_AutoLogin
Value (string):
<enabled/> or <disabled/>
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~ProxySettings/Proxy_UseProxyForDNS
Value (string):
<enabled/> or <disabled/>
OMA-URI (Old way):
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/Proxy
Value (string):
<enabled/>
<data id="ProxyLocked" value="true | false"/>
<data id="ConnectionType" value="none | system | manual | autoDetect | autoConfig"/>
<data id="HTTPProxy" value="httpproxy.example.com"/>
<data id="UseHTTPProxyForAllProtocols" value="true | false"/>
<data id="SSLProxy" value="sslproxy.example.com"/>
<data id="FTPProxy" value="ftpproxy.example.com"/>
<data id="SOCKSProxy" value="socksproxy.example.com"/>
<data id="SOCKSVersion" value="4 | 5"/>
<data id="AutoConfigURL" value="URL_TO_AUTOCONFIG"/>
<data id="Passthrough" value="<local>"/>
<data id="AutoLogin" value="true | false"/>
<data id="UseProxyForDNS" value="true | false"/>
<dict>
<key>Proxy</key>
<dict>
<key>Mode</key>
<string>none | system | manual | autoDetect | autoConfig</string>
<key>Locked</key>
<true> | </false>
<key>HTTPProxy</key>
<string>https://httpproxy.example.com</string>
<key>UseHTTPProxyForAllProtocols</key>
<true> | </false>
<key>SSLProxy</key>
<string>https://sslproxy.example.com</string>
<key>FTPProxy</key>
<string>https://ftpproxy.example.com</string>
<key>SOCKSProxy</key>
<string>https://socksproxy.example.com</string>
<key>SOCKSVersion</key>
<string>4 | 5</string>
<key>Passthrough</key>
<string><local>></string>
<key>AutoConfigURL</key>
<string>URL_TO_AUTOCONFIG</string>
<key>AutoLogin</key>
<true> | </false>
<key>UseProxyForDNS</key>
<true> | </false>
</dict>
</dict>
{
"policies": {
"Proxy": {
"Mode": "none" | "system" | "manual" | "autoDetect" | "autoConfig",
"Locked": true | false,
"HTTPProxy": "hostname",
"UseHTTPProxyForAllProtocols": true | false,
"SSLProxy": "hostname",
"FTPProxy": "hostname",
"SOCKSProxy": "hostname",
"SOCKSVersion": 4 | 5,
"Passthrough": "<local>",
"AutoConfigURL": "URL_TO_AUTOCONFIG",
"AutoLogin": true | false,
"UseProxyForDNS": true | false
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
Proxy Proxy_Mode Proxy_Locked Proxy_AutoConfigURL Proxy_FTPProxy Proxy_HTTPProxy Proxy_SSLProxy Proxy_SOCKSProxy Proxy_SOCKSVersion Proxy_UseHTTPProxyForAllProtocols Proxy_Passthrough Proxy_UseProxyForDNS Proxy_AutoLogin |
68.0 |
Set the the list of requested locales for the application in order of preference. It will cause the corresponding language pack to become active.
Note: For Thunderbird 68, this can now be a string so that you can specify an empty value.
CCK2 Equivalent: N/A
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\RequestedLocales\1 = "de"
Software\Policies\Mozilla\Thunderbird\RequestedLocales\2 = "en-US"
or
Software\Policies\Mozilla\Thunderbird\RequestedLocales = "de,en-US"
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/RequestedLocalesString
Value (string):
<enabled/>
<data id="Preferences_String" value="de,en-US"/>
<dict>
<key>RequestedLocales</key>
<array>
<string>de</string>
<string>en-US</string>
</array>
</dict>
or
<dict>
<key>RequestedLocales</key>
<string>de,en-US</string>
</dict>
{
"policies": {
"RequestedLocales": ["de", "en-US"]
}
}
or
{
"policies": {
"RequestedLocales": "de,en-US"
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
RequestedLocales |
68.0 |
Add new search engines. Although there are only five engines available in the ADMX template, there is no limit. To add more in the ADMX template, you can duplicate the XML.
This policy is only available on the ESR. Name
and URLTemplate
are required.
Name
is the name of the search engine.
URLTemplate
is the search URL with {searchTerms} to substitute for the search term.
Method
is either GET or POST
IconURL
is a URL for the icon to use.
Alias
is a keyword to use for the engine.
Description
is a description of the search engine.
PostData
is the POST data as name value pairs separated by &.
SuggestURLTemplate
is a search suggestions URL with {searchTerms} to substitute for the search term.
Encoding
is the query charset for the engine. It defaults to UTF-8.
CCK2 Equivalent: searchplugins
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\SearchEngines\Add\1\Name = "Example1"
Software\Policies\Mozilla\Thunderbird\SearchEngines\Add\1\URLTemplate = "https://www.example.org/q={searchTerms}"
Software\Policies\Mozilla\Thunderbird\SearchEngines\Add\1\Method = "GET" | "POST"
Software\Policies\Mozilla\Thunderbird\SearchEngines\Add\1\IconURL = "https://www.example.org/favicon.ico"
Software\Policies\Mozilla\Thunderbird\SearchEngines\Add\1\Alias = "example"
Software\Policies\Mozilla\Thunderbird\SearchEngines\Add\1\Description = "Example Description"
Software\Policies\Mozilla\Thunderbird\SearchEngines\Add\1\SuggestURLTemplate = "https://www.example.org/suggestions/q={searchTerms}"
Software\Policies\Mozilla\Thunderbird\SearchEngines\Add\1\PostData = "name=value&q={searchTerms}"
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Search/SearchEngines_1
Value (string):
<enabled/>
<data id="SearchEngine_Name" value="Example1"/>
<data id="SearchEngine_URLTemplate" value="https://www.example.org/q={searchTerms"/>
<data id="SearchEngine_Method" value="GET | POST"/>
<data id="SearchEngine_IconURL" value="https://www.example.org/favicon.ico"/>
<data id="SearchEngine_Alias" value="example"/>
<data id="SearchEngine_Description" value="Example Description"/>
<data id="SearchEngine_SuggestURLTemplate" value="https://www.example.org/suggestions/q={searchTerms}"/>
<data id="SearchEngine_PostData" value="name=value&q={searchTerms}"/>
<dict>
<key>SearchEngines</key>
<dict>
<key>Add</key>
<array>
<dict>
<key>Name</key>
<string>Example1</string>
<key>URLTemplate</key>
<string>https://www.example.org/q={searchTerms}</string>
<key>Method</key>
<string>GET | POST </string>
<key>IconURL</key>
<string>https://www.example.org/favicon.ico</string>
<key>Alias</key>
<string>example</string>
<key>Description</key>
<string>Example Description</string>
<key>SuggestURLTemplate</key>
<string>https://www.example.org/suggestions/q={searchTerms}</string>
<key>PostData</key>
<string>name=value&q={searchTerms}</string>
</dict>
<array>
</dict>
</dict>
{
"policies": {
"SearchEngines": {
"Add": [
{
"Name": "Example1",
"URLTemplate": "https://www.example.org/q={searchTerms}",
"Method": "GET" | "POST",
"IconURL": "https://www.example.org/favicon.ico",
"Alias": "example",
"Description": "Description",
"PostData": "name=value&q={searchTerms}",
"SuggestURLTemplate": "https://www.example.org/suggestions/q={searchTerms}"
}
]
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
SearchEngines_Add |
108.0 |
Set the default search engine. This policy is only available on the ESR.
CCK2 Equivalent: defaultSearchEngine
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\SearchEngines\Default = NAME_OF_SEARCH_ENGINE
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Search/SearchEngines_Default
Value (string):
<enabled/>
<data id="SearchEngines_Default" value="NAME_OF_SEARCH_ENGINE"/>
<dict>
<key>SearchEngines</key>
<dict>
<key>Default</key>
<string>NAME_OF_SEARCH_ENGINE</string>
</dict>
</dict>
{
"policies": {
"SearchEngines": {
"Default": "NAME_OF_SEARCH_ENGINE"
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
SearchEngines_Default |
108.0 |
Prevent installing search engines from webpages.
CCK2 Equivalent: disableSearchEngineInstall
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\SearchEngines\PreventInstalls = 0x1 | 0x0
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Search/SearchEngines_PreventInstalls
Value (string):
<enabled/> or <disabled/>
<dict>
<key>SearchEngines</key>
<dict>
<key>PreventInstalls</key>
<true/> | <false/>
</dict>
</dict>
{
"policies": {
"SearchEngines": {
"PreventInstalls": true | false
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
SearchEngines_PreventInstalls |
108.0 |
Hide built-in search engines. This policy is only available on the ESR.
CCK2 Equivalent: removeDefaultSearchEngines
(removed all built-in engines)
Preferences Affected: N/A
Software\Policies\Mozilla\Thunderbird\SearchEngines\Remove\1 = NAME_OF_SEARCH_ENGINE
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird~Search/SearchEngines_Remove
Value (string):
<enabled/>
<data id="SearchEngines_Remove" value="1NAME_OF_SEARCH_ENGINE"/>
<dict>
<key>SearchEngines</key>
<dict>
<key>Remove</key>
<array>
<string>NAME_OF_SEARCH_ENGINE</string>
</array>
</dict>
</dict>
{
"policies": {
"SearchEngines": {
"Remove": ["NAME_OF_SEARCH_ENGINE"]
}
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
SearchEngines_Remove |
108.0 |
Set and lock the maximum version of TLS. (Thunderbird defaults to a maximum of TLS 1.3.)
CCK2 Equivalent: N/A
Preferences Affected: security.tls.version.max
Software\Policies\Mozilla\Thunderbird\SSLVersionMax = "tls1" | "tls1.1" | "tls1.2" | "tls1.3"
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/SSLVersionMax
Value (string):
<enabled/>
<data id="SSLVersion" value="tls1 | tls1.2 | tls1.3"/>
<dict>
<key>SSLVersionMax</key>
<string>tls1 | tls1.1 | tls1.2 | tls1.3</string>
</dict>
{
"policies": {
"SSLVersionMax": "tls1" | "tls1.1" | "tls1.2" | "tls1.3"
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
SSLVersionMax |
68.0 |
Set and lock the minimum version of TLS. (Thunderbird defaults to a minimum of TLS 1.2.)
CCK2 Equivalent: N/A
Preferences Affected: security.tls.version.min
Software\Policies\Mozilla\Thunderbird\SSLVersionMin = "tls1" | "tls1.1" | "tls1.2" | "tls1.3"
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Thunderbird~Policy~thunderbird/SSLVersionMin
Value (string):
<enabled/>
<data id="SSLVersion" value="tls1 | tls1.2 | tls1.3"/>
<dict>
<key>SSLVersionMin</key>
<string>tls1 | tls1.1 | tls1.2 | tls1.3</string>
</dict>
{
"policies": {
"SSLVersionMin": "tls1" | "tls1.1" | "tls1.2" | "tls1.3"
}
}
Policy/Property Name | supported since | deprecated after |
---|---|---|
SSLVersionMin |
68.0 |