Downloads:
3,915,015
Downloads of v 128.5.1:
23,854
Last Update:
03 Dec 2024
Package Maintainer(s):
Software Author(s):
- Mozilla
Tags:
mozilla thunderbird email admin foss cross-platform- 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
Mozilla Thunderbird
This is not the latest version of Mozilla Thunderbird available.
- 1
- 2
- 3
128.5.1 | Updated: 03 Dec 2024
- 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:
3,915,015
Downloads of v 128.5.1:
23,854
Maintainer(s):
Software Author(s):
- Mozilla
Mozilla Thunderbird 128.5.1
This is not the latest version of Mozilla Thunderbird available.
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 Mozilla Thunderbird, run the following command from the command line or from PowerShell:
To upgrade Mozilla Thunderbird, run the following command from the command line or from PowerShell:
To uninstall Mozilla Thunderbird, 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 --version=128.5.1 --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'" --version="'128.5.1'" [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'" --version="'128.5.1'"
$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: '128.5.1'
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 '128.5.1'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller thunderbird
{
Name = "thunderbird"
Version = "128.5.1"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'thunderbird':
ensure => '128.5.1',
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 by moderator TheCakeIsNaOH on 07 Dec 2024.
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
- 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
.
$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|91d078d82776bfa6f43715252a19718642de665eb44207777b2be877e53e6920b4c5c8bbb3b2b3362ba1fe10a58097154787b3e26da48b44c101c1337c24d97b
ar|32|cea4bc84f0e07649b56e238256be23bd5567912c8123c94ef2d723e831fac8ce03871f22c6d91f913cf000f1d0f2595468280e0da2d0f05e08892de3878ecf8b
ast|32|1185774b6c18809d69670e4733c41b3e704f671551c58ee483e05804cfd424597f460d1e6a880c218a5c99c0c8657fa1073c89b497ba82a29b9e6da19e97e31e
be|32|db99f30c4ec0535f4b482cfdf88ac31702248b941b8b197583a3ccfd4f4903afcbc038579ffe247574cba38331d48e39e12d551a61606d674e78af60c234ae45
bg|32|9b3f4a34d21a66ce3da0a9de6d255e1164420f62df3ac07fb2dd97a6d626af329a0149d678db367d7d5c634a7ab3961abe7c2dd5b14432f86efdfa09b3afdcd4
br|32|74010fed993b390425ca01195c15c6cfdfe7b9f78ff834bc94fdcc20598ce03a87d5f465a5f606fd65496d9890a774074e9bded948eb32eef8d37e41c3095319
ca|32|f7dbe9a70432ea068a2fc16084846eeed2fb6fa57914b148e0365f66d6de3540b552c543fb27586db54e6246369667fb6adddd806de3467a1f4b3f5af21cdb5c
cak|32|dbe8c05cc3581fb7788750e784fddc8e987ac9e3f1bb097bce00beb5a00127d2d36ef4291be8fefc0a8ed46870522076a17ada28e9cc98ce694906fffb21db72
cs|32|a6c790607736236df2cf20c7525aabc48cb6968d1801392959a4dc3aa90faa14c77b2808200bbee847496a6b9667c86bcb4736f1cdad07c173ea292cb3678bd4
cy|32|8132f4c99969339d742af34bcc2155bbb1b16841c4d68d88f1ed41b29e69a4f99fb0f428c2aa4709fa2a82fd20c3953213313186d89324c61fa8d39a7d707ade
da|32|d3cbfbc55281471c00e13e5dbdb650437e9b45fb1b4a304add74d4e57db83137d5064765ef77e066778cdf406b4d5fcbbc99025bb61562c2c3152792ce976936
de|32|406e118dadf9c5436d60e4a045f0cfd009da96b98a388e4ae6d64568f534e122807bb5756fa80679d3d609b2e41e7e62f49a5e69cafb5601263cae6f5438cb37
dsb|32|2e124e6f71cd4ee3e13c29ff42d3615d0b0ee95757a6b053b02e922ab32cf5c2ee0c139b377219d9ff228888c647374a4c4a7ba8fc6650fc8e5be705411a488f
el|32|d2b35b72806228c1aed503533394fb648c2f56a2677baf43d1e42b51777353b1808f4f3af54c0769e60dd1e32998b820f9dd0be9b2de360e0c6d227a91f22ef5
en-CA|32|27570e9a18d50ec4d87b71d2df1c8ce89ae91c3be5b18d3e4105aa43eb1816e49d55464e31ebf888a4883601133f526766aaf3ccf593aa3591b4fbdd68c960d1
en-GB|32|62202f15a5181f99a3216f398f93f5b252169e8c9fc370b82ec857f5df0667a1f3ada160f144276659b8340c916c743eef24f2d6a99452e18406de11b1c21d74
en-US|32|0d3c426338cc3dc0b87143786944801e730fa33aabbee5c089749f5425e21d10f12e2194e3bc4196de97afa78a431132c1c386aeb92adf6b4598b0cd1aabc22d
es-AR|32|41adce45f1dffd4e481faf1a9dcb1555295eaf987793c07a79857bab42fc83dcf074972666ab6907f3a6065c6ee46d3743fff2e4b8fc139f6443c15b884b352b
es-ES|32|28c69aafd0fa9917f49a0a491817ed33fe2734d7d9a560b985ec4716186d499cf6522a2c2afdc96983ef52ae21957cb07526ddaccb4e636a84b605f7647bda1b
es-MX|32|e07a42aaaaf1b08263cdf8d92f14a07dcc21d8f903c8ac7100f9d61d95fba4d95ac70f0d7d43683de102e2ef20c1c739abce85d297323294abcb1869ef4d8a16
et|32|19787cd28a0a9a021d907c4e399d795d2705f95bafa73b9acc168641930813105f5b9aee2635ce55ac49b0f472341caf4daefb83032ff192ef7faa9c2e70fbc5
eu|32|6f5b98349bf07786846f83e9f49f8d60d00e1020c4fdfe2974f40b7f75a1841375a4e413c2250b8e48e7e650bbdfe8ae449d9a3545f73b3216ee792a06ce2d54
fi|32|ddf14aadbb4503d43887339a1aaf349ea1206f2af6955c25443e5619c2171ae19e1d57d4b8e92aa52109a753d6749d6d3cca6adcd7a89a6d7ccbeb1d32dcd22b
fr|32|a0978646dfd88a14d36fa2fd8d2c60aa0bb4510ece6a65a8cbc2179ddd898bae6f8aa58ded0af70dbecf00d3ad4cc6b1763d779fd32d2cc2d6aea35fbc422b41
fy-NL|32|acedbb95297f2e376c37b6f1368e8e1cebb1e50cb96dfb5c1ca02cf5ab76e1ed0e33d7668f2dcec188a22be5bdbe14eeca6ac67aecda08128eb15f6585badad1
ga-IE|32|255afa1dee0bc3aa9cc46281ef3ef341091ee30909f8b3a53d21471e0df806d6354cd056df79620a6ea82b889cee6706a4dd7171487b12e55c9bbb61c35df555
gd|32|a4d6d6fe485f15b28c4aeeae29b8640fce29aa13b21a86dac20f82d1df36f0c691baa7a5bc83d0b952e9c9892305f60f2de69eeb64ad8aadb04bb466e5812339
gl|32|954ac33b26b10c42638ac2fce84b917c2409e20ab01f3b13168a6ed5f96184d335d941ecc101609c40ca0fb107e4602ff1a6fb1298ac9180c7903f12e00b74f1
he|32|eebde361cb8a2192d98a05785e0f9a877c45aa0353c4ef364e2a5227ebff447001e8cec448fee8a8545f7051bfa35410fc386ab865da47f020197debad106dd6
hr|32|0334e9cf791c4bbef2096c8d2fd2aa4696f261b85c381926249e7551cbd4d75015b0ab5463226b2854feb07e6f600bacf2b4e42d9013d57d20e08b5caacfa1ff
hsb|32|fadd4a16dc4aaa16d5295489cefad1751f1bcc5087fd7411500bc056bdfc7bbf22ecddf3f788233b6a7716fc157c9b09c9683c986a82a438646891269ef83d6b
hu|32|8c0e253e7f1c3fa276fe7cbf6fe20139467403cb8093e64fbaca261ce59b966c9c6807092bbb16d1b7dd48428cd78e4429102a60cfe317153cb640d233f85eaa
hy-AM|32|9da73bd4a24746ecad8ef38ddacc522786347f66c4ff28610265cdff7fe83f85d3b636fa56ead5628a1301fc6c76fbf9f12504444f59cd362d0a24f08f78808b
id|32|39172b9bc56a47079bea02322851ef11a484e54afd20fadf0cbe4d04d2939dda3352d425f914252c9e0c0e9736157936273d50826d412b156827b22fe5400d10
is|32|964df5a851dd48ccf58386e1638c88c49fba72e890088156719405fe0286543b6d0c0004a18c353feaec3b7bf6a181abda9d5f81b52c50d149c34cfc056ba560
it|32|0a97c3faecc958ba9febb92874ca6aa1fa612c86050f8f9e3c8df0fa72b443cc4b80a5d7dc5b6f078d45d5eb2b48e0b6b7b4f7695d1810be007e34b12e8fa8ac
ja|32|999600442cc330d2192160ecbc32f118f692038b94347c9f82bffc1f134acffcc261d759b44f65bd14f2d6c0a62ad66730f2fb8b07ca760e8db1bc2db0978ffb
ka|32|0904cea8f22c719570471bea91f68b5eccb1be2e3bd616c0bf2b61d559c49a16f958e5ad1ac82f3a4090beaa17975f49590db9c3ac6fe416f8af3b91350b1252
kab|32|68a4c490b355aa1241e3dd82af753cae839fc97fc6ef406aa4261ca5a32c4fc1e7045a4341d281d75312ccf85060f0bf5248a33159641e0df7d70a21c15c1afb
kk|32|c5a0581ddf542d9251bff8ac01e390560367c9b7ab6cf9e3ec41e5522aca1985d22573ab91afa8d21d817dd8db90c48ad03d4b37549a9da0c85b17ca0af961b6
ko|32|c5bcd5fcf5d4a7688d8257b404d754c09ecb259e33734b4cdeca75b8f829da655dffa42499ff39fe267ce4c125b4c3cf3784c0da9bc5e73fae258186112ef834
lt|32|8f14485bd12f4b714f995f5bd7db033dcf17df163e134224c5dfaecb788ed7155cffbbb0ab224db5603bbe66584d25648ffc07024b8067ba1d73169c7ecad3c0
lv|32|d36d01291d478769c8fdf9be662e9ac2910cc11bde21fc14560c49bdee98ca00af19a616cfd0db19e21fc828c100667a1b4ac1737bdb41800731613cf3844989
ms|32|1b2b6328b2766332dea71f7302414cab7ad8289e2f8cded3900c8a528755e42f4a44639b689742c3a84d9d94314f313aef75e77e3adf2603ff772b7478d5bf0a
nb-NO|32|6e3837bb2020f9f2aeceaabab142cedaeaf1a088933f7447d9c389b875772bd27839b11dd2237bda751182cc8801ed792b7a6fee5d52d58885bbbfe2ea3aaf5b
nl|32|5c520e04a04a0b7ea551d2d9caef97b4f05cb10eab474af1f79189634d8e3c53ba035af2055c2754f2312f352f5876b4ed1f82754ca724758da7ad1f6ffd1b3f
nn-NO|32|ec7aa00cae3141ac212eeb2b8db7024e837231297781058456859456c07689d06e9b0718dcea92e24202e5a34097df90122a6dbf9ecd96e1fd85435d2b11405f
pa-IN|32|9d43eff58ea2ed6d3537b096c6685d5930922d73a32669680222944627df46723763795d365979b256a5db82b6bd452e6bcfeb0aeb5d254860b1c7f4587a7a87
pl|32|55508168cdfa72d3a218c3ee0a9df900b1a8d7fe6e7f94afc5765fe6c6303e4736b11a6b44cf6e3a5a05d63cfbaa6796b1af5f0a6c087c420f55e889eda654e3
pt-BR|32|7fb2e747fcfa1a8fa3e457b7bdb2ab91a1de4435fe54f8415067a7123ba979d534531d7d0dfc3ca736e3785aa9c5af7ec63dbedf1d589e5d09705ce5ba792eea
pt-PT|32|1568744ee2f059b404eb7302f2256065d3843723d4fde04d0cd45e0ab80154e74b3fe40f257cd241c1c07acd166753c20de456a31623fb0e5e6bc7c24d2ae5f2
rm|32|9801054f8ad3f443c25c997dd6b62a65f5134fa642266d32278b6e4aaf787326476273f15ba42bcb24361818a9550aa059dcdcbd7296ca55db73f639d7b87c80
ro|32|946393264a70608f623b1676abd2886c2693b8f07e43ae310f1885797f8a40cc736f5e5e2b435e590729defcc51ebfa74903b15edc43867e008f87fff6b9fce8
ru|32|2427b42301f30e01e5a45302f4f1dffa2253bcee0c6508939c42f4b6c3c2fa5461db1cf2b988fe08a10dc3e8094164108fa9055c23fbd4364a5ddfe9561a784d
sk|32|29f858bea740e90122da864bae2cb8e8e0f4c0e9d635b850b67a5d656f1aa5abea89893eb54d1e3535f6784c1a9367ec5386a54227be1ba66de5e36db8759757
sl|32|52ba209a966e39164b8b4c9290b9674214861a50e62283a68c4f2b9f328f0d6095cf65b7791a3ead4ced3d085d5ecb3266a99e2fe2242373f18e15fefc8edf83
sq|32|c0882607831c01cf961e145f4b8c81a4a060334881a919fd8ee29e3b0200a653646d06f5d13a67d049e38f90bafbec7d78268f82cdfbce3d13724dc76e49e3ff
sr|32|b285661380a49b76252130761835e5ca846205f3ad4b9d8cb40224885fb009224a564b0f0e6a76524b4c6869747be62a02b2ed74a8169a115852325dbe0a754d
sv-SE|32|928ba8cec4cbb6e5f9db9c3676f6ca03db676f71bab401eb82d1ed3a11802d489a32dc774d7cf6f4e4efd82af67a8a2770d02a2f5eb7a7e96d4a21868e915045
th|32|6f8fcbefbc3dadbc4315c5b6d4453829281c0460499da6025e3d785a6619d37de5f464c4c716618c5f78e4cff4089dd7a56baf26bb8796a4066c0367b0c5e651
tr|32|9d1d93e5411d70fefa8ae273deac0cab58a11c7b5c47734633c6043487d13134d0cf4fca64c61e3795bc37adbb4f7aaaf20c631857ef737fa40263fb66bed2b3
uk|32|840fadadf7ca43c545b192acc285018968296d7d9592cdaab75518dc2e347238809f48ac3bb331ce4ca57f22332615d84708f279468f1485f24550d8f81f9af4
uz|32|6e207b6de6808bdbf0f106cfdac2cbf61708e67ad73e454dd87a7fe053454e623d9412a441507171b78bfb8563a9abe0c556cf5eceee6f8b56f69f3674ef24c4
vi|32|841ca74029b425fc63854b9c25a916ba91b454a426772cc98408f5125be5f24ed3258c3b027a9f90ee3e9289dfe8411ddb17cb59762ba539f92c1c672e594ecd
zh-CN|32|5d00082979e9a4044347086cfc09b0e495d48bd9d509c4e7a1264390403687256bf90a8ab07d216784ca1ba9f184ff268040149875d706c0ca80b93f039fd8ab
zh-TW|32|76b97c2cd5be5f7e1772b2a44f1cb2efec75c5b31476f003e93541bd276bcf04805842011cf02c01aba8c8200024124edd71ecb8f301d8d8dcba1be999d3ff43
af|64|9334bbcc1ecfb5fd60dce2550505ddbe178f79d15ef57248e5b4509f0f32c2dd2066a928b1243c495f495066a41b35da4e43076cce4e615ab22e4882d0d0c5d3
ar|64|a63a476948cacbfc316623aefd47e0586be8725cf1e5096567b6ae1bb8bc2b5787549909474e315810430871b55a3318bd9f913ee2f0c1ff1b33ab744575dbe7
ast|64|397a9a7c1eef5ef693a3be383d67e2d6c87759960fde401921949bbd35a9a2f81caa1e9d7dd30cb5dc81de7ace6a768c913f06dcd107b0d517c254c0e422338f
be|64|bda10f9957255c81103926af2ccff6812ff3f1f9fb1154de6765d16bf82f1a03f82811e2b8bce2e055c415cd521ab166090e5a429fe35184d24ff146f1c53356
bg|64|072e04902980841da0a0b6c6a2cbbe10d7c8a5a3e8068ff009d711ddeb617b3fa28f4825d06c50ead5cd809673aa8d12604cbd08aaee3b0e2edee66c23547a59
br|64|5db2d01eb5e6e86293594d08d7efec260bf8032544330adbd88e62223d24f8c0b0006324f323536d1cee75b21bac74813927d4283d409bb0e8afa88adc6227b9
ca|64|0159423704f695640248ba89d582de2017edd3d5c301f0d48322dc9e8a1bdf5c689dc66a13f2845ba8b0c2dd0ffd91b144a7e0486c15188ad71a9800c15822ce
cak|64|c7959d41fcc38996ab6e5c376c86f6acdaa6c12ac71902c4c601cb723bcb588e1444679cd64a58d26b0ffef79e474563fb311146343832fd143d2b7ffbd6e147
cs|64|d75234b135239ee17fdf67cd392b92c56c6012d25dd08b25b0211f8ec56264c494120a653ed2737811498d895f19ee1496b2ae226ed76761f69b5a58f07fbba2
cy|64|8b702c3c7b3c639c34b064716e931914a44c2a62b890f9d53587089e6703ffe0b2d245935bb198f82256daa3c621dd4a6685303567de5fbce274353729581321
da|64|584525cdfb56e33fcfa8c56dd5ef9b46a3d1c812398d3ad0d0843779730f22ec41a5c707c49544c9d7e269284a25d394ae7f95f0defb214c32dac194f3bddaad
de|64|c0044ff78af9f1c9446874d45141125b968bd5be51251e06be21ad2abb7cc7f1845737dea3b52ce8d303b2f23bcd86f729394c154c38e133d9383001ffb7bda4
dsb|64|b76da1200eab5587c8c6ce3037375294d1b0e3ec90363222b385ef2b126a8404961c935bfc44103bcc8017019581e981d694b995e201645d0c9f3f0b60f24d9e
el|64|1548d6fc432ae6536122e48ffc90a137971384f33fcbd74b0e741f22287274276da2439d2844b03d7d4f58c67a537fd659af139ebf3cf2ae27fffc086adb72cf
en-CA|64|73d212843b0d75d90b719da1c77d1d96cba8373ad3275972a132695f0f9b2005ee5f083de4c868c763f036a830fd77d96c494530440ee6e1a99fa2908829a81c
en-GB|64|9e72b6d3d61218bdd35724587a0eb19985294d1bc2000752ea074cea96761423aaf27d0ace984042885b1c4a16127028f172836608e13974e84172c7835f8840
en-US|64|92e81f16fc26c06a116ea68a69467a9e4ff363ed08012a87fbf66d0de2f41e5ccd17466984cbb1b32e13ca1a0da8739c5620e58d3b68aab2f646a28e7d5b34ec
es-AR|64|5f4fd2f5c6ed0fb7121cb18bd9e4ecfd5f025df25f751465dab31f683fd7e3919da9728b535de7701fbd48da0c933275c179231423126b8cfcb772500143d5e1
es-ES|64|a898a27c78d6c74342f54bb7889704b9bb671f8f9a22801059f00e05dcf8d41fa6f68134b1c7cbf3b5fe996cf2598c348404afc74d48e0e6c4c86685eed4a78c
es-MX|64|e24cca04784e5495e1a3b92b7af62c48ff18c3d2585d24f3a4aee859afd4fccb7348d1afa51374efd2fad71d2cf37abb86e834f84e9e6a57e719a53f437219a7
et|64|85aeee525969ef6ab7c9178e7e6fcae9e60b66fa3e97d71ab48c58a697f6cf39a9e52b91e9d6c13fdb5612bbce6f7972bfe9ed8c00d3861847ae9e06af50b2b2
eu|64|60ba6177d8a65d2c50ae5ba183189c00af056342ec0425ce3fd96da0a4b28f73a40883854c171dd914651e4940264cbca8541f573a2c9b6a4c410fd2fa67537e
fi|64|5ae48136b3789eb5db4f7b019ff90fe4da246bb40a1343f456cb61e4491efadab1b80154a501a65c4139ced22a98bd4a590b60eaa8ec0c253760300d711c8fc1
fr|64|105c558e245866e929a5368e8487e163ee0226f062acf6e9e67af2f1c5e222da3a72df18c86265d247297010558e0268e00700d5f8a6105330fbee9b40132c02
fy-NL|64|caf7e357f7fb0172410ded29db9c11122cbc94c76b0dbb50c7d880afdf0620d52dad9b0649164111e1c5d320b396b01deefbab90b8a4fc4419643afea42db300
ga-IE|64|b8797d882dd791fddb94546b054b72c48bab69971e9a10608aef177f96e17a5896a6e045b740fe0eb034354764ad25a09ac78f9cdc1f13fb5f0ccafbbf0a1db2
gd|64|f2750962ef0eb667c432dfab772e6bebdb4bac28f4e23c8a13bdcc55757e367f9bc1961df5f00f263f456ce1c97f33de48822b97058595b5ac97e11cc841c585
gl|64|190600758fd157db897d8103690a44a3a6b641d1d0bfb40dd7f8cf7f3a8b102fa2ee8449baafd04e3ba145821add23d0f556c74df1672151e86569b5909f68a7
he|64|563f84faf78c327050bec0954e1799f73fd78bb77d08b3c59680b1c545227dc3402bcdbf6893f391734cba16f4c0047ee011248123743b8c0b7a93b7f34cffa3
hr|64|6afbcc477519af525a0642275ca39a68589df8658f921d8d407c938fcab264bad596473fab9194572fa397942f7c1c5a1969bb239990d9cc04c8292dae2a8df9
hsb|64|3098431f4024fffb88d1b233067fd946eeaa49584be6b5ea13981d8c5ffe47c047ed028b4210e350784bbece389c25c20fb96ced13b0a32e01a65475b85ebf94
hu|64|4b6b4452ec3f3b4dca16ff928e3544452c5289da977f345ec2f0098c9029dfd2560ec65e64fc1830e98d1d76852f60d70e9f7f492435ad5a3b193b99b5007e49
hy-AM|64|679b3ee5fcb3d23aa74ebe1f97d332b418d1bcc9f73055ae30e40d6852c6b0c9a8a7869f67e753a66f159b2477d82e0a09a355d40b6c6bec29759765f062421c
id|64|632e720639723424e7112fc2ce7fbbba22b75734c8cd48dbb0d29ff7041d8c3240fe69ccb5157d5609fafe31d07a85e542d7ca083aa169aa7a79a63b4ea9d271
is|64|c06ccbc7e53a32ffede5b80f34ca5da1b6c1ec2b91362aa471ecdd0cc556a4bae53421b71671d357f7d304a07282df0a6c9c9bae614ab175adc88a96971e1ab4
it|64|7711e40799bd143891f3a0ef574d673c9cb570463dda3338383d6a898386ec51c203d6de4a3639820bb2b5a52a387a0d50dd0b90a17c70eb197f7ea92a7d20ce
ja|64|43ef68dcfdb56e345b3bb4c58cdb4a0551ccf70372a98adeada501705c9bbddafdf6a7215a3c1eb90f3022bd5d33fd8a4cebab1f0cd24142f8029fcfa717edb7
ka|64|7218c0171cd6ad3f5bea7458b479fa758747916cf61c0eeb8c8d513e662ed58df4bace0562e492a11cc14f29b73b5bc199e20ad1dcdcf6e90d2984f1f444fe21
kab|64|709991faabf7d3bd08fcc2dc54fab0da8b7881140567bcc6922f8fb71c165cf3df5b75f782c90b331b1fbca803ef261c4c50f5d080487e1b0e8ce87ef2661a2d
kk|64|90ec9099cad847b031bbff12764df2936428bf46d2644869919ec267a149dfcd5bd8025231ac01e87d58ed494941e601b4cc552c9971b31e338a342ebe6b79b4
ko|64|d44216a89f9660ad89a79fd2225f745853d6222c6d2f0e78c65fc26e180d4bd12d512357bc6d18a455fba9591f2d5f615bf60fa31969c4f7b221e48f2eb6c23b
lt|64|e21250fdb105466f8d74f8246c0a54e2f18782eb2a7cf4767748d5fa5b7f18ffe18e63ecdda8e253c3659d6bfd55b3da758eb4238d51af28a8c3b62eef0eb913
lv|64|23c2e013671b379736b5f093b71eaa0903417182f65f61f34f5719bdef682039d16d5009a2f5a3c01360d8c48918d4bdb18cf958357dc6508813e5fcd91da4eb
ms|64|12b9722d0bbcaa5de42f903f37b38514b5eead45a6d009c80f3115079bd45bf20256b20312b100e2dbdb69d00d96947a3543da4d4e7c851cfd4d3a1fc2ad15d2
nb-NO|64|7389aa49a9c2fed42264966e1c684e04a19a6fec3db55c77c144a1e7393963a29ff6fd828037a46dd161b72024ec793ef20c5e722eef76abf97f64d1b7a996b6
nl|64|38e5b443dd69c77b47b0d3c8de7d762c10531b1a0a6371d7113493ddbff7eab0b7cf3395f974531178c333f8410fa193edcb3f6f74e0c54660be9b53445a351b
nn-NO|64|896d950cb8ba0736b47654a48da3f8763c3f55084e1c065c95f03396513cb10ada3552afb86e7f1430445fade9f3bbbcbfce525e33d8deba83d4883093be2832
pa-IN|64|5ef40a7c554db626e438156b944dfad915198c50cf283a64a1beb9a48db9b52dc22df4011d49566c4a4869b3eebc29ff5c48121924220dd2eb7e447b65124990
pl|64|a0a8cf589c7f6900c49e2d619dd112880572740384609ccd1356c9369f332777b5ca7404ed078ac4a6787f66b92e3a260999992ab82cd6b589927a3dad5c2053
pt-BR|64|647bbee822e8cae5ec0e21e038736b47ba61ef28afa6342859a96078fbde61dc1f420e7e1b5dd4aab7778f68fae382e97db611522b45478a1ff20d7f651304de
pt-PT|64|977c491e33bbfbf4edfa22e8f2fa0733f358bf8c90ede6b641305049d45da39ac63d5fa55868e3a07f6f9a3ef2a57e12f7da6373c556cac0b757bf0fade652a0
rm|64|b32378e70f986aa124845c3fb8eb76fbe7ff75df6ff82c6a2b7eab22fd121d66fdb9bd6ccf7090a70376fc9662db1c95ec5003be661776483e3fb0e38179679e
ro|64|3a110dc5afcba9fae3943a913ee40501d08ae2f0936fe4417f08e40483a5a272ce2fad8ebfc3be16ec255019c15efe799ae413c9ebfcae7df5f45b363c7d0f83
ru|64|bd83becae6f860ef6a74bb377a79d1fa5cf652120e745fab94d2cd78bebab586479d5232166df5d6b53324fe54e524e1a26afeb3950393db6874c38a09f8c6a7
sk|64|804a940972b1a023eb8645dbfccd9dd4b914f1bf5ecd4e82e05b8dcb9b267d5de9102443229fc51f99a7afe69e3f1b497beb226ecf188cd0cdfa5da9260d80ac
sl|64|dc3be37b477cbfc517c96763361d4aa3b631c5ae8f2bc71eda1101e4666f5132b7420315b284e45f012879ec2035e3160f1424f49e42931acae3f1aab181c73b
sq|64|940e11422ceaf4b8dfc074ffde57c45f9b5c896291c6ae9bb19442dc02f671d507ec56a42eedd5b6c8bcfff3e004b5b0b064391034847f6a50cffc0106e700a9
sr|64|be0271690c34c424d696dcdcbbcb1e2525648d4dad77c0e95467f6a94af72b96acc40bd3fda88d16399252ece7d4e5a63d8f508a20728d92de3f3481a46065ba
sv-SE|64|37d4cae49b6f8714e84f6777dd18688811f1eab06887ee9cbb3e1bbdc6cccc9289c470cbaedd533f274dea10bce3d9e23b6c7ac056acf73cc7b6a4db569dbfe0
th|64|f47f125d43d14fc52c3d615204900fe06763fa1cffffc416ba361369d1ddd49a56434789760167f6cda2174708f7eb028cca7b83d90407a2372e882d60dea00c
tr|64|98ded7cf805683e7169448a7379a85f905c6826ce929e94bc9249f5128263f6a25d518d482e83bd04149aca4d8c5f46503948081436e41c3f6a74860f22c2734
uk|64|0dd8a38d29f057e70594d10d21b701689568c312009569622dea9be2e5dcf0e9c49c730b784f427d6807fe053039076d69f13e7d25daa4a57c2534a9c94ce31e
uz|64|18e35e6da9b7d89676229da02cad3c95878c890eeee69f7013b3cea6403be79ca40897594834d2edf8da0d322c6d3861da470af70d206624e110c8f2b228f30b
vi|64|af1d1315b7b4f9c5ed656c0ac0301d6a082a3d015183d4cf016131d11f9c5c4a92ecf53c5e858fe133e3c61ec50cc744724d47161b040afb6b8ca4de0e8cc0f1
zh-CN|64|fef483f6c17ff3405230d39b278477c311ec83493fa5b75e02b28fe92b283386df22757802d1e093bf732ed5dbabf11f5082b39d30c157e34e5679d550f0def9
zh-TW|64|33cc1d465cf235c7a1187fc2dae58a8ce7eef8291e06ecbf8b059dce8b318ea95bbaf94ba700ee6ce86e547194540ccda05b2d0f698e95b722d95657f529d8bd
Log in or click on link to see number of positives.
- thunderbird.128.5.1.nupkg (7ab130a974c0) - ## / 67
- Thunderbird Setup 128.5.1esr.exe (a93a80f925c0) - ## / 60
- Thunderbird Setup 128.5.1esr.exe (2153c9dac43a) - ## / 55
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 |
---|---|---|---|---|
Mozilla Thunderbird 128.5.2 | 29723 | Wednesday, December 11, 2024 | Approved | |
Mozilla Thunderbird 128.5.1 | 23854 | Tuesday, December 3, 2024 | Approved | |
Mozilla Thunderbird 128.5.0 | 29560 | Wednesday, November 27, 2024 | Approved | |
Mozilla Thunderbird 128.4.4 | 26235 | Wednesday, November 20, 2024 | Approved | |
Mozilla Thunderbird 128.4.3 | 26482 | Wednesday, November 13, 2024 | Approved | |
Mozilla Thunderbird 128.4.2 | 25338 | Thursday, November 7, 2024 | Approved | |
Mozilla Thunderbird 128.4.1 | 16074 | Tuesday, November 5, 2024 | Approved | |
Mozilla Thunderbird 128.4.0 | 18696 | Wednesday, October 30, 2024 | Approved | |
Mozilla Thunderbird 128.3.3 | 24452 | Friday, October 25, 2024 | Approved | |
Mozilla Thunderbird 115.12.2 | 73816 | Sunday, June 23, 2024 | Approved | |
Mozilla Thunderbird 115.12.1 | 13979 | Wednesday, June 19, 2024 | Approved | |
Mozilla Thunderbird 115.11.1 | 30071 | Wednesday, May 29, 2024 | Approved | |
Mozilla Thunderbird 115.11.0 | 24312 | Thursday, May 16, 2024 | Approved | |
Mozilla Thunderbird 115.10.2 | 25279 | Wednesday, May 1, 2024 | Approved | |
Mozilla Thunderbird 115.10.1 | 23205 | Friday, April 19, 2024 | Approved | |
Mozilla Thunderbird 115.10.0 | 11911 | Wednesday, April 17, 2024 | Approved | |
Mozilla Thunderbird 115.9.0 | 34109 | Tuesday, March 19, 2024 | Approved | |
Mozilla Thunderbird 115.8.1 | 27838 | Tuesday, March 5, 2024 | Approved | |
Mozilla Thunderbird 115.8.0 | 27142 | Wednesday, February 21, 2024 | Approved | |
Mozilla Thunderbird 115.7.0 | 36245 | Wednesday, January 24, 2024 | Approved | |
Mozilla Thunderbird 115.6.1 | 27386 | Tuesday, January 9, 2024 | Approved | |
Mozilla Thunderbird 115.6.0 | 29859 | Tuesday, December 19, 2023 | Approved | |
Mozilla Thunderbird 115.5.2 | 22382 | Tuesday, December 12, 2023 | Approved | |
Mozilla Thunderbird 115.5.1 | 27055 | Tuesday, November 28, 2023 | Approved | |
Mozilla Thunderbird 115.5.0 | 18718 | Wednesday, November 22, 2023 | Approved | |
Mozilla Thunderbird 115.4.3 | 20203 | Wednesday, November 15, 2023 | Approved | |
Mozilla Thunderbird 115.4.2 | 22776 | Wednesday, November 8, 2023 | Approved | |
Mozilla Thunderbird 115.4.1 | 26036 | Thursday, October 26, 2023 | Approved | |
Mozilla Thunderbird 115.3.3 | 20821 | Wednesday, October 18, 2023 | Approved | |
Mozilla Thunderbird 115.3.2 | 22161 | Wednesday, October 11, 2023 | Approved | |
Mozilla Thunderbird 115.3.1 | 24352 | Friday, September 29, 2023 | Approved | |
Mozilla Thunderbird 115.3.0 | 12372 | Wednesday, September 27, 2023 | Approved | |
Mozilla Thunderbird 115.2.3 | 19559 | Thursday, September 21, 2023 | Approved | |
Mozilla Thunderbird 115.2.2 | 21714 | Wednesday, September 13, 2023 | Approved | |
Mozilla Thunderbird 115.2.1 | 6765 | Tuesday, September 12, 2023 | Approved | |
Mozilla Thunderbird 115.2.0 | 25433 | Wednesday, August 30, 2023 | Approved | |
Mozilla Thunderbird 115.1.1 | 25996 | Wednesday, August 16, 2023 | Approved | |
Mozilla Thunderbird 115.1.0 | 24933 | Wednesday, August 2, 2023 | Approved | |
Mozilla Thunderbird 115.0.1 | 27101 | Thursday, July 20, 2023 | Approved | |
Mozilla Thunderbird 115.0.0 | 23787 | Wednesday, July 12, 2023 | Approved | |
Mozilla Thunderbird 102.13.0 | 16015 | Saturday, July 8, 2023 | Approved | |
Mozilla Thunderbird 102.12.0 | 35820 | Thursday, June 8, 2023 | Approved | |
Mozilla Thunderbird 102.11.2 | 25003 | Saturday, May 27, 2023 | Approved | |
Mozilla Thunderbird 102.11.1 | 11248 | Thursday, May 25, 2023 | Approved | |
Mozilla Thunderbird 102.11.0 | 27772 | Wednesday, May 10, 2023 | Approved | |
Mozilla Thunderbird 102.10.1 | 29023 | Tuesday, April 25, 2023 | Approved | |
Mozilla Thunderbird 102.10.0 | 27123 | Tuesday, April 11, 2023 | Approved | |
Mozilla Thunderbird 102.9.1 | 26573 | Wednesday, March 29, 2023 | Approved | |
Mozilla Thunderbird 102.9.0 | 25501 | Thursday, March 16, 2023 | Approved | |
Mozilla Thunderbird 102.8.0 | 35710 | Thursday, February 16, 2023 | Approved | |
Mozilla Thunderbird 102.7.2 | 21436 | Wednesday, February 8, 2023 | Approved | |
Mozilla Thunderbird 102.7.1 | 19943 | Wednesday, February 1, 2023 | Approved | |
Mozilla Thunderbird 102.7.0 | 24109 | Friday, January 20, 2023 | Approved | |
Mozilla Thunderbird 102.6.1 | 36216 | Wednesday, December 21, 2022 | Approved | |
Mozilla Thunderbird 102.6.0 | 20254 | Wednesday, December 14, 2022 | Approved | |
Mozilla Thunderbird 102.5.1 | 25166 | Thursday, December 1, 2022 | Approved | |
Mozilla Thunderbird 102.5.0 | 26040 | Wednesday, November 16, 2022 | Approved | |
Mozilla Thunderbird 102.4.2 | 24275 | Friday, November 4, 2022 | Approved | |
Mozilla Thunderbird 102.4.1 | 20811 | Thursday, October 27, 2022 | Approved | |
Mozilla Thunderbird 102.4.0 | 16175 | Thursday, October 20, 2022 | Approved | |
Mozilla Thunderbird 102.3.3 | 20325 | Wednesday, October 12, 2022 | Approved | |
Mozilla Thunderbird 102.3.2 | 18400 | Friday, October 7, 2022 | Approved | |
Mozilla Thunderbird 102.3.1 | 18914 | Thursday, September 29, 2022 | Approved | |
Mozilla Thunderbird 102.3.0 | 19831 | Wednesday, September 21, 2022 | Approved | |
Mozilla Thunderbird 102.2.2 | 23203 | Thursday, September 8, 2022 | Approved | |
Mozilla Thunderbird 102.2.1 | 18003 | Thursday, September 1, 2022 | Approved | |
Mozilla Thunderbird 102.2.0 | 19376 | Tuesday, August 23, 2022 | Approved | |
Mozilla Thunderbird 102.1.2 | 22250 | Tuesday, August 9, 2022 | Approved | |
Mozilla Thunderbird 102.1.1 | 11491 | Saturday, August 6, 2022 | Approved | |
Mozilla Thunderbird 102.1.0 | 17259 | Friday, July 29, 2022 | Approved | |
Mozilla Thunderbird 102.0.3 | 18739 | Wednesday, July 20, 2022 | Approved | |
Mozilla Thunderbird 102.0.2 | 19793 | Tuesday, July 12, 2022 | Approved | |
Mozilla Thunderbird 102.0.1 | 14131 | Thursday, July 7, 2022 | Approved | |
Mozilla Thunderbird 102.0 | 20709 | Wednesday, June 29, 2022 | Approved | |
Mozilla Thunderbird 91.10.0 | 31610 | Wednesday, June 1, 2022 | Approved | |
Mozilla Thunderbird 91.9.1 | 21187 | Friday, May 20, 2022 | Approved | |
Mozilla Thunderbird 91.9.0 | 26221 | Wednesday, May 4, 2022 | Approved | |
Mozilla Thunderbird 91.8.1 | 24100 | Tuesday, April 19, 2022 | Approved | |
Mozilla Thunderbird 91.8.0 | 22331 | Wednesday, April 6, 2022 | Approved | |
Mozilla Thunderbird 91.7.0 | 30231 | Thursday, March 10, 2022 | Approved | |
Mozilla Thunderbird 91.6.2 | 14325 | Sunday, March 6, 2022 | Approved | |
Mozilla Thunderbird 91.6.1 | 23274 | Friday, February 18, 2022 | Approved | |
Mozilla Thunderbird 91.6.0 | 19944 | Wednesday, February 9, 2022 | Approved | |
Mozilla Thunderbird 91.5.1 | 23628 | Tuesday, January 25, 2022 | Approved | |
Mozilla Thunderbird 91.5.0 | 22106 | Wednesday, January 12, 2022 | Approved | |
Mozilla Thunderbird 91.4.1 | 25588 | Monday, December 20, 2021 | Approved | |
Mozilla Thunderbird 91.4.0.20211214 | 16811 | Tuesday, December 14, 2021 | Approved | |
Mozilla Thunderbird 91.4.0 | 18906 | Tuesday, December 7, 2021 | Approved | |
Mozilla Thunderbird 91.3.2 | 27029 | Friday, November 19, 2021 | Approved | |
Mozilla Thunderbird 91.3.1 | 14296 | Tuesday, November 16, 2021 | Approved | |
Mozilla Thunderbird 91.3.0 | 22547 | Wednesday, November 3, 2021 | Approved | |
Mozilla Thunderbird 91.2.1 | 22534 | Friday, October 22, 2021 | Approved | |
Mozilla Thunderbird 91.2.0.20211014 | 17836 | Thursday, October 14, 2021 | Approved | |
Mozilla Thunderbird 91.2.0 | 19178 | Friday, October 8, 2021 | Approved | |
Mozilla Thunderbird 91.1.2 | 22930 | Tuesday, September 28, 2021 | Approved | |
Mozilla Thunderbird 91.1.1 | 21705 | Friday, September 17, 2021 | Approved | |
Mozilla Thunderbird 91.1.0 | 20846 | Tuesday, September 7, 2021 | Approved | |
Mozilla Thunderbird 91.0.3 | 20682 | Thursday, August 26, 2021 | Approved | |
Mozilla Thunderbird 91.0.2 | 10493 | Monday, August 23, 2021 | Approved | |
Mozilla Thunderbird 91.0.1 | 14207 | Tuesday, August 17, 2021 | Approved | |
Mozilla Thunderbird 78.12.0 | 28797 | Wednesday, July 14, 2021 | Approved | |
Mozilla Thunderbird 78.11.0 | 31917 | Thursday, June 3, 2021 | Approved | |
Mozilla Thunderbird 78.10.2 | 21071 | Tuesday, May 18, 2021 | Approved | |
Mozilla Thunderbird 78.10.1 | 19271 | Wednesday, May 5, 2021 | Approved | |
Mozilla Thunderbird 78.10.0 | 21010 | Monday, April 19, 2021 | Approved | |
Mozilla Thunderbird 78.9.1 | 18537 | Friday, April 9, 2021 | Approved | |
Mozilla Thunderbird 78.9.0 | 19288 | Wednesday, March 24, 2021 | Approved | |
Mozilla Thunderbird 78.8.1 | 21164 | Tuesday, March 9, 2021 | Approved | |
Mozilla Thunderbird 78.8.0 | 18891 | Wednesday, February 24, 2021 | Approved | |
Mozilla Thunderbird 78.7.1 | 22977 | Saturday, February 6, 2021 | Approved | |
Mozilla Thunderbird 78.7.0 | 17643 | Wednesday, January 27, 2021 | Approved | |
Mozilla Thunderbird 78.6.1 | 20334 | Tuesday, January 12, 2021 | Approved | |
Mozilla Thunderbird 78.6.0 | 20536 | Monday, December 21, 2020 | Approved | |
Mozilla Thunderbird 78.5.1 | 20591 | Friday, December 4, 2020 | Approved | |
Mozilla Thunderbird 78.5.0 | 18728 | Thursday, November 19, 2020 | Approved | |
Mozilla Thunderbird 78.4.3 | 14913 | Wednesday, November 11, 2020 | Approved | |
Mozilla Thunderbird 78.4.2 | 10884 | Tuesday, November 10, 2020 | Approved | |
Mozilla Thunderbird 78.4.1 | 9282 | Friday, November 6, 2020 | Approved | |
Mozilla Thunderbird 78.4.0 | 20229 | Thursday, October 22, 2020 | Approved | |
Mozilla Thunderbird 78.3.3 | 11741 | Saturday, October 17, 2020 | Approved | |
Mozilla Thunderbird 78.3.2 | 17180 | Wednesday, October 7, 2020 | Approved | |
Mozilla Thunderbird 78.3.1 | 16211 | Saturday, September 26, 2020 | Approved | |
Mozilla Thunderbird 78.3.0 | 5312 | Friday, September 25, 2020 | Approved | |
Mozilla Thunderbird 78.2.2 | 18586 | Friday, September 11, 2020 | Approved | |
Mozilla Thunderbird 78.2.1 | 16616 | Sunday, August 30, 2020 | Approved | |
Mozilla Thunderbird 78.2.0 | 9592 | Wednesday, August 26, 2020 | Approved | |
Mozilla Thunderbird 78.1.1 | 18444 | Saturday, August 8, 2020 | Approved | |
Mozilla Thunderbird 78.1.0 | 10147 | Monday, August 3, 2020 | Approved | |
Mozilla Thunderbird 78.0.1 | 14072 | Wednesday, July 22, 2020 | Approved | |
Mozilla Thunderbird 78.0 | 10424 | Friday, July 17, 2020 | Approved | |
Mozilla Thunderbird 68.10.0 | 17224 | Wednesday, July 1, 2020 | Approved | |
Mozilla Thunderbird 68.9.0 | 22077 | Thursday, June 4, 2020 | Approved | |
Mozilla Thunderbird 68.8.1 | 14119 | Monday, May 25, 2020 | Approved | |
Mozilla Thunderbird 68.8.0 | 18443 | Tuesday, May 5, 2020 | Approved | |
Mozilla Thunderbird 68.7.0 | 21915 | Thursday, April 9, 2020 | Approved | |
Mozilla Thunderbird 68.6.0 | 19699 | Friday, March 13, 2020 | Approved | |
Mozilla Thunderbird 68.5.0 | 28047 | Wednesday, February 12, 2020 | Approved | |
Mozilla Thunderbird 68.4.2 | 21243 | Saturday, January 25, 2020 | Approved | |
Mozilla Thunderbird 68.4.1 | 18639 | Friday, January 10, 2020 | Approved | |
Mozilla Thunderbird 68.3.1 | 18192 | Tuesday, December 24, 2019 | Approved | |
Mozilla Thunderbird 68.3.0 | 13380 | Wednesday, December 4, 2019 | Approved | |
Mozilla Thunderbird 68.2.2 | 35002 | Thursday, November 7, 2019 | Approved | |
Mozilla Thunderbird 68.2.1 | 16926 | Friday, November 1, 2019 | Approved | |
Mozilla Thunderbird 68.2.0 | 12495 | Wednesday, October 23, 2019 | Approved | |
Mozilla Thunderbird 68.1.2 | 17543 | Thursday, October 10, 2019 | Approved | |
Mozilla Thunderbird 68.1.1 | 17724 | Wednesday, September 25, 2019 | Approved | |
Mozilla Thunderbird 68.1.0 | 17577 | Wednesday, September 11, 2019 | Approved | |
Mozilla Thunderbird 68.0 | 26007 | Wednesday, August 28, 2019 | Approved | |
Mozilla Thunderbird 60.8.0 | 34727 | Wednesday, July 10, 2019 | Approved | |
Mozilla Thunderbird 60.7.2 | 18427 | Friday, June 21, 2019 | Approved | |
Mozilla Thunderbird 60.7.1 | 11153 | Thursday, June 13, 2019 | Approved | |
Mozilla Thunderbird 60.7.0 | 20052 | Wednesday, May 22, 2019 | Approved | |
Mozilla Thunderbird 60.6.1 | 45052 | Monday, March 25, 2019 | Approved | |
Mozilla Thunderbird 60.6.0 | 8134 | Wednesday, March 20, 2019 | Approved | |
Mozilla Thunderbird 60.5.3 | 11778 | Tuesday, March 5, 2019 | Approved | |
Mozilla Thunderbird 60.5.2 | 8114 | Tuesday, February 26, 2019 | Approved | |
Mozilla Thunderbird 60.5.1.20190217 | 9144 | Sunday, February 17, 2019 | Approved | |
Mozilla Thunderbird 60.5.1 | 4688 | Thursday, February 14, 2019 | Approved | |
Mozilla Thunderbird 60.5.0 | 10684 | Wednesday, January 30, 2019 | Approved | |
Mozilla Thunderbird 60.4.0 | 15338 | Friday, December 21, 2018 | Approved | |
Mozilla Thunderbird 60.3.3 | 9182 | Tuesday, December 11, 2018 | Approved | |
Mozilla Thunderbird 60.3.2 | 9271 | Friday, November 30, 2018 | Approved | |
Mozilla Thunderbird 60.3.1 | 11079 | Thursday, November 15, 2018 | Approved | |
Mozilla Thunderbird 60.3.0 | 10577 | Thursday, November 1, 2018 | Approved | |
Mozilla Thunderbird 60.2.1 | 16940 | Wednesday, October 3, 2018 | Approved | |
Mozilla Thunderbird 60.0 | 24467 | Monday, August 6, 2018 | Approved | |
Mozilla Thunderbird 52.9.1 | 15870 | Wednesday, July 11, 2018 | Approved | |
Mozilla Thunderbird 52.9.0 | 7485 | Wednesday, July 4, 2018 | Approved | |
Mozilla Thunderbird 52.8.0 | 18819 | Wednesday, May 23, 2018 | Approved | |
Mozilla Thunderbird 52.7.0 | 20380 | Saturday, March 24, 2018 | Approved | |
Mozilla Thunderbird 52.6.0 | 23759 | Friday, January 26, 2018 | Approved | |
Mozilla Thunderbird 52.5.2 | 16349 | Friday, December 22, 2017 | Approved | |
Mozilla Thunderbird 52.5.0 | 14534 | Friday, November 24, 2017 | Approved | |
Mozilla Thunderbird 52.4.0 | 19526 | Monday, October 9, 2017 | Approved | |
Mozilla Thunderbird 52.3.0 | 17569 | Thursday, August 17, 2017 | Approved | |
Mozilla Thunderbird 52.2.1 | 12736 | Saturday, June 24, 2017 | Approved | |
Mozilla Thunderbird 52.2.0 | 6032 | Thursday, June 15, 2017 | Approved | |
Mozilla Thunderbird 52.1.1 | 9457 | Tuesday, May 16, 2017 | Approved | |
Mozilla Thunderbird 52.1.0 | 6409 | Monday, May 1, 2017 | Approved | |
Mozilla Thunderbird 52.0.1 | 7249 | Saturday, April 15, 2017 | Approved | |
Mozilla Thunderbird 52.0 | 4013 | Monday, April 10, 2017 | Approved | |
Mozilla Thunderbird 45.8.0 | 8837 | Tuesday, March 7, 2017 | Approved | |
Mozilla Thunderbird 45.7.1 | 8750 | Wednesday, February 8, 2017 | Approved | |
Mozilla Thunderbird 45.7.0 | 5643 | Thursday, January 26, 2017 | Approved | |
Mozilla Thunderbird 45.6.0 | 7070 | Saturday, December 31, 2016 | Approved | |
Mozilla Thunderbird 45.5.1 | 11814 | Thursday, December 1, 2016 | Approved | |
Mozilla Thunderbird 45.5.0.20161130 | 2164 | Wednesday, November 30, 2016 | Approved | |
Mozilla Thunderbird 45.5.0.20161128 | 2342 | Monday, November 28, 2016 | Approved | |
Mozilla Thunderbird 45.5.0 | 4849 | Monday, November 21, 2016 | Approved | |
Mozilla Thunderbird 45.4.0.20161024 | 8519 | Monday, October 24, 2016 | Approved | |
Mozilla Thunderbird 45.4.0.20161023 | 2245 | Sunday, October 23, 2016 | Approved | |
Mozilla Thunderbird 45.4.0 | 12334 | Tuesday, October 4, 2016 | Approved | |
Mozilla Thunderbird 45.3.0 | 34656 | Wednesday, August 31, 2016 | Approved | |
Mozilla Thunderbird 45.2.0 | 52880 | Sunday, July 10, 2016 | Approved | |
Mozilla Thunderbird 45.1.1 | 586 | Monday, May 30, 2016 | Approved | |
Mozilla Thunderbird 45.1.0 | 488 | Wednesday, May 11, 2016 | Approved | |
Mozilla Thunderbird 45.0 | 457 | Sunday, May 8, 2016 | Approved | |
Mozilla Thunderbird 38.7.0 | 7819 | Wednesday, March 16, 2016 | Approved | |
Mozilla Thunderbird 38.6.0 | 5891 | Monday, February 15, 2016 | Approved | |
Mozilla Thunderbird 38.5.1 | 6114 | Thursday, January 7, 2016 | Approved | |
Mozilla Thunderbird 38.5.0 | 2808 | Wednesday, December 23, 2015 | Approved | |
Mozilla Thunderbird 38.4.0 | 5568 | Wednesday, November 25, 2015 | Approved | |
Mozilla Thunderbird 38.3.0 | 5709 | Wednesday, September 30, 2015 | Approved | |
Mozilla Thunderbird 38.2.0 | 5565 | Friday, August 14, 2015 | Approved | |
Mozilla Thunderbird 38.1.0 | 4001 | Friday, July 10, 2015 | Approved | |
Mozilla Thunderbird 38.0.1 | 3321 | Thursday, June 11, 2015 | Approved | |
Mozilla Thunderbird 31.7.0 | 1904 | Tuesday, June 2, 2015 | Approved | |
Mozilla Thunderbird 31.6.0.20150405 | 3675 | Sunday, April 5, 2015 | Approved | |
Mozilla Thunderbird 31.6.0 | 813 | Friday, April 3, 2015 | Approved | |
Mozilla Thunderbird 31.5.0 | 2917 | Tuesday, February 24, 2015 | Approved | |
Mozilla Thunderbird 31.4.0 | 2580 | Tuesday, January 13, 2015 | Approved | |
Mozilla Thunderbird 31.3.0 | 2452 | Tuesday, December 2, 2014 | Approved | |
Mozilla Thunderbird 31.2.0 | 2458 | Tuesday, October 14, 2014 | Approved | |
Mozilla Thunderbird 31.1.2 | 1492 | Wednesday, September 24, 2014 | Approved | |
Mozilla Thunderbird 31.1.1 | 1088 | Wednesday, September 10, 2014 | Approved | |
Mozilla Thunderbird 31.1.0 | 1010 | Tuesday, September 2, 2014 | Approved | |
Mozilla Thunderbird 31.0 | 1578 | Tuesday, July 22, 2014 | Approved | |
Mozilla Thunderbird 24.6.0 | 1525 | Tuesday, June 10, 2014 | Approved | |
Mozilla Thunderbird 24.5.0 | 1567 | Tuesday, April 29, 2014 | Approved | |
Mozilla Thunderbird 24.4.0 | 1533 | Tuesday, March 18, 2014 | Approved | |
Mozilla Thunderbird 24.3.0 | 1118 | Tuesday, February 4, 2014 | Approved | |
Mozilla Thunderbird 24.2.0.20140131 | 536 | Friday, January 31, 2014 | Approved | |
Mozilla Thunderbird 24.2.0 | 892 | Tuesday, December 10, 2013 | Approved | |
Mozilla Thunderbird 24.1.1 | 647 | Tuesday, November 19, 2013 | Approved | |
Mozilla Thunderbird 24.1.0 | 666 | Tuesday, October 29, 2013 | Approved | |
Mozilla Thunderbird 24.0.1 | 648 | Friday, October 11, 2013 | Approved | |
Mozilla Thunderbird 24.0 | 622 | Tuesday, September 17, 2013 | Approved | |
Mozilla Thunderbird 17.0.8 | 702 | Tuesday, August 6, 2013 | Approved | |
Mozilla Thunderbird 17.0.7 | 630 | Wednesday, June 26, 2013 | Approved | |
Mozilla Thunderbird 17.0.6 | 611 | Wednesday, May 15, 2013 | Approved | |
Mozilla Thunderbird 17.0.5 | 584 | Wednesday, May 15, 2013 | Approved | |
Mozilla Thunderbird 16.0.1.2 | 722 | Monday, October 29, 2012 | Approved | |
Mozilla Thunderbird 16.0.1.1 | 469 | Monday, October 29, 2012 | Approved | |
Mozilla Thunderbird 16.0.1 | 485 | Monday, October 29, 2012 | Approved |
Mozilla. All rights reserved.
-
- chocolatey-core.extension (≥ 1.3.3)
Ground Rules:
- This discussion is only about Mozilla Thunderbird and the Mozilla Thunderbird 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 Mozilla Thunderbird, 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.