Downloads:
4,038,925
Downloads of v 128.7.0:
34,638
Last Update:
05 Feb 2025
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.7.0 | Updated: 05 Feb 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,038,925
Downloads of v 128.7.0:
34,638
Maintainer(s):
Software Author(s):
- Mozilla
Mozilla Thunderbird 128.7.0
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
All Checks are Passing
3 Passing Tests
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.7.0 --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.7.0'" [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.7.0'"
$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.7.0'
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.7.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller thunderbird
{
Name = "thunderbird"
Version = "128.7.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'thunderbird':
ensure => '128.7.0',
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 05 Feb 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
- 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|b5d1753e1e6a7e78ffb12bc0ee4f2c10915d140b8317c997f326e7dcff6b5a7feffa6caabfab165caf47d532e3ab0f9ded5d6ebd3f6e56b24cd7c19e2a53a231
ar|32|6ff2164e52fcdc8e8e64c55e41b608e99605529de5b4f95901aa2b89b89e9f1cca4e58f452abc301030a1e5f80548bd322b5d159f238d4217434edba2a53af89
ast|32|5fb9d3a2ddb28a6ff8508b7cf51cfa1e81c8e835d375f9233ae0ddf7c8c8545ee5b7036c6d61ed132be63bb9702ffb4d8113c237a3e855772566f885f059ace2
be|32|3c28e5b3eaede1943c04ff983e8647239dd7d0ca31954dcbff4e9b036f7a7dfe4ecead724b292cc0b3521261e84e78798b959860895e4a7190f4fae336ab2eff
bg|32|2b9843f0f2cbd469ea8090a3c849c6b15a3699967daa9fb00cdf110bf51744aa3cc21fe0d8e0c8d3da3af2e56c6295c79e6c360acdafe5dc883ddd677f2ce820
br|32|22979049c13fc47c8e04e84505e941db352da5a4a2f395a6c5afdc3d82ad76bf19eee0f6dffef37f7296fd0c50f23a6d78ca2ef4144b10b404f53a2e24ee23f8
ca|32|4fbcd0e84861be1f3a3e9b39933287060ec294a13305cf6859782a4c5a7fb55169376706ff37b567b3d48f2b4a5ee80424e3286f5e2dd57ae92fc15aff2d9af6
cak|32|d9e2269736b0435e9e5572beb22f41eaaf9d36e7dc865d6d52daa994a5a3c6efeac9103a14ee913f7a8b29d4b619c1336d46dcaf6bc2695c9065c28b8f4037fd
cs|32|c97c14fbd8247818873f2e9b791ac678e509d9728ad90ee2c7cb4c3d2cdc9a2af688a3fbce6ef8c70138a2bd163bb7838ff8442fbabe49fe686ad4d10c6dfa32
cy|32|1464a3b5a1c0f89a0ccaba471f2c1ce178e4b541e9441c572ed9482a98173534431fd738d4e970e9fb17f42e0ff5ba297b629a2f3236803f1cd591aacd6a14b8
da|32|ac598c4ce91139626168e99cd3c899d5a690c1b7a537553705afc4dd4ae30e298d622d27a0340955aaad68624846fe5422f5e0cc8279eca6bccedd23eff825d8
de|32|51f8ce84897c618cc1a55eeb101a9a1898f5f4eed4eb7cf9e4256fa5dcd5bf5ea3af40921a4c345240fa7e3fae3616010d62b013fc56d26affed66346c743195
dsb|32|9a09b10c7f06bead080b7edd337176ea2a3c1f5cc77fb87e0cdefe2185886f0230e13cf179fce6ca65cecea9c37a1fbbce240da10bf021375663a205fb7eaa8f
el|32|5384957a86f0ff822a9ca5a118746fc512ed80065c9a4c4c65064ef3b1c589ad610424f8c798d3303a5a81bd238a9766f01f8ad8616170dbf340b8eca1f82b5f
en-CA|32|f925ae8e4fa8e4de653f3517696b31c22a248385b2b4d81ea11ddeba48ee0f505dc7c345361575f1789e7117f0d9375ea11e072500e5654e2e2c924e2fca99cb
en-GB|32|5fc939f7ddea40cdb4a74c0e285ef2f7c6807a1052e3ed6d99f61f774afd6a3611f994c705ba816f7fb5f7702eb54ca59772f8b022e55cc28d069a92f1e77796
en-US|32|2e131546027cd0b6df0bf71907ca628fd2986231953f666457eb15c0d3351eea80fb95e204896d82d4c064f187d671b1c3820d38f191c5690122ea7790bc6117
es-AR|32|459e820830168e6db14f869a5133a2a7ee546c151904bad663f3c1de4c506597c6cbead5b96655ec4c75a50f11e52f9ce1fc50ced703b77f5c7f4ae9e124dc30
es-ES|32|fa5daebb284b973da59910905640bb7efffa7634509cd1c936c59f5a487166249d7eada16fcd5c15f5f0d74e523b572c7a03c237e20d47e6f18ddddb9afe8f13
es-MX|32|44dd9250bb6dc59c008bd512b50d819a805f68e0ae258db3116e808899051d10b43f1de1efb9419ff989cae0804345ffb4ec2023b5a759f6ec84180fb58db5f2
et|32|bcf2d22335df45fbd4131e6fc6c627a79281e54f874c6b93f92b4ffd6932ab5cb434f86cc5e0439b5f2093e70cba98fdc2b5e77c5f1504ac21f248ab7fbe80a3
eu|32|22c7480a16b472be5dbd88b50124400cd05a173132a27dc807d398839ec1c1bdeb506d0459cf2288a6b69a725246918e389c4a572a5712024bf5ba0e314b98b8
fi|32|4682bcdf73bde22f693bfcbfbf8a97d650302ffca620042f314acb910600ce016d754e32fe12c2c56c5e06b5d242f90307ffa3a5cc16f662e6fa7e290ba8cd41
fr|32|459229e4bc0925118b962292a9cb56f7034b945c5b884923cf2413c6b304d78c6925e8d4e0800cb42270e8c88b80b1eba42a8add59d3ec8150b9517a3dd603c6
fy-NL|32|c2aec548aed0f142bc53c3009e7fce8008c91ec0b07c28dcd01ad4835863029647eced9022b2cc091bba556d04cb3170ee42c36cf9bd13acb76d58fa1e405fdc
ga-IE|32|af6be093fca245196bafbb54d56a0a4744e0ce5b72827e7f6ba26ad9c8eaadd90326ec9c91a54e23c49c73222a5c444222452a9ae8fb20b331d8da888abdedfa
gd|32|a5d5262487826503418edd579f42298fef99aebc50276132e5bbc7b933654761a4f59b8aff5663348d485444b4fa7c41bb3bdf48beda9858890735c3aace2bd8
gl|32|e0557b9d091d9ae85e69749f31a6cec6b4cd1ecc62df1b1fa9daac78e5bd01ee7ebdbe1b6a972693e1c1734c9cff10056a98d72a3f6114fceacddd69f27e6078
he|32|86b21394d13367fd2069cb8f39bdbd8362aa4bb516ca83743a21d953bdf267f63d30b69857e58cfc8c913838a202368a22be5401b64d932097410c0c87dd5271
hr|32|49d96a55788435c55d3cfda0e457ca72af24c7b4662d52ded77917aa4d79ecef613fbc161bd0aad3554baea4cf86c033d52dec61c624ccf186e6db50dcaf08f9
hsb|32|c721ccc00de36448d46b2ea20719ee70f2f8e5d20d90267563d5d8bc147b733abae7c44d7d3343323e23aec0ac5c8a621a9ae4a42ed22c256623468e15991d11
hu|32|8bc069cd4f105646c21bfd37c59a1479f32a69963942f1687cab9998f45650b4d9f0c336a551fe545249bf2f7343eca95587345f57c1da4a70f9010a055bdeb8
hy-AM|32|766592ae13864ef1422269638a353968517792d17c62c8d0f9f888874a1bf8495cca8575f0636bcff5ad2c74f569cc087398af064b06e966bda05971374c9146
id|32|cf6fd96d40807f8cfcf799c2eda49513bb565c8cf3a684a32c4707d42f327ebfde893b1a52f79295b15f27efbccf98d01b2e0c8bfc4f55848528c5ab173aba11
is|32|d1d77d42bab1e0694ae87a014f011c7c84ee36985655b1372daa5c65c369551c08f1807030884483cd02984f979ed35862fd3a4c0f542b7367425150550d42fc
it|32|2fd0effadaee4c27dbba8d9082b7e2bebc7ce07c47f578ee61e9420ce7dc2b16f8eed1ada886aad55505f24bddc44c7d4bc75fd0cafdd67300ce5951cbc4b9d7
ja|32|203d2b3915b7345d248bf6381c6ae50897330eb526f66c4db295f9aef7536be42fde6c12ae9917cbda9a13f98260ea0c2607b798395f7221fb32df82e116d10e
ka|32|d60daa38649eb28ca64547999959ecd6331f6e4e59def8b8b52517e2ab932bc14bda31a8ce698d3003840b67307be46eca59d747b6f61cb4cd918642a8979e9e
kab|32|68cad236ec80d196b99f939add57f54ba3c5822a7a5bb8ab1336d1d67d0ec709831a9e3bd390c4dc24e23443d1c49ada5abba81d8324304036491538def121a7
kk|32|ff650ff88cc083536da4cb5284a6fe0e2482d687520c2a8b5531ecbecc248e2a197d6c4295ee56408f13d82cbf25e8844d66a353c05ead5cca9e65494ce3b9b9
ko|32|a4f5f55071417efbf55d70819264c3d30bf10407afdd1ae08b80c5975ba0f86bee31aab90bf76a92258eb8b3e788ac7735426eea41551d0781eae95c51906e08
lt|32|f3e600da48652bb68ab3e83971b2008d477d6de4b3f455466bb43161f4a92983e880edde4dd3325e796ba82915659ee2f64fef7a82707b2aa09dd54363b15457
lv|32|ac3c54202073e83555a894f4fd54404dd18a0baf5c722aa4d0e6185fe7a80f41f63b28f041f45c569eba090e896eccefc119b81d149fc343576d7a5e98ce3549
ms|32|bc347d0060dfc06a855d5ab2dde3ca7bb6bdf286fe34cf774d7da00716642370a099782e772bba6ecb0ae42d8d148ef3bbd3801c3de9e8f9168f69990b630f3c
nb-NO|32|e0fad119ff8e03f9e5b3e97a508be8639d4eda0faf878eb0548dc5c558458521cd4ef95428862d5c73b5fe2ebafc85bc8ddad60d81b2642d3782219be7a38bde
nl|32|d62406ec0b08bb96f13bc76aa1b80ef15db19a8c4a98588b1b9915da959cd86866b04683f84a5b5ddeb56568e234c3e666ba7c523a65030d0295767434081b9a
nn-NO|32|4854ac6770956e7dc55ddbd756c4cab30c9d33a35497b76bdc689b7d9c355642b3aaad1d511b30759a015595ace8fdc9633f00c691103e03d9dfd1c683cb95a1
pa-IN|32|c1c9b443a6dc13b69d45d6934fcacf08b150348967333ab7abf652d4761c4f018b4d4a52b6fc70a62805d223d81a0171969ab0b0781585f6ef4fdf55054ab3e0
pl|32|ba5245938c07b4bb427429385d65dafb97fa104e57a4e7638f317cc83b5755d83af3d23116a92f9737a35e246fab09e4c8e889c2fcaa211525eefcf0318099cb
pt-BR|32|91683bba27fde9356cad40853f3082ce45b82866184b9ab6519393a5bc34c4392aed4a5377349bdbbcfd9e9a2ae0f7419b2004a9f968bbd45e893d7353e7b837
pt-PT|32|ed7e2c0b89dfa1853f2b092b0d0f6f39307e5ef5dc8f5051406daec363a55da3cd337a09d8aa37bf3ec9e54dbf268e94f4268f72bf18eae3e184e7ee8771ac18
rm|32|ee3af7d308379e5d57a545205ce041dd0d762c027e116fbaec773707eb21a797e67d8f00e7a2b33df8aae55654625be8687d04da07e9c6afb7ab0c737cafaf9a
ro|32|80908d70c256b1feb68437360a7219b8e329a7cc8a962340f192f4f1dde3c98c57987507f68ee421df64bb82a7891516f71d98b35d3bb3dad4fe25c44c54913c
ru|32|b909655e125546241460d21dddab958a9ef1e8b587d717f5bf758a37e4ef51f91c1fb57d7afe17efdce42366075e56413a94973a51b7c538a9b5d7b9ebdaa543
sk|32|193b69404aa25da02d217673f577ff91b099cd4ca89c6d9423b30badc2b8390838b27012b723519b22ab8cf29ff4632139fd17aa705c95315485cf1c6fb00dd8
sl|32|365a3bdc06e328b71c668e399bb23ad8fd9ad48ca13335ec7d58642445b288c12e40ad621390ebaeaf97a57efbbfd21c6b2ebb50ba6fceaa9799eb3510eb8f65
sq|32|eab17b60b7cd20916d660d9fa6dc80672722f87de56354a57637fb5c1d575229ae9ca9ad746974ba71288db2d006860d2a3eb2204ef959606f145419ffb47c43
sr|32|368ae09e719ab80157de495456607de029a954715bda781288fed2ad442d49bea3b21961e37088b43162e0aae98ce6c0e15d3514fa0044a0d95ae8f161297461
sv-SE|32|11f3d1bf5bc8ccfb2a3ef10f2115bf2d716e4187d280e0a32d875738d1b65941910c85b1b2da436be0b52984f36985717f99b7698344624455dee1c06610b6c7
th|32|bc2e38a09bf3bd3db389716f7ae1810329e6b6b4927282d9c20e86d5301cd86138684cc718ff42668f31da2106951140a22c50d1c0cc25bca6da86d17f3899bf
tr|32|acbb0523ecdac9122c87409057a87bfea97d788703ad96f9de107992076211392032e800807c9a44908be4b9b758f6eb63846f0ca8a46f1118c5d10fb9c64ff9
uk|32|a6354a1b560c3a9d0c4b248dcf18e0722bd8b8daaf8f3fdece344cf8c69608e3c779db3bd5ad5dc3bc1d777e7d7eb08d5fa3b1831872b9258b83ae5d7ff276b6
uz|32|712ad531dadf56555aa490cd82a99e81245acadcb91d938bab6597a726c961afff5f2b8e257063704c8eeb6770ce27d80398ee935156778b5a856c36ef3b6044
vi|32|6574e53576ffaa3b13e25729f1fa701757aebb4a1de914a39c328c43b3ec2f077451472d2b7154c68a78ebdc213ddcc1de483eb573eb53f5bf1436b7357f1dd3
zh-CN|32|e4ae829e585d53e3a0eacd06eedfb625c50457ea623c360567b0775c9c7d40fc896a7f927a8ae7effa7356e91e9f33bbcb501437ba9c9bcb0361ed8a2a854c98
zh-TW|32|f306306f8731e658719c6d4695668d661394e5cb532401fcde39b1171eb85eec764944677b6fbb8ab09fbc68778238d5fe401090bfeca9d55a5a3afb2791f348
af|64|ba4b59fd0c006d360c85cdcbc1d626e64962e1e24c1567dbe171003b803452de4303c2ec7cd3f74a2b048006c19c1a701813390e8537501c3d596e65a85b24df
ar|64|2d6f2fc64bf2e3baf0bb9e080b74c70ca4bf035b8767b620ea6606f4be7b53549f4ebeea3a31120c4338e6057f41687033eaaac9a5b45148a62dd4417b51640c
ast|64|194ad65a6b791cb21a576031a9e546d6d418b6b15ad7c2aba01661463d26ee19702a6019df4aada08adc562e9c5857b07e90813f4f083e0322a172f6d9d1fa36
be|64|e9c4bcf5871af5dc9b1db69776f4cce59c6a8d05f079389ecd138be98adf2cf6baf6f86d4770ceff0dc02c8e81c643906b9b3a49fe8d09153e2d3ca06d43fd2d
bg|64|20df9db4f86ee9e092894bffbd1d771443569a4d1cd7b3201c5f7321a83fb3ed2a25efaf69835c34e77a1b59cfec83449ae6a75a60a8f45087d210dd5b0d5a40
br|64|0d197d55631d832e81a376f633e4ad744a51ea93a840c7e373cd26d1de2febef74c38c686d8a9dc91ae1f0ec4bbbf12a129417536c7dec341679c37945ddf0ea
ca|64|1bca79ade724bb1c0f30665a4aa5bd11ab3b73a43488cecde42bd96b5d3d77ad6810854d273455de70817c0201bb346da9e8f4881380fec46587d9884ba709d5
cak|64|f67b4a9b58982f2f88afb81cc12eccd83bb6a6270b5a3660a34eadac9631674593b987badc1d37fc5c144093cf1988e48a383748012c70fe13bc8fd5cf3b0270
cs|64|e7028255bbe50c7b18d0c5c98f1dc6a69a41787f7002a17dc5361a02204c4e5cb964e3f9bd574af05fc166f3b7dc3be2592aa19059b94275b07f72434aec346b
cy|64|fc5b3681410010417bbcef80575f0196a36aec3585d902ff9e680bdcc620f1ab51e4c8b0486e548d99d2713d2a0bdd8a84831cc2f778e025a45d93f7dcb10973
da|64|2b22efcad2b4472020052038c469c16ed97fd9ec43c591bd3abc0274a28598fe46db32367cd654641b3119549fd2dc7a216f29bb59e6962789275c5b2d32878a
de|64|e2eb437185534c87af2e3c80aaa151ad2368297d6680f1ad3b77e76e556c90cb10d83116b190b70229f773e591994e09b611fbde8ce5968ec1bc2066d9ce591f
dsb|64|919962c1334f7a56bde14319969d0a5c672cec8883351dcd739e8534a8c9d22f1a430f42b2fbc39e41956c6051342adf4ef3adc8e67759457d086e7556891b9c
el|64|ed3db835182b156e2394d3122b78e71a091252a6dbf9ea399c3f669724e6cf59ea851c18d7ab716d62c1755cd2f9035251dd8af21115ac72568060434bd42db2
en-CA|64|4fddfaa3776d5d42455a9acee3c6d777e35750f017a239cd8e5fa25433ba026afb05054912ceee559d4841e88fdb0e73fe4f7bac1f651ec2dfc7a2fc5246632b
en-GB|64|e034bd4edb3c6a8cc93450bb282f7f0dda85088b1d582e3628a249ff1e099a4b33b92ec2b71c17a5fe2fd3d6d6025608b551a0bd1bae52c289a87797be8ebfcb
en-US|64|6e92c76ab88f2b15e2b02fc563dd500bff781ad5faf28a3c979037efe2d225cccb14e9fbc482aa66b8f30e147ee7f5df54c63f8aeaa3ad9d37506f0b94c49d00
es-AR|64|5f3b1f83c38bd3e8f6680142d67a5469b5f71a1dd75a1ea65afcb41b55511e8e628de548581ca92ec2dc7a7e349cbe78eb4210becf096c068ae827fafd0a3841
es-ES|64|ae8ef9e6f98ce7839194be67b4c861c24f1135bde8fea975fe40d65e904f2c8c1664a3503557d46b6ce842f210061908fd16ff0ad71ec4d367045dbdea6f6441
es-MX|64|ef981d5bc7bcd81b6974774b1f20f29773d160d240989bed4e207f70b1c2087b0dfdb1604a5e96eab9ab1b6d966bbfd4529762c02be272eb13625e980c8a1ace
et|64|528af2a00d4fd260a479cc40e3de577c2095dd0346d6edb7496a5124dd86b0c181742d3e0935ed24531c736dd006cb79fb0fbf0277747ff8e47bb83707a2cd8f
eu|64|2df720488a7fd5987fa82d6d11b3663ddd4b5f8f1cb49c3b48f2347fccb41c000da14f70c94d7cd7528e6c060f1b090aa369356b8a0745eaab524ed88ddce17a
fi|64|f08e44af979471f50db9aac8f7fa23187a0c99baa048770e291e7f06ef1f43d88c1fd1a5d8ad86d3cfcd5d134c90d51efe019fcba8365986db9935271fad03c4
fr|64|de021581617ad316d5e99842b7c1e84f856e76a7d5b5b5e43c5d59e4dd7b5a47079990f40c8047cc0c56418ebbdfbeefb0ae60331c355594b6eb5147b3e9ceda
fy-NL|64|2382a8b3d042018776c1b8b034e4c15b61d1f0dbad80217437ce92677cfdd3a9de5680ac0b160fab57bf21ac71d2e2ae5345f38cfc106c674e196d5f82cd3d3a
ga-IE|64|df2d5a9f41f3f82d428b2186237e542f81e2395664747eaf378078a94757466c004295094069831394ac4b55b3f6f615a5bd0e5a6ab7d0f4517a31d6184627ce
gd|64|a3355db6f4c0f0a95dc3463494caebac7d382dd677501f889d9eefd40fa0b229c7ea35c051c35f0fadd6cc7fc798494a06d64e1093abe38aaefa2c2117f4fc68
gl|64|1e7d98d99aa9b3adfff6cea69e1126225e559203e1eaff41a900dce05c37cb3212b5b729af22197148f68e6665dea0cb23db3177843739df7255d546fbfd106b
he|64|3fe565d535cb336699d81ebc0209f3461e9dd5ff9be855b61d7c1f6ac0e1d6a6a01ae1856a217791e685c6d26dd58363296d150b869c461c552b431e4208fa10
hr|64|8e37cb292dd8df7734d7f693ab4e26a46d6698aa58fbae5ddb7c07c1e987c5ad94952eac003119c45720ef63026f798388e20e86619072a7c05d36217873f4d2
hsb|64|1176551121b69d233e2c84cb098e8e87712dcda390c752aac2c65abb74d22b82c58a757add2b56ac32b25c15b193d7395d5c7aaab8f49cb42aae6050ee961e94
hu|64|4cb78d3b27ad526e902cbcf9a97d39534447370ec9341a295fd62d75d446dc036b0d47b48c3ca57e4ae550dbf6165ca6485cdb616b8fb50a7eb0044546536a99
hy-AM|64|d03f9d15cd160826b7275bc7986fb3dcbf0d956555dcb54c7c1ffdd01f7259ea24137b5efeac595e8d16cded54ad6751714b19633c5f9f8d65c8320ce0384c97
id|64|3d7e54aadb8d6b3064da3b3b6f5638aa6567b42e5a34c9e647a07caf5a6f76b8e4abea28836b2ebb6e7a6b237c88cec90f1eb273f1e55be9bb58c71b65ea6555
is|64|b56ddd71035a3c6f9f47f753a1950b4f80150e9619cf24ab786dc53636d2bea5f65a008d5508e2d182bae3b6e098899a17c2491bae5e49507954609f3cf4f9a2
it|64|18bdb90acbab13287e7552bdfa68e95e10bb66cddcc3cfd44e724571254d0fb015aa8e3c4b4abdd836b8a5ed8b27bac1f1eba8ddb361b8bf4122fc4fb57f976c
ja|64|2a99d40f3ee32e0b459aa17d3d1ce1b3f2eb6b3133bc93068f27945dd860b8d1f4e2bcf3f0db2fe93dfcca7addc904cc04dee3ece50964d641e3f90fb474f8b7
ka|64|b05b4153a7c288808d302ce25beb24310197b3418d5eec64e4d31ddfea9fc63abf8b45e98effea52b5afb88f44a721d54ed2bc1c1f4bc7d85704afb958db6660
kab|64|a6a4f5fa61d1f99b1885d4ee139f000115971700e2ea1aee93947778c5da6cc43f0094989191c2fc0c42e0854484aff86a9386f2f7f38ae4733e1ef0041351cd
kk|64|e8f77b40e2ffa68334e1b88bda3295b0077e23881621184231523ade636603b5b57694a8113ad5e01b89b248cbeb611f26a4056f0af510de310c6b545bc4bfef
ko|64|fcf52ad08f89bf8ae13d44c9ed009180d5ac5f9715db6473cf73c21b6f857f30aa0e34ac07adb041ff96a57810837aeb565773cd8c7270bc1197e53ffb8e6d83
lt|64|649a55707c0927878a2a0c0c2c3346d9d0ffc4d5321e1ffb72efac8eb2af783aec75ca88b28fe22bc16db032a09ad7e7fc6e1e24c2c6f608a4f75d76d8fe7c9c
lv|64|bbcc2abf7b5f51f358588bdbc03ba7cb97165e58aee05d1cb57f3beab430ffb6f9ef43f5784a2c2a317ad0f95156d853767f518ff872c219054e454f69ba4f06
ms|64|d4f85a0fb969559dc4f027d5d0ffb2364c9b89e882b389ee7dcd9ccf8c66490c1e24092ae8144b2795ea17aa2c6220530ec6fa4c33090ea8ba4913b3db99dfd1
nb-NO|64|32105656c058ece92f30e2f12f21dcf0eda3b7db6baf7579f5af09f638bdb93b3eb9c71f4bcac2b00cda202f33748e8af6184d31f908b43fbcd67103101a8e74
nl|64|240e8f3f1852ae1394b5e9e57d7f1d5583a4527547928cab57e2d52e29199ae9f403421b6350e04af3a2431607ed5cfde1bb2868b4b9ae69b809a9e26d9fe61d
nn-NO|64|0753489e3b36ba11c272e51887cb90bd099c86e9e7a1ba397ebb6dfd6b4edf5d5c1a0bd24a9d0b122a5badb9c0c9a0b32c6be137bf30660a8391092922611891
pa-IN|64|dab150137fc0ca3664b350e35a7054436ef0f2a0140714246ccbe027fe0778614bbff6bf379eb48f07e6b0bc8b110d839387b239ba3df661883a4bd28d32e430
pl|64|4ef13cfa2a5b49d9a96787169039742ecc1728516346e9793dce8c28cf03193faa0d192cd0751822450533fc5448e0f5fba12f27db72aaf94007c41ccf59d59e
pt-BR|64|daf3545b36cc7644e9d39ea16257e48356f25121dfad205886ca6da50a4360c770d4827888ec23edbba59c5625278199011c667b35a5429ec41ccac45f739438
pt-PT|64|03bfb5bc0838f548c5101094df2c675f004c167b5e5016c6fc22796bcbec7c155f92b393192f014fe5ea37a12f56cb96c41961e7527a632a5f62f789df69269a
rm|64|ff006b64ea4f05280598816dda347d7a64a22a822f554064e7a423a2d15fce0330e02099aa3b0be5ca01337703262886eae2429c078fcace4cc1f4f3ecaee3be
ro|64|1f866dcf3bc60a613f7be7b683415eae5f9b5c79bf1c44762f5d5c6fae0eaef8b0000f2965cef3c382978d9f943a1fb3a591241bdc07b4846974b42a67f5bbd3
ru|64|c01665c769d0fce54d351da2ce81d42a84005e4ccf2a173e71ffa2cb602479bb074ec3e091e69fad2e0dbb0ef802f02c675f9ba3ffd75d0cf4cc325344e7cc38
sk|64|f1a381bf44a9c3706e19e8442b1f7020cfe76ac8b8a7481da3ee242f463fa2e52b78cfe97dbdad03a793dce33b5d3a7c0420d159cfa1104028845e5724795d98
sl|64|3bb420c8db86ff0e73df1a492ebb68fa05d385079642b3f63c9062f02f3df756b0cec665abef8fd87d9e7df1c51babc3878cda434d6e316fe6d4a4a666e1d7e4
sq|64|612b8174a37e7017321f976ae036a8cda092c67ac1eb53a5884cb8f031f478f9d8985986e05b655524add2c8cc80197c077af315989afcaa866226ca0ad444a1
sr|64|ef1fa601bf525491baa2b5669148e1c8705c2b1028d7d419a94823eb8b20c71f6d55470721857490b6b7dc1b12aac066a57044359beffff4c77dcfe5961e2f7e
sv-SE|64|9ab2374646df1ecb71c205df81316a9f87ef97f89fb8541228df9ee221d3c32f6731f5b0b987cfebc97db6fa80da7ab99c0809e7becab79e1ad0e4c12ed5ddc2
th|64|9d24b64d43a1e77b622d5412514e1d82bb3b7d0462a1093fce55fbeaadd7a87264d83c49f77a25633f45a22febeec7fa3373a26b21b9cc08abbe98ad876f43ea
tr|64|76c6b1c94b6eb981b9c93dc9176fda83cbbd1afdff5106fc6629f3fb22b30dd9ee53df7d6bacdde98589456727efdff4720575ead200e035e42849ceb19df786
uk|64|2dd1b68f1cebff343d49226e3b2cd693435e11e2270aeebee3ee0f66985649e3b9a3427beffd7439b8e249a039c6833c5d20e0f48e2006ae2082fdec8ae0b34e
uz|64|8b33c3f773b26181b2114b7f21c5fe17d1a8f710f9374f62d1f39e70ea22f829eb73d439e9840ca3d27e84bae52a0f851eee0c32110d3fa13032835153abdaec
vi|64|0ba2239b04b97c67698aeebf21ad777c406580920bcdaa8e2be4f5a978ebda0d032920c9578d347c8377044ff225fa0af2699a415ef1aac131077b5fa6ce5b43
zh-CN|64|81aa1e38095a6152cc26050aebdc262206a6a5c1b9df484c5485a8c4a083862b12e520c6d2d750021347f1e1aa10346cec9fefeccfeda530773fbbf910c3093c
zh-TW|64|8c0622919d1ef85f8676d28125b846aabdcc7e48ab2746bee33fa2c4f46e58bd5cad854362b23b20708c3c5790e2b714c5491d99dc7594172791c62d9bdd534b
Log in or click on link to see number of positives.
- thunderbird.128.7.0.nupkg (c7ce25cd1b62) - ## / 65
- Thunderbird Setup 128.7.0esr.exe (4d8179ce5614) - ## / 55
- Thunderbird Setup 128.7.0esr.exe (dd85e1eed1e2) - ## / 50
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.7.1 | 29075 | Wednesday, February 19, 2025 | Approved | |
Mozilla Thunderbird 128.7.0 | 34638 | Wednesday, February 5, 2025 | Approved | |
Mozilla Thunderbird 128.6.0 | 46233 | Thursday, January 9, 2025 | Approved | |
Mozilla Thunderbird 128.5.2 | 41746 | Wednesday, December 11, 2024 | Approved | |
Mozilla Thunderbird 128.5.1 | 23885 | Tuesday, December 3, 2024 | Approved | |
Mozilla Thunderbird 128.5.0 | 29567 | Wednesday, November 27, 2024 | Approved | |
Mozilla Thunderbird 128.4.4 | 26246 | Wednesday, November 20, 2024 | Approved | |
Mozilla Thunderbird 128.4.3 | 26496 | Wednesday, November 13, 2024 | Approved | |
Mozilla Thunderbird 128.4.2 | 25342 | Thursday, November 7, 2024 | Approved | |
Mozilla Thunderbird 128.4.1 | 16080 | Tuesday, November 5, 2024 | Approved | |
Mozilla Thunderbird 128.4.0 | 18702 | Wednesday, October 30, 2024 | Approved | |
Mozilla Thunderbird 128.3.3 | 24463 | Friday, October 25, 2024 | Approved | |
Mozilla Thunderbird 115.12.2 | 74186 | Sunday, June 23, 2024 | Approved | |
Mozilla Thunderbird 115.12.1 | 13984 | Wednesday, June 19, 2024 | Approved | |
Mozilla Thunderbird 115.11.1 | 30076 | Wednesday, May 29, 2024 | Approved | |
Mozilla Thunderbird 115.11.0 | 24318 | Thursday, May 16, 2024 | Approved | |
Mozilla Thunderbird 115.10.2 | 25285 | Wednesday, May 1, 2024 | Approved | |
Mozilla Thunderbird 115.10.1 | 23217 | Friday, April 19, 2024 | Approved | |
Mozilla Thunderbird 115.10.0 | 11919 | Wednesday, April 17, 2024 | Approved | |
Mozilla Thunderbird 115.9.0 | 34114 | Tuesday, March 19, 2024 | Approved | |
Mozilla Thunderbird 115.8.1 | 27841 | Tuesday, March 5, 2024 | Approved | |
Mozilla Thunderbird 115.8.0 | 27150 | Wednesday, February 21, 2024 | Approved | |
Mozilla Thunderbird 115.7.0 | 36247 | Wednesday, January 24, 2024 | Approved | |
Mozilla Thunderbird 115.6.1 | 27400 | Tuesday, January 9, 2024 | Approved | |
Mozilla Thunderbird 115.6.0 | 29865 | Tuesday, December 19, 2023 | Approved | |
Mozilla Thunderbird 115.5.2 | 22389 | Tuesday, December 12, 2023 | Approved | |
Mozilla Thunderbird 115.5.1 | 27061 | Tuesday, November 28, 2023 | Approved | |
Mozilla Thunderbird 115.5.0 | 18734 | Wednesday, November 22, 2023 | Approved | |
Mozilla Thunderbird 115.4.3 | 20205 | Wednesday, November 15, 2023 | Approved | |
Mozilla Thunderbird 115.4.2 | 22783 | Wednesday, November 8, 2023 | Approved | |
Mozilla Thunderbird 115.4.1 | 26043 | Thursday, October 26, 2023 | Approved | |
Mozilla Thunderbird 115.3.3 | 20829 | Wednesday, October 18, 2023 | Approved | |
Mozilla Thunderbird 115.3.2 | 22165 | Wednesday, October 11, 2023 | Approved | |
Mozilla Thunderbird 115.3.1 | 24356 | Friday, September 29, 2023 | Approved | |
Mozilla Thunderbird 115.3.0 | 12380 | Wednesday, September 27, 2023 | Approved | |
Mozilla Thunderbird 115.2.3 | 19568 | Thursday, September 21, 2023 | Approved | |
Mozilla Thunderbird 115.2.2 | 21724 | Wednesday, September 13, 2023 | Approved | |
Mozilla Thunderbird 115.2.1 | 6767 | Tuesday, September 12, 2023 | Approved | |
Mozilla Thunderbird 115.2.0 | 25441 | Wednesday, August 30, 2023 | Approved | |
Mozilla Thunderbird 115.1.1 | 26003 | Wednesday, August 16, 2023 | Approved | |
Mozilla Thunderbird 115.1.0 | 24939 | Wednesday, August 2, 2023 | Approved | |
Mozilla Thunderbird 115.0.1 | 27120 | Thursday, July 20, 2023 | Approved | |
Mozilla Thunderbird 115.0.0 | 23790 | Wednesday, July 12, 2023 | Approved | |
Mozilla Thunderbird 102.13.0 | 16029 | Saturday, July 8, 2023 | Approved | |
Mozilla Thunderbird 102.12.0 | 35824 | Thursday, June 8, 2023 | Approved | |
Mozilla Thunderbird 102.11.2 | 25009 | Saturday, May 27, 2023 | Approved | |
Mozilla Thunderbird 102.11.1 | 11251 | Thursday, May 25, 2023 | Approved | |
Mozilla Thunderbird 102.11.0 | 27778 | Wednesday, May 10, 2023 | Approved | |
Mozilla Thunderbird 102.10.1 | 29025 | Tuesday, April 25, 2023 | Approved | |
Mozilla Thunderbird 102.10.0 | 27127 | Tuesday, April 11, 2023 | Approved | |
Mozilla Thunderbird 102.9.1 | 26576 | Wednesday, March 29, 2023 | Approved | |
Mozilla Thunderbird 102.9.0 | 25507 | Thursday, March 16, 2023 | Approved | |
Mozilla Thunderbird 102.8.0 | 35717 | Thursday, February 16, 2023 | Approved | |
Mozilla Thunderbird 102.7.2 | 21440 | Wednesday, February 8, 2023 | Approved | |
Mozilla Thunderbird 102.7.1 | 19947 | Wednesday, February 1, 2023 | Approved | |
Mozilla Thunderbird 102.7.0 | 24116 | Friday, January 20, 2023 | Approved | |
Mozilla Thunderbird 102.6.1 | 36222 | Wednesday, December 21, 2022 | Approved | |
Mozilla Thunderbird 102.6.0 | 20257 | Wednesday, December 14, 2022 | Approved | |
Mozilla Thunderbird 102.5.1 | 25177 | Thursday, December 1, 2022 | Approved | |
Mozilla Thunderbird 102.5.0 | 26045 | Wednesday, November 16, 2022 | Approved | |
Mozilla Thunderbird 102.4.2 | 24284 | Friday, November 4, 2022 | Approved | |
Mozilla Thunderbird 102.4.1 | 20813 | Thursday, October 27, 2022 | Approved | |
Mozilla Thunderbird 102.4.0 | 16178 | Thursday, October 20, 2022 | Approved | |
Mozilla Thunderbird 102.3.3 | 20328 | Wednesday, October 12, 2022 | Approved | |
Mozilla Thunderbird 102.3.2 | 18403 | Friday, October 7, 2022 | Approved | |
Mozilla Thunderbird 102.3.1 | 18915 | Thursday, September 29, 2022 | Approved | |
Mozilla Thunderbird 102.3.0 | 19833 | Wednesday, September 21, 2022 | Approved | |
Mozilla Thunderbird 102.2.2 | 23205 | Thursday, September 8, 2022 | Approved | |
Mozilla Thunderbird 102.2.1 | 18011 | Thursday, September 1, 2022 | Approved | |
Mozilla Thunderbird 102.2.0 | 19385 | Tuesday, August 23, 2022 | Approved | |
Mozilla Thunderbird 102.1.2 | 22253 | Tuesday, August 9, 2022 | Approved | |
Mozilla Thunderbird 102.1.1 | 11494 | Saturday, August 6, 2022 | Approved | |
Mozilla Thunderbird 102.1.0 | 17262 | Friday, July 29, 2022 | Approved | |
Mozilla Thunderbird 102.0.3 | 18741 | Wednesday, July 20, 2022 | Approved | |
Mozilla Thunderbird 102.0.2 | 19799 | Tuesday, July 12, 2022 | Approved | |
Mozilla Thunderbird 102.0.1 | 14137 | Thursday, July 7, 2022 | Approved | |
Mozilla Thunderbird 102.0 | 20724 | Wednesday, June 29, 2022 | Approved | |
Mozilla Thunderbird 91.10.0 | 31616 | Wednesday, June 1, 2022 | Approved | |
Mozilla Thunderbird 91.9.1 | 21194 | Friday, May 20, 2022 | Approved | |
Mozilla Thunderbird 91.9.0 | 26226 | Wednesday, May 4, 2022 | Approved | |
Mozilla Thunderbird 91.8.1 | 24118 | Tuesday, April 19, 2022 | Approved | |
Mozilla Thunderbird 91.8.0 | 22334 | Wednesday, April 6, 2022 | Approved | |
Mozilla Thunderbird 91.7.0 | 30237 | Thursday, March 10, 2022 | Approved | |
Mozilla Thunderbird 91.6.2 | 14330 | Sunday, March 6, 2022 | Approved | |
Mozilla Thunderbird 91.6.1 | 23276 | Friday, February 18, 2022 | Approved | |
Mozilla Thunderbird 91.6.0 | 19949 | Wednesday, February 9, 2022 | Approved | |
Mozilla Thunderbird 91.5.1 | 23633 | Tuesday, January 25, 2022 | Approved | |
Mozilla Thunderbird 91.5.0 | 22112 | Wednesday, January 12, 2022 | Approved | |
Mozilla Thunderbird 91.4.1 | 25600 | Monday, December 20, 2021 | Approved | |
Mozilla Thunderbird 91.4.0.20211214 | 16818 | Tuesday, December 14, 2021 | Approved | |
Mozilla Thunderbird 91.4.0 | 18908 | Tuesday, December 7, 2021 | Approved | |
Mozilla Thunderbird 91.3.2 | 27034 | Friday, November 19, 2021 | Approved | |
Mozilla Thunderbird 91.3.1 | 14300 | Tuesday, November 16, 2021 | Approved | |
Mozilla Thunderbird 91.3.0 | 22552 | Wednesday, November 3, 2021 | Approved | |
Mozilla Thunderbird 91.2.1 | 22539 | Friday, October 22, 2021 | Approved | |
Mozilla Thunderbird 91.2.0.20211014 | 17846 | Thursday, October 14, 2021 | Approved | |
Mozilla Thunderbird 91.2.0 | 19189 | Friday, October 8, 2021 | Approved | |
Mozilla Thunderbird 91.1.2 | 22934 | Tuesday, September 28, 2021 | Approved | |
Mozilla Thunderbird 91.1.1 | 21714 | Friday, September 17, 2021 | Approved | |
Mozilla Thunderbird 91.1.0 | 20848 | Tuesday, September 7, 2021 | Approved | |
Mozilla Thunderbird 91.0.3 | 20698 | Thursday, August 26, 2021 | Approved | |
Mozilla Thunderbird 91.0.2 | 10497 | Monday, August 23, 2021 | Approved | |
Mozilla Thunderbird 91.0.1 | 14212 | Tuesday, August 17, 2021 | Approved | |
Mozilla Thunderbird 78.12.0 | 28803 | Wednesday, July 14, 2021 | Approved | |
Mozilla Thunderbird 78.11.0 | 31927 | Thursday, June 3, 2021 | Approved | |
Mozilla Thunderbird 78.10.2 | 21088 | Tuesday, May 18, 2021 | Approved | |
Mozilla Thunderbird 78.10.1 | 19277 | Wednesday, May 5, 2021 | Approved | |
Mozilla Thunderbird 78.10.0 | 21016 | Monday, April 19, 2021 | Approved | |
Mozilla Thunderbird 78.9.1 | 18541 | Friday, April 9, 2021 | Approved | |
Mozilla Thunderbird 78.9.0 | 19291 | Wednesday, March 24, 2021 | Approved | |
Mozilla Thunderbird 78.8.1 | 21167 | Tuesday, March 9, 2021 | Approved | |
Mozilla Thunderbird 78.8.0 | 18901 | Wednesday, February 24, 2021 | Approved | |
Mozilla Thunderbird 78.7.1 | 22980 | Saturday, February 6, 2021 | Approved | |
Mozilla Thunderbird 78.7.0 | 17649 | Wednesday, January 27, 2021 | Approved | |
Mozilla Thunderbird 78.6.1 | 20341 | Tuesday, January 12, 2021 | Approved | |
Mozilla Thunderbird 78.6.0 | 20539 | Monday, December 21, 2020 | Approved | |
Mozilla Thunderbird 78.5.1 | 20601 | Friday, December 4, 2020 | Approved | |
Mozilla Thunderbird 78.5.0 | 18741 | Thursday, November 19, 2020 | Approved | |
Mozilla Thunderbird 78.4.3 | 14922 | Wednesday, November 11, 2020 | Approved | |
Mozilla Thunderbird 78.4.2 | 10889 | Tuesday, November 10, 2020 | Approved | |
Mozilla Thunderbird 78.4.1 | 9289 | Friday, November 6, 2020 | Approved | |
Mozilla Thunderbird 78.4.0 | 20232 | Thursday, October 22, 2020 | Approved | |
Mozilla Thunderbird 78.3.3 | 11747 | Saturday, October 17, 2020 | Approved | |
Mozilla Thunderbird 78.3.2 | 17185 | Wednesday, October 7, 2020 | Approved | |
Mozilla Thunderbird 78.3.1 | 16222 | Saturday, September 26, 2020 | Approved | |
Mozilla Thunderbird 78.3.0 | 5316 | Friday, September 25, 2020 | Approved | |
Mozilla Thunderbird 78.2.2 | 18598 | Friday, September 11, 2020 | Approved | |
Mozilla Thunderbird 78.2.1 | 16620 | Sunday, August 30, 2020 | Approved | |
Mozilla Thunderbird 78.2.0 | 9597 | Wednesday, August 26, 2020 | Approved | |
Mozilla Thunderbird 78.1.1 | 18448 | Saturday, August 8, 2020 | Approved | |
Mozilla Thunderbird 78.1.0 | 10150 | Monday, August 3, 2020 | Approved | |
Mozilla Thunderbird 78.0.1 | 14079 | Wednesday, July 22, 2020 | Approved | |
Mozilla Thunderbird 78.0 | 10435 | Friday, July 17, 2020 | Approved | |
Mozilla Thunderbird 68.10.0 | 17244 | Wednesday, July 1, 2020 | Approved | |
Mozilla Thunderbird 68.9.0 | 22082 | Thursday, June 4, 2020 | Approved | |
Mozilla Thunderbird 68.8.1 | 14126 | Monday, May 25, 2020 | Approved | |
Mozilla Thunderbird 68.8.0 | 18451 | Tuesday, May 5, 2020 | Approved | |
Mozilla Thunderbird 68.7.0 | 21922 | Thursday, April 9, 2020 | Approved | |
Mozilla Thunderbird 68.6.0 | 19705 | Friday, March 13, 2020 | Approved | |
Mozilla Thunderbird 68.5.0 | 28056 | Wednesday, February 12, 2020 | Approved | |
Mozilla Thunderbird 68.4.2 | 21248 | Saturday, January 25, 2020 | Approved | |
Mozilla Thunderbird 68.4.1 | 18643 | Friday, January 10, 2020 | Approved | |
Mozilla Thunderbird 68.3.1 | 18203 | Tuesday, December 24, 2019 | Approved | |
Mozilla Thunderbird 68.3.0 | 13385 | Wednesday, December 4, 2019 | Approved | |
Mozilla Thunderbird 68.2.2 | 35010 | Thursday, November 7, 2019 | Approved | |
Mozilla Thunderbird 68.2.1 | 16936 | Friday, November 1, 2019 | Approved | |
Mozilla Thunderbird 68.2.0 | 12500 | Wednesday, October 23, 2019 | Approved | |
Mozilla Thunderbird 68.1.2 | 17555 | Thursday, October 10, 2019 | Approved | |
Mozilla Thunderbird 68.1.1 | 17728 | Wednesday, September 25, 2019 | Approved | |
Mozilla Thunderbird 68.1.0 | 17584 | Wednesday, September 11, 2019 | Approved | |
Mozilla Thunderbird 68.0 | 26012 | Wednesday, August 28, 2019 | Approved | |
Mozilla Thunderbird 60.8.0 | 34732 | Wednesday, July 10, 2019 | Approved | |
Mozilla Thunderbird 60.7.2 | 18433 | Friday, June 21, 2019 | Approved | |
Mozilla Thunderbird 60.7.1 | 11156 | Thursday, June 13, 2019 | Approved | |
Mozilla Thunderbird 60.7.0 | 20056 | Wednesday, May 22, 2019 | Approved | |
Mozilla Thunderbird 60.6.1 | 45067 | Monday, March 25, 2019 | Approved | |
Mozilla Thunderbird 60.6.0 | 8137 | Wednesday, March 20, 2019 | Approved | |
Mozilla Thunderbird 60.5.3 | 11782 | Tuesday, March 5, 2019 | Approved | |
Mozilla Thunderbird 60.5.2 | 8119 | Tuesday, February 26, 2019 | Approved | |
Mozilla Thunderbird 60.5.1.20190217 | 9154 | Sunday, February 17, 2019 | Approved | |
Mozilla Thunderbird 60.5.1 | 4691 | Thursday, February 14, 2019 | Approved | |
Mozilla Thunderbird 60.5.0 | 10686 | Wednesday, January 30, 2019 | Approved | |
Mozilla Thunderbird 60.4.0 | 15344 | Friday, December 21, 2018 | Approved | |
Mozilla Thunderbird 60.3.3 | 9188 | Tuesday, December 11, 2018 | Approved | |
Mozilla Thunderbird 60.3.2 | 9276 | Friday, November 30, 2018 | Approved | |
Mozilla Thunderbird 60.3.1 | 11088 | Thursday, November 15, 2018 | Approved | |
Mozilla Thunderbird 60.3.0 | 10581 | Thursday, November 1, 2018 | Approved | |
Mozilla Thunderbird 60.2.1 | 16942 | Wednesday, October 3, 2018 | Approved | |
Mozilla Thunderbird 60.0 | 24472 | Monday, August 6, 2018 | Approved | |
Mozilla Thunderbird 52.9.1 | 15875 | Wednesday, July 11, 2018 | Approved | |
Mozilla Thunderbird 52.9.0 | 7490 | Wednesday, July 4, 2018 | Approved | |
Mozilla Thunderbird 52.8.0 | 18834 | Wednesday, May 23, 2018 | Approved | |
Mozilla Thunderbird 52.7.0 | 20383 | Saturday, March 24, 2018 | Approved | |
Mozilla Thunderbird 52.6.0 | 23763 | Friday, January 26, 2018 | Approved | |
Mozilla Thunderbird 52.5.2 | 16352 | Friday, December 22, 2017 | Approved | |
Mozilla Thunderbird 52.5.0 | 14540 | Friday, November 24, 2017 | Approved | |
Mozilla Thunderbird 52.4.0 | 19532 | Monday, October 9, 2017 | Approved | |
Mozilla Thunderbird 52.3.0 | 17577 | Thursday, August 17, 2017 | Approved | |
Mozilla Thunderbird 52.2.1 | 12740 | Saturday, June 24, 2017 | Approved | |
Mozilla Thunderbird 52.2.0 | 6039 | Thursday, June 15, 2017 | Approved | |
Mozilla Thunderbird 52.1.1 | 9461 | Tuesday, May 16, 2017 | Approved | |
Mozilla Thunderbird 52.1.0 | 6415 | Monday, May 1, 2017 | Approved | |
Mozilla Thunderbird 52.0.1 | 7255 | Saturday, April 15, 2017 | Approved | |
Mozilla Thunderbird 52.0 | 4020 | Monday, April 10, 2017 | Approved | |
Mozilla Thunderbird 45.8.0 | 8846 | Tuesday, March 7, 2017 | Approved | |
Mozilla Thunderbird 45.7.1 | 8764 | Wednesday, February 8, 2017 | Approved | |
Mozilla Thunderbird 45.7.0 | 5652 | Thursday, January 26, 2017 | Approved | |
Mozilla Thunderbird 45.6.0 | 7077 | Saturday, December 31, 2016 | Approved | |
Mozilla Thunderbird 45.5.1 | 11822 | Thursday, December 1, 2016 | Approved | |
Mozilla Thunderbird 45.5.0.20161130 | 2168 | Wednesday, November 30, 2016 | Approved | |
Mozilla Thunderbird 45.5.0.20161128 | 2349 | Monday, November 28, 2016 | Approved | |
Mozilla Thunderbird 45.5.0 | 4850 | Monday, November 21, 2016 | Approved | |
Mozilla Thunderbird 45.4.0.20161024 | 8522 | Monday, October 24, 2016 | Approved | |
Mozilla Thunderbird 45.4.0.20161023 | 2249 | Sunday, October 23, 2016 | Approved | |
Mozilla Thunderbird 45.4.0 | 12338 | Tuesday, October 4, 2016 | Approved | |
Mozilla Thunderbird 45.3.0 | 34665 | Wednesday, August 31, 2016 | Approved | |
Mozilla Thunderbird 45.2.0 | 52883 | Sunday, July 10, 2016 | Approved | |
Mozilla Thunderbird 45.1.1 | 599 | Monday, May 30, 2016 | Approved | |
Mozilla Thunderbird 45.1.0 | 493 | Wednesday, May 11, 2016 | Approved | |
Mozilla Thunderbird 45.0 | 461 | Sunday, May 8, 2016 | Approved | |
Mozilla Thunderbird 38.7.0 | 7821 | Wednesday, March 16, 2016 | Approved | |
Mozilla Thunderbird 38.6.0 | 5901 | Monday, February 15, 2016 | Approved | |
Mozilla Thunderbird 38.5.1 | 6123 | Thursday, January 7, 2016 | Approved | |
Mozilla Thunderbird 38.5.0 | 2817 | Wednesday, December 23, 2015 | Approved | |
Mozilla Thunderbird 38.4.0 | 5572 | Wednesday, November 25, 2015 | Approved | |
Mozilla Thunderbird 38.3.0 | 5717 | Wednesday, September 30, 2015 | Approved | |
Mozilla Thunderbird 38.2.0 | 5569 | Friday, August 14, 2015 | Approved | |
Mozilla Thunderbird 38.1.0 | 4006 | Friday, July 10, 2015 | Approved | |
Mozilla Thunderbird 38.0.1 | 3328 | Thursday, June 11, 2015 | Approved | |
Mozilla Thunderbird 31.7.0 | 1908 | Tuesday, June 2, 2015 | Approved | |
Mozilla Thunderbird 31.6.0.20150405 | 3681 | Sunday, April 5, 2015 | Approved | |
Mozilla Thunderbird 31.6.0 | 823 | Friday, April 3, 2015 | Approved | |
Mozilla Thunderbird 31.5.0 | 2922 | Tuesday, February 24, 2015 | Approved | |
Mozilla Thunderbird 31.4.0 | 2586 | Tuesday, January 13, 2015 | Approved | |
Mozilla Thunderbird 31.3.0 | 2457 | Tuesday, December 2, 2014 | Approved | |
Mozilla Thunderbird 31.2.0 | 2465 | Tuesday, October 14, 2014 | Approved | |
Mozilla Thunderbird 31.1.2 | 1495 | Wednesday, September 24, 2014 | Approved | |
Mozilla Thunderbird 31.1.1 | 1093 | Wednesday, September 10, 2014 | Approved | |
Mozilla Thunderbird 31.1.0 | 1021 | Tuesday, September 2, 2014 | Approved | |
Mozilla Thunderbird 31.0 | 1587 | Tuesday, July 22, 2014 | Approved | |
Mozilla Thunderbird 24.6.0 | 1536 | Tuesday, June 10, 2014 | Approved | |
Mozilla Thunderbird 24.5.0 | 1592 | Tuesday, April 29, 2014 | Approved | |
Mozilla Thunderbird 24.4.0 | 1536 | Tuesday, March 18, 2014 | Approved | |
Mozilla Thunderbird 24.3.0 | 1132 | Tuesday, February 4, 2014 | Approved | |
Mozilla Thunderbird 24.2.0.20140131 | 541 | Friday, January 31, 2014 | Approved | |
Mozilla Thunderbird 24.2.0 | 903 | Tuesday, December 10, 2013 | Approved | |
Mozilla Thunderbird 24.1.1 | 651 | Tuesday, November 19, 2013 | Approved | |
Mozilla Thunderbird 24.1.0 | 671 | Tuesday, October 29, 2013 | Approved | |
Mozilla Thunderbird 24.0.1 | 653 | Friday, October 11, 2013 | Approved | |
Mozilla Thunderbird 24.0 | 630 | Tuesday, September 17, 2013 | Approved | |
Mozilla Thunderbird 17.0.8 | 715 | Tuesday, August 6, 2013 | Approved | |
Mozilla Thunderbird 17.0.7 | 640 | Wednesday, June 26, 2013 | Approved | |
Mozilla Thunderbird 17.0.6 | 623 | Wednesday, May 15, 2013 | Approved | |
Mozilla Thunderbird 17.0.5 | 598 | Wednesday, May 15, 2013 | Approved | |
Mozilla Thunderbird 16.0.1.2 | 726 | Monday, October 29, 2012 | Approved | |
Mozilla Thunderbird 16.0.1.1 | 480 | Monday, October 29, 2012 | Approved | |
Mozilla Thunderbird 16.0.1 | 492 | 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.