Downloads:
4,142,365
Downloads of v 139.0.2:
32,359
Last Update:
11 Jun 2025
Package Maintainer(s):
Software Author(s):
- Mozilla
Tags:
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Thunderbird (Release)
- 1
- 2
- 3
139.0.2 | Updated: 11 Jun 2025
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
4,142,365
Downloads of v 139.0.2:
32,359
Maintainer(s):
Software Author(s):
- Mozilla
Thunderbird (Release) 139.0.2
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Mozilla. The inclusion of Mozilla trademark(s), if any, upon this webpage is solely to identify Mozilla goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Thunderbird (Release), run the following command from the command line or from PowerShell:
To upgrade Thunderbird (Release), run the following command from the command line or from PowerShell:
To uninstall Thunderbird (Release), run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download thunderbird --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade thunderbird -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade thunderbird -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install thunderbird
win_chocolatey:
name: thunderbird
version: '139.0.2'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'thunderbird' do
action :install
source 'INTERNAL REPO URL'
version '139.0.2'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller thunderbird
{
Name = "thunderbird"
Version = "139.0.2"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'thunderbird':
ensure => '139.0.2',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 11 Jun 2025.
Thunderbird is a free email application that's easy to set up and customize and it's loaded with great features!
Package Parameters
/l:LOCALE
- Install given Firefox locale. See the official page for a complete list of available locales./UseMozillaFallback
Makes a request to mozilla.org and reads the supported Language Culture code from the website./NoStop
- Do not stop Thunderbird before running the install if it is running or attempt to restart it after install.
Command-line options for installer configuration. See the official page for details and defaults.
/InstallDir:PATH
/NoTaskbarShortcut
Do not create Taskbar Shortcut/NoDesktopShortcut
Do not create Desktop Shortcut/NoStartMenuShortcut
Do not create Start Menu Shortcut/NoMaintenanceService
Do not install Maintenance Service/RemoveDistributionDir
Remove Distribution directory on installation/update. (This is the default behavior of the Thunderbird Installer, but not for this Chocolatey Package)/NoAutoUpdate
Sets a policies.json file to not update Thunderbird and does not install the Maintenance Service
Examples
choco install thunderbird --params "/l=en-GB"
choco install thunderbird --params "/NoTaskbarShortcut /NoDesktopShortcut /NoAutoUpdate"
choco install thunderbird --params "/UseMozillaFallback"
choco install thunderbird --params "/NoStop"
Notes
- Looking for Thunderbird Extended Support Release? Install the thunderbirdesr package.
- If locale package parameter is not present, this package installs Thunderbird in the first language which matches this list:
- If Thunderbird is already installed: the same language as the already installed Thunderbird.
- The Windows system language where the Thunderbird package gets installed.
- Language Culture code specified on Mozilla website (only when
/UseMozillaFallback
is specified). - If Thunderbird does not support the system language, it will fallback to
en-US
.
- If the package is out of date please check Version History for the latest submitted version. If you have a question, please ask it in Chocolatey Community Package Discussions or raise an issue on the Chocolatey Community Packages Repository if you have problems with the package. Disqus comments will generally not be responded to.
$ErrorActionPreference = 'Stop';
$packageName = 'thunderbird'
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName 'Mozilla Thunderbird*'
if ($key.Count -eq 1) {
$key | ForEach-Object {
$packageArgs = @{
packageName = $packageName
fileType = 'exe'
silentArgs = '-ms'
validExitCodes= @(0)
file = "$($_.UninstallString.Trim('"'))"
}
Uninstall-ChocolateyPackage @packageArgs
Write-Warning "Auto Uninstaller may detect Mozilla Maintenance Service."
Write-Warning "This should not be uninstalled if any other Mozilla product is installed."
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | ForEach-Object {Write-Warning "- $($_.DisplayName)"}
}
function GetUninstallPath() {
param(
[Parameter(Mandatory = $true)]
[string]$product
)
$regUninstallDir = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\'
$regUninstallDirWow64 = 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\'
$uninstallPaths = $(Get-ChildItem $regUninstallDir).Name
if (Test-Path $regUninstallDirWow64) {
$uninstallPaths += $(Get-ChildItem $regUninstallDirWow64).Name
}
$uninstallPath = $uninstallPaths -match "$product [\d\.]+ \([^\s]+ [a-zA-Z\-]+\)" | Select-Object -First 1
return $uninstallPath
}
function GetLocale {
param(
[Parameter(Mandatory = $true)]
[string]$localeFile,
[Parameter(Mandatory = $true)]
[string]$product
)
#$availableLocales = Get-WebContent $localeUrl 2>$null
$availableLocales = Get-Content $localeFile | ForEach-Object { $_ -split '\|' | Select-Object -First 1 } | Select-Object -Unique
Write-Debug "$($availableLocales.Count) locales are stored.`n$availableLocales"
$PackageParameters = Get-PackageParameters
if ($PackageParameters['l']) {
$localeFromPackageParameters = $PackageParameters['l']
Write-Verbose "User chooses '$localeFromPackageParameters' as a locale..."
$localeFromPackageParametersTwoLetter = $localeFromPackageParameters -split '\-' | Select-Object -First 1
Write-Verbose "With fallback to '$localeFromPackageParametersTwoLetter' as locale..."
}
$uninstallPath = GetUninstallPath -product $product
$alreadyInstalledLocale = $uninstallPath -replace '.+\s([a-zA-Z\-]+)\)', '$1'
Write-Verbose "Installed locale is: '$alreadyInstalledLocale'..."
$systemLocalizeAndCountry = (Get-UICulture).Name
$systemLocaleThreeLetter = (Get-UICulture).ThreeLetterWindowsLanguageName
$systemLocaleTwoLetter = (Get-UICulture).TwoLetterISOLanguageName
# Never change the fallback locale here, this is the absolute
# value we always expect to fall back to when nothing else is
# found.
$fallbackLocale = $mozillaFallback = 'en-US'
if ($PackageParameters['UseMozillaFallback']) {
Write-Verbose "System locale is: '$systemLocalizeAndCountry'..."
# We need to use web content instead of web headers here, due to
# web header helper does not allow custom headers.
$urlParts = @( 'htt', 'mozilla' )
$Response = Get-WebContent -url "$($urlParts[0])ps://www.$($urlParts[1]).org/" -Options @{ Headers = @{ 'Accept-Language' = $systemLocalizeAndCountry } } -ErrorAction Ignore 2>$null
# The lang attribute on the html element will be the closest
# supported language when comparing to the system locale.
# As such we use that as an additional fallback when possible.
if ($Response -match 'lang="(?<locale>[^"]+)"') {
$mozillaFallback = $Matches['locale']
Write-Verbose "Mozilla fallback locale is: '$mozillaFallback'..."
}
else {
Write-Warning 'No fallback found using the Mozilla website.'
}
}
Write-Verbose "Absolute Fallback locale is: '$fallbackLocale'..."
$locales = $localeFromPackageParameters, $localeFromPackageParametersTwoLetter, `
$alreadyInstalledLocale, $systemLocalizeAndCountry, $systemLocaleThreeLetter, `
$systemLocaleTwoLetter, $mozillaFallback, $fallbackLocale
foreach ($locale in $locales) {
Write-Debug "Testing locale $locale of whether we have the information or not"
$localeMatch = $availableLocales | Where-Object { $_ -eq $locale } | Select-Object -First 1
if ($localeMatch -and $locale -ne $null) {
Write-Host "Using locale '$locale'..."
break
}
}
return $locale
}
function AlreadyInstalled() {
param(
[Parameter(Mandatory = $true)]
[string]$product,
[Parameter(Mandatory = $true)]
[string]$version
)
$uninstallEntry = $(
"HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$product $version*"
)
$uninstallEntryWow64 = $(
"HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$product $version*"
)
if ((Test-Path $uninstallEntry) -or (Test-Path $uninstallEntryWow64)) {
return $true
}
return $false
}
function Get-32bitOnlyInstalled() {
param(
[Parameter(Mandatory = $true)]
[string]$product
)
$systemIs64bit = Get-OSArchitectureWidth 64
if (-Not $systemIs64bit) {
return $false
}
$registryPaths = @(
'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall'
'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall'
)
$installedVersions = Get-ChildItem $registryPaths | Where-Object { $_.Name -match "$product [\d\.]+ \(x(64|86)" }
if (
$installedVersions -match 'x86' `
-and $installedVersions -notmatch 'x64' `
-and $systemIs64bit
) {
return $true
}
}
function GetChecksums() {
param(
[Parameter(Mandatory = $true)]
[string]$language,
[Parameter(Mandatory = $true)]
$checksumFile
)
Write-Debug "Loading checksums from: $checksumFile"
$checksumContent = Get-Content $checksumFile
$checksum32 = ($checksumContent -match "$language\|32") -split '\|' | Select-Object -Last 1
$checksum64 = ($checksumContent -match "$language\|64") -split '\|' | Select-Object -Last 1
return @{
'Win32' = $checksum32
'Win64' = $checksum64
}
}
af|32|c1de619b39def70218a81b06a52d460e955fff3b06f1df041cd9a4823d23b24956aa39d4cef2c6932e3d7de462dd79cbf655616e863175adeb478dcab3cf43a5
ar|32|529005bb7ee30fce86f9204b51e36301ca26e3d739a270e1fecaab68daae3ff473fe49b34500c5b5823c107c7e282cfdfbb5162ab5454bfabd758f64015820a8
ast|32|f9b8808e2958e2e96347faa1f65ab3f71fae311afdb8f740cd45d9944a6134f3fbf8858d62fea0c7f79ec9bf89f235f13896954fbbf9416e25db8f6a004bee13
be|32|1863a400fe5920a1f9d94b556100de7030b026d20733bafe0488f04adb2f100f58e351c3c341079f262eaae7c1592c158166fec3f75d5807eed0ecaa5e707cf1
bg|32|9455cb3ed27d8bd52292ef6fde0ff2418586783b9a6c22902d5448b29a9f7ad71c161ef8910470111cac1e88a36fd29b8c869bdc0fba05597eb67091aa9a70dc
br|32|909c1e1d1a14eadc6e569e1268f7dd175a3c4614b0efa555267e88219c41ab95ba854f7b070ed97af201871c68387676a31894155d9758313f3e920a78f19bb4
ca|32|1e5636882e590b85cf66879abc8120addbdeff953f0e2ae4f7db8305ab189554f635942aab2e3ac46ae25a8de26984967c0e460127a94e6dbccd90a64838bac4
cak|32|00e14499c20a8d6fcc864c08c80c84ffbcfec36808f3d3f882b484925fff741465713817f6875f1d0e3f7d1c614e4e078168356f72c529ccd0bac5b4f910d6a1
cs|32|657a64639db9a9c84f3ed00a6acfa59f2af40dffb823403ab4f62c092205589ab891e7ef55105805792d8f9a17b76186c68ad512d2fc9f1240553ab74284b549
cy|32|19918b2567ae256f8b60073ba3107c9fb4401971d108586709cd0465757968137fdf366d3283c3aad19f684e79fd87896591495155b62517ee8f32686dde53dd
da|32|17b524a77452a35bd7d8be6f9daeeca17f2d0ee3dd1314c47b7babede766999c27ed95799911da93b20778149df56f967e7dc45a088e6635b428f990709e75a9
de|32|57e7d1a3af018ae1c950863d95068c18a9ccee4a1f2b920e80a8f227ffa5cb0be2e6a2383f051ad24d0d9f312416df7e6fe664f191ad56bb543cbda1315783a1
dsb|32|f207abbc1735c7dd7f1d505f8a1a45b82b2c670468bca7d88dd5e4bd94dd336ce2399f0f06f88071bd294d56c516404526523e97d5548781f271adffa386fc33
el|32|53ab70ac3faceca92be706f6caf67500756c64ce5a18af80c0010051e3cfcbea81d9176722a5db1bbbcbce95ab0ae4ac2b019a8026cc22159794a4ff56324d7f
en-CA|32|dd998ab170d646be3898eac7701b926819093b050d4cf71f8d232def0e2a73c7cb7a9f91fea697a7fe2e82f07ecb93c3bad47fd73330e121d75e3cf2de24c4f7
en-GB|32|8fc2d2bbc4ddffd75724c7297ef0e09fd175cf0cadb7f93c082d55966fe7c669a41f7fc5ba106de1f95404457a1614483bc9881d4693e10073d45c1597e29448
en-US|32|d1ad31620f1efbe4fa45de6daaa017342ee13b0651a47f88ce9e5ae73cfd282e553ec0edc42378df9054fb325cf840ee8b9abcf92f945fc0c0801ddac08f3292
es-AR|32|71b07d198b98e70a7e9d9c8913670c65d8890a6ef93f1db717483b074b20f7c08589f6293b634e208bfc7872a730e4dbb69250aeab2455570df950973f686713
es-ES|32|49ab0b2e28c5bdd1749d0cada5ccbf8e6a6047087a9823bfa7ebc4d98292f44c640c06b6e0baf9e3b1c62a795e6b52089b2dc59322590d59bb890bc594279fbc
es-MX|32|37bc7fc4ab7bb527521be0dc465b84b5532af799947565bc12b8a35e0299316eab5dc366b928a5e263b04608b4489cc65d68c6f228b863bee755b323839ea9fe
et|32|2ffd63e9a20e7905fc1b0af9383b341e35cc946f648b5b2a47ad05d71dc2434d9e2700fc232acab366e302c67bf9edf93495677a9e293a93cd97848a305e365d
eu|32|c0e3a19de135c3b961db5c44f0f5a1d88b446feaadb6258cae2bd547c82ff248f9c763a2b7a055ee09cef4937234b53b3c9901426a3ca169e7e724d512d2f465
fi|32|c633405b3589f9319caefea5d88877b2fd62a771bc8077bcd1afa41a8c9b13dfdab84b8bce9b34bb5412ca0c9ea2db53bb840764dcee6034be07197d9175df27
fr|32|5836c6e08612d92814f4cfad34ce25853c984b78232a112727e1b44474f74ab1f166fa333e20e120a294f7289ac7854245411add83605aa94c72573f8a290739
fy-NL|32|1207ea67c9165506c84351bb84f66a386b30b539a95d5d9884dd1a1a79f8f6df637b296553a00cd129db98aab249172c9b94e64034c2d0abb46f7a51af4f7f00
ga-IE|32|771a1dae9f427194bc5232e6e709b807efe6945a4d3b384c9e91f05a5ac00e62046c63aef9afd11bca1ba2749a832133621ad73aadf1c6ccbfa52c82fb469d31
gd|32|fea7f56a73e819880aaa316b10302f0db4c55be89bd8bb20510393fd52c6765384c8656fb2c7bab59c19aedd2060f6ae60bfe7709f52311c2760b39abb4ab8b3
gl|32|1cda8f8b689db8d864d3442f8a85b65fd7a18078ef0b9c7e2c950e2e35b65d59a9f6038233a97b260f6109dad99c0736fda4c548586d7b3df024b7d7823b9c83
he|32|6ccce3d68fd245f60c4ed86c16452d65d6adb63c8cce03849e22c466a85bbe85a9c0a9db6e75f207e3a9a5914299d99f2f99a3a4aabb2c27319a01b6d181da97
hr|32|1cf302a4045a7c23c053536442deb5479c7ae8370c94095273f18f7b1386006caf71078241e126c8485b855eeae13d28ee6af8ba3b6c3bef3fb0946ef555c653
hsb|32|782727a047e2077f9734fcf96c741e49e27147c30162a312ecee00e6a2bfeef06abdb18c26a540d5134dd6db12d616ee1b9de4c40f36e0c2f431717e9134bcc7
hu|32|134cd6bd77191c42a1aadce732e12c8d3fcb1442d950fd0855e0ad4a504effd4020d8936bb02d6073e4b8e6f95f65d8162279e86aa85a7680bd12619591b56d8
hy-AM|32|60c1e4df853f1d269930edfb7d23839f55317c3ae804dea3889500cd499903d1b536b2b155519b3ed7c9104c42724ccd6cdd54bfa84a054246c29eeda414180c
id|32|a5c64fc3da0e9a7021e44947940fa648db6f2d45ff2008f575fcfdfe2fd5cd074c1bc422b88a33d743cbe7b36b40c3203f1ad27e39793a7eca9a4748a4a28b3a
is|32|ea61e9716d56727ca143f5407f08ef9a4d545349050d16558c20d5cc47b056a5cc4d22ed1aec43b3d09d25f0784d508e1c7caf7b266db594a79131252eb0305a
it|32|d9469602aa2b49e23182398022f3e4b41a957459f6ef41b5efa2e6f7ce71670bbd11c717c2fb8135760c57eaed57c8eeed93b7d3694100c42389216bffd722a5
ja|32|cfab71ad8f41d15cddf3ec1878bab883c892fc4c7ce8e517e14a486a304ea4b8f2ba9f1272a310770316a009cf47d97576c340f9f8267286015eb151387844f1
ka|32|21bba2c9c34043b0e05e04e99479933fe481eac3516ee74b56c5af8ba5b43da8effdfa71124c7b2c21f4b518496ab6fa5a1ed643df8cae9922dd523c86923502
kab|32|b67d588d8d770e30732fe25c4bc4ef73b5dc38a07b67144a3620aaf757bbeddcd4af413e43dca6bac242a1fd59c6739d79ed6b538fb96e7b58d292e4ff723dc0
kk|32|596ff2c7c8a99a0f560642514d4fd1c4b454b3e935152528da8e356528d2d72b98a4f12b37189e7c4058cea564dc68af18318eb3cad82b128a65e1bfccca99e6
ko|32|bc58923901d5dc112674330f806cb4c74fa267482e05a65d33e585af252e11356c2ce21647858a3815ef02705533d7bf19176fb788020caa5c85a5e716337b8b
lt|32|d2a007ffdde2c8bb570550a062420608f927fd93b51095718170c9ac892f4198e688ab9343d24765f6d6a3206ccf575d87c11ca8bbc096149fe1a0346f7c77c9
lv|32|c87e11729d74a31bb816abd7b59e56ade11687d9298f97968d592aa8128baa0ae8c8ecfb28e41ecce7774c942ab8faf85fa1ea9a3b5b557c50caeabbbe3dfc0b
ms|32|b691b0d572599c431b9c866d60825606e052b817e6990ac021d55f284101f4b7dd18923f154e89afbf0c563210dc21c14f598f8f434998808438606a4ff0628f
nb-NO|32|3e3392eb0fb560b3c5c8f6f35053fd79c4b974ac085edf919ecab0b322b800ca0c0b9f793c7ed9e077973aa4fb677eb2ab26bf8104a72d289110b9a7e20ea34d
nl|32|5d4b25da8dd9d0d83401f3efcb5ab4e936cc334be948cb5eab3dbc188b042623d2c3bc4a1377f065cf3b2c363d39ba82d5045c2b86e519462dac320cca67c2ee
nn-NO|32|fe0257dcef07fbd0927274d9d6ec97db938ba50d9a6733ca11233c0f952395d4f3b5dcf16f5b46694090e173ca6b0691f24f3dc10dd57c0bd458dbe683e50881
pa-IN|32|2637d8c25fa02408181a798da7ceaed955dfa3832a369a1ced3a207351c61073c84345d8e7b39713fa955b304e0d5a9ea0e5ab6149b373169122e770a0630c95
pl|32|5baf5b7ae3067c4c7b1a994a9bf4def87567b5ef97ad343f628e616aea0d86b3e183f40c033ff700c3e12000907155fab5d0286f5038c44f4a3186802adb6d99
pt-BR|32|b91e7a4c50a9d06b23c5d0a13a237605c08227baff129d41b1de263086f99e7dabba63f0cc17a92e5df295af72717718cc81494dfbb3367a6d2443f6cf898098
pt-PT|32|86eb2ab9312fcbafbdbe0ebd8c216c06b11e2c7b2e34367dbc9ca72304e3820acc272a3096e136f7bebc745d70284fdb0e85d6af6f6e150c9a872f932ff485bb
rm|32|a3704fcb3e46adc43cebc5ea9c0f539949b361aed6677d3f347debdc1d53d0afc6cf9b97821377c4cfaade03a88d62e726ddde910ef9b0a6b10232f72fe436af
ro|32|ba3b5548740488f9df62b512957a1131e62055724dd4bdd90b7f15764d4d87640bdb4108bfa6be3ac0f9561fb93f9a6188207ac40ce334e427b72399813493b0
ru|32|ca165b84c70a96a276d44deeae6cd32e28ff41f4f4b930db6316e85cb2361d7e248c787b9c320d1edfe4fb26dc048151893fb0e733d3457b85efec3df0915b9c
sk|32|3e377f89de99350a0b34f78ef0cbf16b20ac98711d10a706c5b7fba94f6e3c7f394d84a07f0d5cd62ed46646fc3f5c0bb5aa2d0c645604ed69bf2edadd9c93bf
sl|32|179be2ce8283b1d2473c92431f232edcb736a5f874e0e575a61882bcb0b9e34b3d59aa578d04c6bf01bf7d11276afcf2c39942fc22d1d73f366285a070ba13c8
sq|32|02474541c2c9986ed73cf42a49d05f2a888babd80d40ba9140f6165d2f666b24563f9f6a3a871c13d6d45d248bda31f5ead2ddadb8d640519460e905e7fd101b
sr|32|7d4265ea1ea319bb22e84574bb6a6a4142c0dbd7fc69c19d18e9fe1caaf39e9cd923e55c33ee31150e1f907c9bba39e7ade85fb716f7e472368fbec677aaef2e
sv-SE|32|0df4553eb7a7a0206a95a7afe60f4235d3055c1f2ad33406f0ace47a5b803a334d27951697f678223a4f287d6bfa0ca263a266bcc6cac1d09fa97f47cb9d70f4
th|32|00caf3216f4238a1b989d0f37206b08ea1624b4ff90d2d03df298aa5ff70133f24ae7169ef6b18a78e97a3e51118bf87c50f98e31263821abc436bc25239ffce
tr|32|ea4fae5a96ebc0233d17271bd10901d85e86ae257f506a661c2aaf71ee60be06e0a0c4d71167eb1fd0fc8e529e676d77db88edd62e1e55a1935c74c0a062ff59
uk|32|31efd5b9cdd6c061a99cbc82a77d2a08ed9d4b1dd0752c70c4559232244783940e73f37f6c24a00bbbfd84cba145d155af7cd61700db333f8f521d2f37904483
uz|32|0bee67c974098d9abb51d150146531d8e6536710f3563fc8e4ed68543d117a6ac4b967d0bb82e9f56f2fa4f184dffd1cc496fbdc3cc5993a91ca9eda395504dc
vi|32|8b4138e31be311166e7ca2154a0698872d573f548853497c0d2ccb78b17ca2cfdc9aa7b254ae950aeeaccd51aa65aaa6f4570016af6945bca74e316c4ff1a1ec
zh-CN|32|93d6f6de3fbb82519473350b7d7960f1787df21b8ff6123e8ed2e654baafabaf1415729d47053b0284eb22bc9efa747dae96796c334e039518e45b6b85a3e552
zh-TW|32|6a154fffb816ce22af318b5a90b4c33f3738209a2d87230b004dfdc6644ff27c01415d2101aea05958951e92bc026c4c73ee8be7c93b3a912ce526347b6696fb
af|64|989ca949159e0a455099e961adbfe5529e0f585b235842a52b09766875052582e7e3036ea309b995c254fb154388bc69ec618aa45d78ae86e500b5e1af61191e
ar|64|12a373244816a0d4964a46ec9d943805d20b6ba23954d363ad6cc12b18b3921b374ba5ddc8096f5239c7c7bc5e77007af83249fb9ecefe5a3a8303f8a509cb9b
ast|64|9224916136cb9cdc156cd91331c57fc06856b78af46fe3f25d05041ee48e9f9cf816f8260cae8eb60168327ee39d23ad8e43d650d2d5bb1330050df35323ed4a
be|64|200e1403ca9f250943bdc3d5a27e61086a610475613f51903144547a8451f13f5a48fe7e0e4790a3ec6d21292701d5ddfe64d6c287d44f7103d0ff4ad164f2c9
bg|64|100d6e3c6a1319935bbd9a52fdfef833ea1275cd21a8c6438efa59dd8041277f41b602530e91106c498aff5c9638f82821f83274a67e05c691ff99ea880b7db3
br|64|0ebeab36dcf6c3ca268f34f5597c39d4cbe370e2222752d847ea510ec7ccfa9c5878cfe0099c8a7416a0758e79fb7916fb8c17285be3d09bf96cdd8213f509d1
ca|64|8d76137298dccbe23f1b96c7c2cb9eca0757e0bce842591524698474c63696ce30032ad21e715d76892e6698ff36ef589c449259f98a391b3739be7d065f3e8b
cak|64|16f035267daedc722eef968e5820203750b2da62951ee7e50319f4f6b07e85cb52e489d963b91b043b08f6eb7d0a4e58403a46343b7c56d00c10e37f2c6348e3
cs|64|f7693429ab9e506e98d4aa5c1c8c82cdf6e412eddb712662f2a6c1760d250ef82b3cdf8a697477a3aeaa23d7acc5ddf7a0f349f448dd22b0274d8e9dd8288de7
cy|64|5f0ff889c6608b9f961553b6a23234be520450e494c9fa835e7baef373c9931bee48adad1a07ffe201105f3f32846a853ccd5b39d9e268f4bfd396c8ae029bc3
da|64|27a02846eb0aef5ac810675fd770b4f076f284dd0e68fb148691210437e0dbc35cc4d463f7776a5d86d1c4a524e987abe2bb6fcef6fccf5fbc2cc1d2ec611c1b
de|64|536d5dec53c80dc3799ce460e1a16f941b1e3ecf621a37fcdfc8db48017ac4ff22a7400753cb07390e4dbd6e9881e16a52881c8775e464278b2665618d96bf6c
dsb|64|68b65003d2ec41d2c0a409ad52da4af6552e6b90b514aeb5bc79238d56c6c45929c57cbca443ed1084bf8c202b2efa16718adc2bf867c600d84f0282ed65faf6
el|64|98ac6da3b0ee2bfae0dbc6abd1da064d8825b99e88210081a66972061275ce5bd278e46c30e5bf480ab88012eac32ddeac706851dba2ceb3fa33cde2384b4281
en-CA|64|af2e68ee5757be82a6385dc7b9328872b3d534ca3ed3479b52308f2ea46c85e52cb476111112b4e47a988503dc5d6650b638edf77c2ef64400e73ec1f9697e85
en-GB|64|a29d27b4cf67a01d88697e005a010f3fe1f5aacd17837e28a25c87586e0842adfb21735075f4b44a25cb71b49e62a6a16163a8369982c2f36d49564c49c64538
en-US|64|264ccc4db60a94372dd921a5a1875a4bacfe0cd47cddd554163b3841b6e8dd02f2bdb0cdf778d439231898d35ae4313fa6202fab6c275dc6bdaca014d41ee6d4
es-AR|64|4fe012ef4e9a858394dd1347ce0c3a8bbd82c25c5595ead417807c6a6e656f235bbe62b1d5fba6ece19c5a38b1c5919936f3ac452eb1717a954e97c1a75c962d
es-ES|64|70897e56f1ade395e9da67456ffafd02c72068e2e1702543188b09291a9f88fbae738cbd79d887d07ca7f46f902364dcbf91424de055e0dc8ac2867a95953f3a
es-MX|64|de74f42b6ed2c7a9d9f1ff62d143e4f70fa884e93e893b946adea2b95f12f4764a5752b005862c9ae27ecfcd08f272da806ac154b0aafa6554872d289419ff4a
et|64|a28a8af6b037d50b74fc25aa8c5df19508645b6c17e5bcd79218844fbe8a7e2975ba8257adf10fc10b53cadc307d375b5c4f1d64b340868375ea342bcd00d749
eu|64|52ae2a027d51199f08a2747091bd77b8d019014d0fc31d507898e6eee6ee151325674a2fd540a057175f8304dcdad79b844a91367fa9ec99ccb8671b96ed0479
fi|64|d667cb38f1724d6875fd05ca3925a8cc3d12fec5b70eda5b88aa667cd62bee002050fcbeb847dfebc4b98f55bae55f2434e2b62c5326a2a2e3a75413bd6cb0c1
fr|64|b32a80e6d5269ba0be557b378e2ce94422eab46ce54f213e28bc85ff0f74de44f91b17abcf00ee4477ddb15dda0245b51997d8e6248e5bd13f1fb03bd788afbd
fy-NL|64|d8cb530ca923dec092ef06b236adf42ec6dac25eb1fb64ddb7215b48b928dc51ca3fb538fa1f32e5b126812bd8108bc70ac3d8bf21dac13f02460bd04120e8a8
ga-IE|64|02dc11385dccd6ad4c78d9dab5ffc8c6e771a566d95d47b8a26e77964d5566e5c8325da81ab8b87d7f46d57a2a532765fdca6d59ceea8f6a4f3c4fd0f3e92e0b
gd|64|a5970646a67ac48cd08778ceef217417a9de1b66123e8b2a7a15a02b459af2a1ef79fa0082a04d704be442232550852e11f69b1d845479a14d3e4a11504a714f
gl|64|bf4b2dad81c7a575bf2813f80a3aea9f0fa8855f547240004af4c1bd23239498b6c33bd5ae591619ced0a16327cd03cc4765a065b62580f03963dcf0d12b1cab
he|64|c4628c4df9599e89a394932cc74128275f46aad35a1b10b227a7128797f9b0f56c6dc5986a550c57f4d88e1c554266eed32272f61885015560a2816a0bbddfcf
hr|64|3f5dd95b18b4b6a7b264e0d2bb54dc760c83b506bc867c06444f36e60cd73a72ff39171a941ee9559e35b72d005833d41b6cd35bc75698af69d91ebbc26200fd
hsb|64|f5ab1ff98ae1882d9b3b05b90b6711a7272b218d777fd726e18bbf5811c1d0b9d5343dc5c761f8214fe2f3b878800a7ca6120f1e2e73555881ae461891ac51a1
hu|64|f6f68625196b1cbc46283af7e099c70ce0a620e8cc1b67ddaf1de8265dca59d999964a1c8a25347f0ca04ce5a76d66c015148b9b4c9ddd362f96c325383e55a4
hy-AM|64|1fd461fd53289f92fd1be1d8b84c7f5c6d3fb14bd71f8f9b3ada5ea7c449f26279b45ce044f8a770745bd79386743fe23c26cda9506b5aa3648b5e292db26567
id|64|563fbbb2601edb1dc839c5a9db0d964a53695b4761081c83b922757dac4f01b6c861758e271e9c36783dda1e6d7d5ab12561c1563261c794e8e20914ee79f510
is|64|b794cc44f38ea9de8567f4740a78d146e47af46ce367717e0cb92a82ed475f64529594c395b36d1a03e48fcd1418b57e4e2ef6fa60feb40192d233cb8d720e32
it|64|972d635a38ab4e7f5edc69eb09db20250c886ca6b97fac94021f1df76f4d8b315242f2a2a649fba532b467a41eae604b84a29a2f8a8aa7a7d5bf58d50921fb0c
ja|64|d9ba782e3c80e7b221ae42e5dae2de1ac7660019f1f2e552f99192d42fd03993be41cfad266ae9ac14542a51b2c6d2169292428634695a1d1b2103d27333b63b
ka|64|ff120f30a7381281c6807fd725fccf8c9db3475b4b18cb04a87a3f89564753f06f7c65ec32529d5475c3eef7ef4fbd233f2f2fa36bf47054e3fca3a9e4922f2b
kab|64|7cb36b7aebc11fb3bb5acefc9e736228265888e7efe4c9107fdba0a27b14d6e8ec1ef96ec0f01bf56c7ca681fe882540b5f3db3876e4495539b87d84ffcc2e2a
kk|64|9f1e720aaab84d5051721f44fcc2e1714c7ae8090d63fa4982319c57dea7afe64016c67ae6ff3114d88d01b307d69229587e8ff9ced0c7ec05164ce7b959bf4e
ko|64|67f0738b7fc8d54c4aa576d28538f46f5331962e8d723bc5955949266201b68dea0a8aa53c0d2e31da5e2dd4e4843e49ee5e0a6e47a1a7e4eaf8e07b6a9fcac9
lt|64|0cf6cbee12f37c4f45e1a66107d0bd21d7eb8f783d174f5cf1719d2d4809363865b52d39174bf9815e6ae3c80ad58f0b1e0c20a4a208cba3da9d44cf4ac1d504
lv|64|45dfc81a570589eda8140e54a547906d284df94395686837f6e613b97ea3323baadbfd6c7662fc2a9b956faa9f4cda596d6c744cff2709c2534b80b646eed638
ms|64|1802f6d8c78d247025c100f8088a93e527942207ba7eda9a411bdf522f03703d60c1efe04fb66c1399dcd207f4daa8421b0d8310e9f0c4f6908838f9cc3d0e07
nb-NO|64|3ed1fb15d21142f1829cb14c63ad01daa5fb268b162a12a9c39b97bcea5b648df0d4f74cfb53521269e3a88739595286881c8a08879a0be341a34e1f5f06d5e6
nl|64|0aa1821744f3c2350211d904c8e271da1ac9e630687806e6433cc4ccba51e19526c9568b7d59eacaa987ca10ac639c9bd3aef0bb61aecef128ae75af5c3b6fde
nn-NO|64|799f6c430618a57d98641a350c6d7a53dd545606ffb7f50402027f06ed6ed9a11331090c62f971c345953964ac10e4bdf613c176fd6c45e462cc4c1287afe244
pa-IN|64|35461b8581b3e6a074c1ed5cc2c7009f10dea2d4bfb3076d108839917cc5fe8703dfdbc78a394c4548a3d6d73864a05bfde8d6ef74ee5d94fc9dca9d49609dc6
pl|64|20e4f8f611363e03ecda7e2d370847263bcb1f202ff75ef3e6b69bc300c0a9722655183c57aadf22adab1547830b8113299228b0aa5cb0b94e261d68d66e20e3
pt-BR|64|20d99567244ca4927dfc63eba605c66a342970e950eccca2d9aa8cafd994ce20da27f8d33ad36d6cfd6b3ce4e6c211cc7d420bf593e192b9f21986edfe09c169
pt-PT|64|a31ee95ff32e0752010412f48b4a360846580655ff8655bce34ce18d1101fa76867e4e471e2f814c71f47ab2d1314c18004ba3562bbc48a3f43258bea74a171d
rm|64|e77d52c23a66f6b6cba172c96d8d56a6147cf0efc1835512949e7038d627aa43b6bf515e20c8a3b088361e83e8e9ddbcac9fc60791b9efa1fc2d95e5e3e0e466
ro|64|191b75d88094d82f5fdae5242b48c56b5094223b937a0cc1bf752b7b363f41618a56b7fb2e64b06b3cb1b28f3fcf4c99260818de85ccb98da47d034ac199f9f6
ru|64|ec3c059d210332166ac14c95c59adf78d468a9f7e5ef92758ef794c7b231ba5dcd4979a650fdc857464f301e285cd34597fd31a21419b1854cb15b376de0af18
sk|64|4274496b51bc55b4fdd4308b50d375409b49b80d034e7cb48c11736840ab49bdfb1b55bbba66207b9077e8d7eefa89ccc295a6482b3cb36957e2ebac8acce882
sl|64|1d44ff3c5ff7c9bcd837d255d9a107a025a42b72837e9685423be8ad4ebf5b8b89b28db69f7b7766b01a246c1075bb83a5d1b23a48a97cbc440c75e2aa88675d
sq|64|aeaa242a2949dab16cafd8eff5d6904046f93301ce77b66d09df9aa1eded63aff72477addd672c3d155054f17879439fff0200c91b4a8732289e318fe81f63ee
sr|64|525f5f0ae17ed0d56442579537aba9b62bdacfe50feb9e67afc5d375459225042af5c458c3d6b45960e5f18d0fbf344bfe79e6b9cff82e4c5e18baf30baab4b5
sv-SE|64|ac6a8506596369f6f7ea961d97d4b8a98ebf3e0a2edbe8acad73f536ecadd8f50eaaa0833c2064e097adfe768e1dda2ad328ad031f9c5e06b3d0fd603b18e139
th|64|59f70263eb6afcdac4915676d0af8f20843adaf7d48b10a384a6d0d0125e3ad5ac07781e969aaeb4ce3a397a837183b80c2be57bef7cc2df2239a4c2d0e8377f
tr|64|dd2faea9fd6c0e17048c3db676f8352296dbfad4a18fb350c1efe3fb22e5aedd371087b53028c0a4a6d1e363a6aa5edd07a332f08bd921d5871a169d0996a14e
uk|64|6c5fa0634c1e14e8fe1767ce962f0f4588c2f7a63dd99b6aa62a3a6c5576682cdb97727b3559a23f952523d6dd0001ac178601d82731f35ec7f1ffd0dc9e0128
uz|64|6ffaffc5ed4722edde9216e8412eb626f2700509f863061dada86fb3683933f7bfeec18f97c510f39f3cdf78f29051a9c0622658f01dce89639f24275e60a7cb
vi|64|c172ccc87e7cf87623ae31a46078d82af052274489139cc05562b481bdf6a03d91a32c3b5e0a87d770612ad9c04373c579755ff037afdc034f9ca69ca5a76c37
zh-CN|64|016a494857e3fa6ee5e6f902c5875f1e638272225b53d869ab2898f1a7d098eeed0286e62143c0d6d3c9362c5d139d62fb364a8def2a60f72bcc79f8f3a0adb9
zh-TW|64|6c5c0536eb122685df9b95f2ad07f4634df71075a0527ab733cea5a3da9bfb9438376585c1e250b74daf36677436d4fcf0d8e579dbe36f236e6b5293703d279f
Log in or click on link to see number of positives.
- thunderbird.139.0.2.nupkg (6fc712dcf4a8) - ## / 63
- Thunderbird Setup 139.0.2.exe (1ea16bcde4e4) - ## / 70
- Thunderbird Setup 139.0.2.exe (39b1b2eded08) - ## / 52
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Thunderbird (Release) 139.0.2 | 32359 | Wednesday, June 11, 2025 | Approved | |
Thunderbird (Release) 139.0.1 | 13614 | Tuesday, June 10, 2025 | Approved | |
Mozilla Thunderbird 128.7.1 | 83748 | Wednesday, February 19, 2025 | Approved | |
Mozilla Thunderbird 128.7.0 | 34771 | Wednesday, February 5, 2025 | Approved | |
Mozilla Thunderbird 128.6.0 | 46257 | Thursday, January 9, 2025 | Approved | |
Mozilla Thunderbird 128.5.2 | 41757 | Wednesday, December 11, 2024 | Approved | |
Mozilla Thunderbird 128.5.1 | 23895 | Tuesday, December 3, 2024 | Approved | |
Mozilla Thunderbird 128.5.0 | 29578 | Wednesday, November 27, 2024 | Approved | |
Mozilla Thunderbird 128.4.4 | 26255 | Wednesday, November 20, 2024 | Approved | |
Mozilla Thunderbird 128.4.3 | 26559 | Wednesday, November 13, 2024 | Approved | |
Mozilla Thunderbird 128.4.2 | 25350 | Thursday, November 7, 2024 | Approved | |
Mozilla Thunderbird 128.4.1 | 16089 | Tuesday, November 5, 2024 | Approved | |
Mozilla Thunderbird 128.4.0 | 18707 | Wednesday, October 30, 2024 | Approved | |
Mozilla Thunderbird 128.3.3 | 24471 | Friday, October 25, 2024 | Approved | |
Mozilla Thunderbird 115.12.2 | 74344 | Sunday, June 23, 2024 | Approved | |
Mozilla Thunderbird 115.12.1 | 13996 | Wednesday, June 19, 2024 | Approved | |
Mozilla Thunderbird 115.11.1 | 30088 | Wednesday, May 29, 2024 | Approved | |
Mozilla Thunderbird 115.11.0 | 24326 | Thursday, May 16, 2024 | Approved | |
Mozilla Thunderbird 115.10.2 | 25293 | Wednesday, May 1, 2024 | Approved | |
Mozilla Thunderbird 115.10.1 | 23234 | Friday, April 19, 2024 | Approved | |
Mozilla Thunderbird 115.10.0 | 11926 | Wednesday, April 17, 2024 | Approved | |
Mozilla Thunderbird 115.9.0 | 34123 | Tuesday, March 19, 2024 | Approved | |
Mozilla Thunderbird 115.8.1 | 27855 | Tuesday, March 5, 2024 | Approved | |
Mozilla Thunderbird 115.8.0 | 27157 | Wednesday, February 21, 2024 | Approved | |
Mozilla Thunderbird 115.7.0 | 36261 | Wednesday, January 24, 2024 | Approved | |
Mozilla Thunderbird 115.6.1 | 27412 | Tuesday, January 9, 2024 | Approved | |
Mozilla Thunderbird 115.6.0 | 29878 | Tuesday, December 19, 2023 | Approved | |
Mozilla Thunderbird 115.5.2 | 22401 | Tuesday, December 12, 2023 | Approved | |
Mozilla Thunderbird 115.5.1 | 27070 | Tuesday, November 28, 2023 | Approved | |
Mozilla Thunderbird 115.5.0 | 18743 | Wednesday, November 22, 2023 | Approved | |
Mozilla Thunderbird 115.4.3 | 20216 | Wednesday, November 15, 2023 | Approved | |
Mozilla Thunderbird 115.4.2 | 22791 | Wednesday, November 8, 2023 | Approved | |
Mozilla Thunderbird 115.4.1 | 26054 | Thursday, October 26, 2023 | Approved | |
Mozilla Thunderbird 115.3.3 | 20837 | Wednesday, October 18, 2023 | Approved | |
Mozilla Thunderbird 115.3.2 | 22172 | Wednesday, October 11, 2023 | Approved | |
Mozilla Thunderbird 115.3.1 | 24368 | Friday, September 29, 2023 | Approved | |
Mozilla Thunderbird 115.3.0 | 12387 | Wednesday, September 27, 2023 | Approved | |
Mozilla Thunderbird 115.2.3 | 19574 | Thursday, September 21, 2023 | Approved | |
Mozilla Thunderbird 115.2.2 | 21744 | Wednesday, September 13, 2023 | Approved | |
Mozilla Thunderbird 115.2.1 | 6776 | Tuesday, September 12, 2023 | Approved | |
Mozilla Thunderbird 115.2.0 | 25457 | Wednesday, August 30, 2023 | Approved | |
Mozilla Thunderbird 115.1.1 | 26011 | Wednesday, August 16, 2023 | Approved | |
Mozilla Thunderbird 115.1.0 | 24945 | Wednesday, August 2, 2023 | Approved | |
Mozilla Thunderbird 115.0.1 | 27170 | Thursday, July 20, 2023 | Approved | |
Mozilla Thunderbird 115.0.0 | 23803 | Wednesday, July 12, 2023 | Approved | |
Mozilla Thunderbird 102.13.0 | 16040 | Saturday, July 8, 2023 | Approved | |
Mozilla Thunderbird 102.12.0 | 35831 | Thursday, June 8, 2023 | Approved | |
Mozilla Thunderbird 102.11.2 | 25022 | Saturday, May 27, 2023 | Approved | |
Mozilla Thunderbird 102.11.1 | 11259 | Thursday, May 25, 2023 | Approved | |
Mozilla Thunderbird 102.11.0 | 27789 | Wednesday, May 10, 2023 | Approved | |
Mozilla Thunderbird 102.10.1 | 29032 | Tuesday, April 25, 2023 | Approved | |
Mozilla Thunderbird 102.10.0 | 27134 | Tuesday, April 11, 2023 | Approved | |
Mozilla Thunderbird 102.9.1 | 26582 | Wednesday, March 29, 2023 | Approved | |
Mozilla Thunderbird 102.9.0 | 25516 | Thursday, March 16, 2023 | Approved | |
Mozilla Thunderbird 102.8.0 | 35730 | Thursday, February 16, 2023 | Approved | |
Mozilla Thunderbird 102.7.2 | 21452 | Wednesday, February 8, 2023 | Approved | |
Mozilla Thunderbird 102.7.1 | 19953 | Wednesday, February 1, 2023 | Approved | |
Mozilla Thunderbird 102.7.0 | 24124 | Friday, January 20, 2023 | Approved | |
Mozilla Thunderbird 102.6.1 | 36229 | Wednesday, December 21, 2022 | Approved | |
Mozilla Thunderbird 102.6.0 | 20269 | Wednesday, December 14, 2022 | Approved | |
Mozilla Thunderbird 102.5.1 | 25185 | Thursday, December 1, 2022 | Approved | |
Mozilla Thunderbird 102.5.0 | 26052 | Wednesday, November 16, 2022 | Approved | |
Mozilla Thunderbird 102.4.2 | 24297 | Friday, November 4, 2022 | Approved | |
Mozilla Thunderbird 102.4.1 | 20822 | Thursday, October 27, 2022 | Approved | |
Mozilla Thunderbird 102.4.0 | 16187 | Thursday, October 20, 2022 | Approved | |
Mozilla Thunderbird 102.3.3 | 20337 | Wednesday, October 12, 2022 | Approved | |
Mozilla Thunderbird 102.3.2 | 18412 | Friday, October 7, 2022 | Approved | |
Mozilla Thunderbird 102.3.1 | 18925 | Thursday, September 29, 2022 | Approved | |
Mozilla Thunderbird 102.3.0 | 19839 | Wednesday, September 21, 2022 | Approved | |
Mozilla Thunderbird 102.2.2 | 23216 | Thursday, September 8, 2022 | Approved | |
Mozilla Thunderbird 102.2.1 | 18022 | Thursday, September 1, 2022 | Approved | |
Mozilla Thunderbird 102.2.0 | 19397 | Tuesday, August 23, 2022 | Approved | |
Mozilla Thunderbird 102.1.2 | 22262 | Tuesday, August 9, 2022 | Approved | |
Mozilla Thunderbird 102.1.1 | 11502 | Saturday, August 6, 2022 | Approved | |
Mozilla Thunderbird 102.1.0 | 17270 | Friday, July 29, 2022 | Approved | |
Mozilla Thunderbird 102.0.3 | 18750 | Wednesday, July 20, 2022 | Approved | |
Mozilla Thunderbird 102.0.2 | 19810 | Tuesday, July 12, 2022 | Approved | |
Mozilla Thunderbird 102.0.1 | 14146 | Thursday, July 7, 2022 | Approved | |
Mozilla Thunderbird 102.0 | 20737 | Wednesday, June 29, 2022 | Approved | |
Mozilla Thunderbird 91.10.0 | 31624 | Wednesday, June 1, 2022 | Approved | |
Mozilla Thunderbird 91.9.1 | 21204 | Friday, May 20, 2022 | Approved | |
Mozilla Thunderbird 91.9.0 | 26235 | Wednesday, May 4, 2022 | Approved | |
Mozilla Thunderbird 91.8.1 | 24125 | Tuesday, April 19, 2022 | Approved | |
Mozilla Thunderbird 91.8.0 | 22343 | Wednesday, April 6, 2022 | Approved | |
Mozilla Thunderbird 91.7.0 | 30246 | Thursday, March 10, 2022 | Approved | |
Mozilla Thunderbird 91.6.2 | 14335 | Sunday, March 6, 2022 | Approved | |
Mozilla Thunderbird 91.6.1 | 23287 | Friday, February 18, 2022 | Approved | |
Mozilla Thunderbird 91.6.0 | 19955 | Wednesday, February 9, 2022 | Approved | |
Mozilla Thunderbird 91.5.1 | 23639 | Tuesday, January 25, 2022 | Approved | |
Mozilla Thunderbird 91.5.0 | 22128 | Wednesday, January 12, 2022 | Approved | |
Mozilla Thunderbird 91.4.1 | 25609 | Monday, December 20, 2021 | Approved | |
Mozilla Thunderbird 91.4.0.20211214 | 16828 | Tuesday, December 14, 2021 | Approved | |
Mozilla Thunderbird 91.4.0 | 18924 | Tuesday, December 7, 2021 | Approved | |
Mozilla Thunderbird 91.3.2 | 27049 | Friday, November 19, 2021 | Approved | |
Mozilla Thunderbird 91.3.1 | 14307 | Tuesday, November 16, 2021 | Approved | |
Mozilla Thunderbird 91.3.0 | 22559 | Wednesday, November 3, 2021 | Approved | |
Mozilla Thunderbird 91.2.1 | 22546 | Friday, October 22, 2021 | Approved | |
Mozilla Thunderbird 91.2.0.20211014 | 17861 | Thursday, October 14, 2021 | Approved | |
Mozilla Thunderbird 91.2.0 | 19194 | Friday, October 8, 2021 | Approved | |
Mozilla Thunderbird 91.1.2 | 22943 | Tuesday, September 28, 2021 | Approved | |
Mozilla Thunderbird 91.1.1 | 21723 | Friday, September 17, 2021 | Approved | |
Mozilla Thunderbird 91.1.0 | 20864 | Tuesday, September 7, 2021 | Approved | |
Mozilla Thunderbird 91.0.3 | 20706 | Thursday, August 26, 2021 | Approved | |
Mozilla Thunderbird 91.0.2 | 10505 | Monday, August 23, 2021 | Approved | |
Mozilla Thunderbird 91.0.1 | 14219 | Tuesday, August 17, 2021 | Approved | |
Mozilla Thunderbird 78.12.0 | 28815 | Wednesday, July 14, 2021 | Approved | |
Mozilla Thunderbird 78.11.0 | 31939 | Thursday, June 3, 2021 | Approved | |
Mozilla Thunderbird 78.10.2 | 21099 | Tuesday, May 18, 2021 | Approved | |
Mozilla Thunderbird 78.10.1 | 19286 | Wednesday, May 5, 2021 | Approved | |
Mozilla Thunderbird 78.10.0 | 21024 | Monday, April 19, 2021 | Approved | |
Mozilla Thunderbird 78.9.1 | 18550 | Friday, April 9, 2021 | Approved | |
Mozilla Thunderbird 78.9.0 | 19300 | Wednesday, March 24, 2021 | Approved | |
Mozilla Thunderbird 78.8.1 | 21177 | Tuesday, March 9, 2021 | Approved | |
Mozilla Thunderbird 78.8.0 | 18909 | Wednesday, February 24, 2021 | Approved | |
Mozilla Thunderbird 78.7.1 | 22991 | Saturday, February 6, 2021 | Approved | |
Mozilla Thunderbird 78.7.0 | 17657 | Wednesday, January 27, 2021 | Approved | |
Mozilla Thunderbird 78.6.1 | 20351 | Tuesday, January 12, 2021 | Approved | |
Mozilla Thunderbird 78.6.0 | 20545 | Monday, December 21, 2020 | Approved | |
Mozilla Thunderbird 78.5.1 | 20608 | Friday, December 4, 2020 | Approved | |
Mozilla Thunderbird 78.5.0 | 18748 | Thursday, November 19, 2020 | Approved | |
Mozilla Thunderbird 78.4.3 | 14941 | Wednesday, November 11, 2020 | Approved | |
Mozilla Thunderbird 78.4.2 | 10904 | Tuesday, November 10, 2020 | Approved | |
Mozilla Thunderbird 78.4.1 | 9301 | Friday, November 6, 2020 | Approved | |
Mozilla Thunderbird 78.4.0 | 20240 | Thursday, October 22, 2020 | Approved | |
Mozilla Thunderbird 78.3.3 | 11758 | Saturday, October 17, 2020 | Approved | |
Mozilla Thunderbird 78.3.2 | 17196 | Wednesday, October 7, 2020 | Approved | |
Mozilla Thunderbird 78.3.1 | 16225 | Saturday, September 26, 2020 | Approved | |
Mozilla Thunderbird 78.3.0 | 5322 | Friday, September 25, 2020 | Approved | |
Mozilla Thunderbird 78.2.2 | 18606 | Friday, September 11, 2020 | Approved | |
Mozilla Thunderbird 78.2.1 | 16627 | Sunday, August 30, 2020 | Approved | |
Mozilla Thunderbird 78.2.0 | 9603 | Wednesday, August 26, 2020 | Approved | |
Mozilla Thunderbird 78.1.1 | 18453 | Saturday, August 8, 2020 | Approved | |
Mozilla Thunderbird 78.1.0 | 10160 | Monday, August 3, 2020 | Approved | |
Mozilla Thunderbird 78.0.1 | 14087 | Wednesday, July 22, 2020 | Approved | |
Mozilla Thunderbird 78.0 | 10454 | Friday, July 17, 2020 | Approved | |
Mozilla Thunderbird 68.10.0 | 17263 | Wednesday, July 1, 2020 | Approved | |
Mozilla Thunderbird 68.9.0 | 22090 | Thursday, June 4, 2020 | Approved | |
Mozilla Thunderbird 68.8.1 | 14137 | Monday, May 25, 2020 | Approved | |
Mozilla Thunderbird 68.8.0 | 18459 | Tuesday, May 5, 2020 | Approved | |
Mozilla Thunderbird 68.7.0 | 21936 | Thursday, April 9, 2020 | Approved | |
Mozilla Thunderbird 68.6.0 | 19715 | Friday, March 13, 2020 | Approved | |
Mozilla Thunderbird 68.5.0 | 28063 | Wednesday, February 12, 2020 | Approved | |
Mozilla Thunderbird 68.4.2 | 21263 | Saturday, January 25, 2020 | Approved | |
Mozilla Thunderbird 68.4.1 | 18655 | Friday, January 10, 2020 | Approved | |
Mozilla Thunderbird 68.3.1 | 18209 | Tuesday, December 24, 2019 | Approved | |
Mozilla Thunderbird 68.3.0 | 13396 | Wednesday, December 4, 2019 | Approved | |
Mozilla Thunderbird 68.2.2 | 35024 | Thursday, November 7, 2019 | Approved | |
Mozilla Thunderbird 68.2.1 | 16948 | Friday, November 1, 2019 | Approved | |
Mozilla Thunderbird 68.2.0 | 12507 | Wednesday, October 23, 2019 | Approved | |
Mozilla Thunderbird 68.1.2 | 17571 | Thursday, October 10, 2019 | Approved | |
Mozilla Thunderbird 68.1.1 | 17739 | Wednesday, September 25, 2019 | Approved | |
Mozilla Thunderbird 68.1.0 | 17597 | Wednesday, September 11, 2019 | Approved | |
Mozilla Thunderbird 68.0 | 26024 | Wednesday, August 28, 2019 | Approved | |
Mozilla Thunderbird 60.8.0 | 34740 | Wednesday, July 10, 2019 | Approved | |
Mozilla Thunderbird 60.7.2 | 18439 | Friday, June 21, 2019 | Approved | |
Mozilla Thunderbird 60.7.1 | 11163 | Thursday, June 13, 2019 | Approved | |
Mozilla Thunderbird 60.7.0 | 20067 | Wednesday, May 22, 2019 | Approved | |
Mozilla Thunderbird 60.6.1 | 45082 | Monday, March 25, 2019 | Approved | |
Mozilla Thunderbird 60.6.0 | 8146 | Wednesday, March 20, 2019 | Approved | |
Mozilla Thunderbird 60.5.3 | 11793 | Tuesday, March 5, 2019 | Approved | |
Mozilla Thunderbird 60.5.2 | 8123 | Tuesday, February 26, 2019 | Approved | |
Mozilla Thunderbird 60.5.1.20190217 | 9171 | Sunday, February 17, 2019 | Approved | |
Mozilla Thunderbird 60.5.1 | 4699 | Thursday, February 14, 2019 | Approved | |
Mozilla Thunderbird 60.5.0 | 10697 | Wednesday, January 30, 2019 | Approved | |
Mozilla Thunderbird 60.4.0 | 15351 | Friday, December 21, 2018 | Approved | |
Mozilla Thunderbird 60.3.3 | 9199 | Tuesday, December 11, 2018 | Approved | |
Mozilla Thunderbird 60.3.2 | 9296 | Friday, November 30, 2018 | Approved | |
Mozilla Thunderbird 60.3.1 | 11099 | Thursday, November 15, 2018 | Approved | |
Mozilla Thunderbird 60.3.0 | 10595 | Thursday, November 1, 2018 | Approved | |
Mozilla Thunderbird 60.2.1 | 16949 | Wednesday, October 3, 2018 | Approved | |
Mozilla Thunderbird 60.0 | 24484 | Monday, August 6, 2018 | Approved | |
Mozilla Thunderbird 52.9.1 | 15888 | Wednesday, July 11, 2018 | Approved | |
Mozilla Thunderbird 52.9.0 | 7498 | Wednesday, July 4, 2018 | Approved | |
Mozilla Thunderbird 52.8.0 | 18847 | Wednesday, May 23, 2018 | Approved | |
Mozilla Thunderbird 52.7.0 | 20394 | Saturday, March 24, 2018 | Approved | |
Mozilla Thunderbird 52.6.0 | 23774 | Friday, January 26, 2018 | Approved | |
Mozilla Thunderbird 52.5.2 | 16359 | Friday, December 22, 2017 | Approved | |
Mozilla Thunderbird 52.5.0 | 14549 | Friday, November 24, 2017 | Approved | |
Mozilla Thunderbird 52.4.0 | 19541 | Monday, October 9, 2017 | Approved | |
Mozilla Thunderbird 52.3.0 | 17586 | Thursday, August 17, 2017 | Approved | |
Mozilla Thunderbird 52.2.1 | 12746 | Saturday, June 24, 2017 | Approved | |
Mozilla Thunderbird 52.2.0 | 6049 | Thursday, June 15, 2017 | Approved | |
Mozilla Thunderbird 52.1.1 | 9469 | Tuesday, May 16, 2017 | Approved | |
Mozilla Thunderbird 52.1.0 | 6428 | Monday, May 1, 2017 | Approved | |
Mozilla Thunderbird 52.0.1 | 7270 | Saturday, April 15, 2017 | Approved | |
Mozilla Thunderbird 52.0 | 4028 | Monday, April 10, 2017 | Approved | |
Mozilla Thunderbird 45.8.0 | 8858 | Tuesday, March 7, 2017 | Approved | |
Mozilla Thunderbird 45.7.1 | 8775 | Wednesday, February 8, 2017 | Approved | |
Mozilla Thunderbird 45.7.0 | 5666 | Thursday, January 26, 2017 | Approved | |
Mozilla Thunderbird 45.6.0 | 7083 | Saturday, December 31, 2016 | Approved | |
Mozilla Thunderbird 45.5.1 | 11832 | Thursday, December 1, 2016 | Approved | |
Mozilla Thunderbird 45.5.0.20161130 | 2179 | Wednesday, November 30, 2016 | Approved | |
Mozilla Thunderbird 45.5.0.20161128 | 2367 | Monday, November 28, 2016 | Approved | |
Mozilla Thunderbird 45.5.0 | 4863 | Monday, November 21, 2016 | Approved | |
Mozilla Thunderbird 45.4.0.20161024 | 8539 | Monday, October 24, 2016 | Approved | |
Mozilla Thunderbird 45.4.0.20161023 | 2267 | Sunday, October 23, 2016 | Approved | |
Mozilla Thunderbird 45.4.0 | 12353 | Tuesday, October 4, 2016 | Approved | |
Mozilla Thunderbird 45.3.0 | 34679 | Wednesday, August 31, 2016 | Approved | |
Mozilla Thunderbird 45.2.0 | 52897 | Sunday, July 10, 2016 | Approved | |
Mozilla Thunderbird 45.1.1 | 612 | Monday, May 30, 2016 | Approved | |
Mozilla Thunderbird 45.1.0 | 504 | Wednesday, May 11, 2016 | Approved | |
Mozilla Thunderbird 45.0 | 471 | Sunday, May 8, 2016 | Approved | |
Mozilla Thunderbird 38.7.0 | 7831 | Wednesday, March 16, 2016 | Approved | |
Mozilla Thunderbird 38.6.0 | 5917 | Monday, February 15, 2016 | Approved | |
Mozilla Thunderbird 38.5.1 | 6132 | Thursday, January 7, 2016 | Approved | |
Mozilla Thunderbird 38.5.0 | 2826 | Wednesday, December 23, 2015 | Approved | |
Mozilla Thunderbird 38.4.0 | 5579 | Wednesday, November 25, 2015 | Approved | |
Mozilla Thunderbird 38.3.0 | 5726 | Wednesday, September 30, 2015 | Approved | |
Mozilla Thunderbird 38.2.0 | 5581 | Friday, August 14, 2015 | Approved | |
Mozilla Thunderbird 38.1.0 | 4022 | Friday, July 10, 2015 | Approved | |
Mozilla Thunderbird 38.0.1 | 3339 | Thursday, June 11, 2015 | Approved | |
Mozilla Thunderbird 31.7.0 | 1921 | Tuesday, June 2, 2015 | Approved | |
Mozilla Thunderbird 31.6.0.20150405 | 3694 | Sunday, April 5, 2015 | Approved | |
Mozilla Thunderbird 31.6.0 | 835 | Friday, April 3, 2015 | Approved | |
Mozilla Thunderbird 31.5.0 | 2932 | Tuesday, February 24, 2015 | Approved | |
Mozilla Thunderbird 31.4.0 | 2596 | Tuesday, January 13, 2015 | Approved | |
Mozilla Thunderbird 31.3.0 | 2468 | Tuesday, December 2, 2014 | Approved | |
Mozilla Thunderbird 31.2.0 | 2473 | Tuesday, October 14, 2014 | Approved | |
Mozilla Thunderbird 31.1.2 | 1500 | Wednesday, September 24, 2014 | Approved | |
Mozilla Thunderbird 31.1.1 | 1103 | Wednesday, September 10, 2014 | Approved | |
Mozilla Thunderbird 31.1.0 | 1026 | Tuesday, September 2, 2014 | Approved | |
Mozilla Thunderbird 31.0 | 1603 | Tuesday, July 22, 2014 | Approved | |
Mozilla Thunderbird 24.6.0 | 1546 | Tuesday, June 10, 2014 | Approved | |
Mozilla Thunderbird 24.5.0 | 1598 | Tuesday, April 29, 2014 | Approved | |
Mozilla Thunderbird 24.4.0 | 1548 | Tuesday, March 18, 2014 | Approved | |
Mozilla Thunderbird 24.3.0 | 1138 | Tuesday, February 4, 2014 | Approved | |
Mozilla Thunderbird 24.2.0.20140131 | 552 | Friday, January 31, 2014 | Approved | |
Mozilla Thunderbird 24.2.0 | 911 | Tuesday, December 10, 2013 | Approved | |
Mozilla Thunderbird 24.1.1 | 665 | Tuesday, November 19, 2013 | Approved | |
Mozilla Thunderbird 24.1.0 | 683 | Tuesday, October 29, 2013 | Approved | |
Mozilla Thunderbird 24.0.1 | 666 | Friday, October 11, 2013 | Approved | |
Mozilla Thunderbird 24.0 | 638 | Tuesday, September 17, 2013 | Approved | |
Mozilla Thunderbird 17.0.8 | 732 | Tuesday, August 6, 2013 | Approved | |
Mozilla Thunderbird 17.0.7 | 653 | Wednesday, June 26, 2013 | Approved | |
Mozilla Thunderbird 17.0.6 | 630 | Wednesday, May 15, 2013 | Approved | |
Mozilla Thunderbird 17.0.5 | 607 | Wednesday, May 15, 2013 | Approved | |
Mozilla Thunderbird 16.0.1.2 | 739 | Monday, October 29, 2012 | Approved | |
Mozilla Thunderbird 16.0.1.1 | 490 | Monday, October 29, 2012 | Approved | |
Mozilla Thunderbird 16.0.1 | 499 | Monday, October 29, 2012 | Approved |
Mozilla. All rights reserved.
-
- chocolatey-core.extension (≥ 1.3.3)
Ground Rules:
- This discussion is only about Thunderbird (Release) and the Thunderbird (Release) package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Thunderbird (Release), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.