Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

4,286,076

Downloads of v 142.0.0:

26,494

Last Update:

20 Aug 2025

Package Maintainer(s):

Software Author(s):

  • Mozilla

Tags:

Thunderbird (Release)

  • 1
  • 2
  • 3

142.0.0 | Updated: 20 Aug 2025

Downloads:

4,286,076

Downloads of v 142.0.0:

26,494

Software Author(s):

  • Mozilla

Thunderbird (Release) 142.0.0

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


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Thunderbird (Release), run the following command from the command line or from PowerShell:

>

To upgrade Thunderbird (Release), run the following command from the command line or from PowerShell:

>

To uninstall Thunderbird (Release), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

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

  • 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

3. Copy Your Script

choco upgrade thunderbird -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade thunderbird -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install thunderbird
  win_chocolatey:
    name: thunderbird
    version: '142.0.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  '142.0.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller thunderbird
{
    Name     = "thunderbird"
    Version  = "142.0.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'thunderbird':
  ensure   => '142.0.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.

Package Approved

This package was approved as a trusted package on 20 Aug 2025.

Description

Thunderbird is a free email application that's easy to set up and customize and it's loaded with great features!

Package Parameters

  • /l:LOCALE - Install given Firefox locale. See the official page for a complete list of available locales.
  • /UseMozillaFallback Makes a request to mozilla.org and reads the supported Language Culture code from the website.
  • /NoStop - Do not stop Thunderbird before running the install if it is running or attempt to restart it after install.

Command-line options for installer configuration. See the official page for details and defaults.

  • /InstallDir:PATH
  • /NoTaskbarShortcut Do not create Taskbar Shortcut
  • /NoDesktopShortcut Do not create Desktop Shortcut
  • /NoStartMenuShortcut Do not create Start Menu Shortcut
  • /NoMaintenanceService Do not install Maintenance Service
  • /RemoveDistributionDir Remove Distribution directory on installation/update. (This is the default behavior of the Thunderbird Installer, but not for this Chocolatey Package)
  • /NoAutoUpdate Sets a policies.json file to not update Thunderbird and does not install the Maintenance Service

Examples

choco install thunderbird --params "/l=en-GB"
choco install thunderbird --params "/NoTaskbarShortcut /NoDesktopShortcut /NoAutoUpdate"
choco install thunderbird --params "/UseMozillaFallback"
choco install thunderbird --params "/NoStop"

Notes

  • Looking for Thunderbird Extended Support Release? Install the thunderbirdesr package.
  • If locale package parameter is not present, this package installs Thunderbird in the first language which matches this list:
    1. If Thunderbird is already installed: the same language as the already installed Thunderbird.
    2. The Windows system language where the Thunderbird package gets installed.
    3. Language Culture code specified on Mozilla website (only when /UseMozillaFallback is specified).
    4. If Thunderbird does not support the system language, it will fallback to en-US.
  • If the package is out of date please check Version History for the latest submitted version. If you have a question, please ask it in Chocolatey Community Package Discussions or raise an issue on the Chocolatey Community Packages Repository if you have problems with the package. Disqus comments will generally not be responded to.

tools\chocolateyInstall.ps1
# This is the general install script for Mozilla products (Firefox and Thunderbird).
# This file must be identical for all Choco packages for Mozilla products in this repository.

$ErrorActionPreference = 'Stop'

$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$packageName  = 'thunderbird'
$softwareName = 'Mozilla Thunderbird'

$pp = Get-PackageParameters

if (Get-32bitOnlyInstalled -product $softwareName) { Write-Host 'Detected the 32-bit version of Thunderbird on a 64-bit system. This package will continue to install the 32-bit version of Thunderbird unless the 32-bit version is uninstalled.' }

$sa = ""

# Command Line Options from the Thunderbird (and Firefox) installer
# https://firefox-source-docs.mozilla.org/browser/installer/windows/installer/FullConfig.html

# Always prevent Thunderbird installer to require a reboot
$sa += " /PreventRebootRequired=true"

# Prevent RemoveDistributionDir by default
$sa += " /RemoveDistributionDir=false"


$sa += if ($pp.InstallDir) { " /InstallDirectoryPath=" + $pp.InstallDir }

$sa += if ($pp.NoTaskbarShortcut) { " /TaskbarShortcut=false" }

$sa += if ($pp.NoDesktopShortcut) { " /DesktopShortcut=false" }

$sa += if ($pp.NoStartMenuShortcut) { " /StartMenuShortcut=false" }

$sa += if ($pp.NoMaintenanceService) { " /MaintenanceService=false" }

$sa += if ($pp.RemoveDistributionDir) { " /RemoveDistributionDir=true" }

$sa += if ($pp.NoAutoUpdate) { " /MaintenanceService=false" }

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '142.0')
if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {
  Write-Host "Thunderbird is already installed. No need to download and re-install."
  return
}

$tbProcess = Get-Process thunderbird -ea 0
if ($tbProcess) {
  if ($pp.NoStop) {
    Write-Warning "Not stopping running thunderbird process"  
  } else {
    Write-Host 'Stopping running thunderbird process'
    Stop-Process $tbProcess
    # We make an assumption that the first unique item found
    # will be have the path to the process we want to restart.
    $tbProcess = $tbProcess.Path | Select-Object -Unique -First 1
  }
}

$locale = 'en-US' #https://github.com/chocolatey/chocolatey-coreteampackages/issues/933
$locale = GetLocale -localeFile "$toolsPath\LanguageChecksums.csv" -product $softwareName
$checksums = GetChecksums -language $locale -checksumFile "$toolsPath\LanguageChecksums.csv"

$packageArgs = @{
  packageName = $packageName
  fileType = 'exe'
  softwareName = "$softwareName*"

  Checksum = $checksums.Win32
  ChecksumType = 'sha512'
  Url = "https://download.mozilla.org/?product=thunderbird-142.0&os=win&lang=${locale}"

  silentArgs     = "$sa /S"
  validExitCodes = @(0)
}

if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
  $packageArgs.Checksum64 = $checksums.Win64
  $packageArgs.ChecksumType64 = 'sha512'
  $packageArgs.Url64 = "https://download.mozilla.org/?product=thunderbird-142.0&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs

if ($pp.InstallDir) {
  $installPath = $pp.InstallDir
}
else {
  $installPath = Get-AppInstallLocation $softwareName
}

if (-Not(Test-Path ($installPath + "\distribution\policies.json") -ErrorAction SilentlyContinue) -and ($pp.NoAutoUpdate) ) {
  if (-Not(Test-Path ($installPath + "\distribution") -ErrorAction SilentlyContinue)) {
    New-Item ($installPath + "\distribution") -ItemType directory
  }

  $policies = @"
{
    "policies":  {
                     "DisableAppUpdate":  true
                 }
}
"@

  $policies | Out-File -FilePath ($installPath + "\distribution\policies.json") -Encoding ascii
}

if ($tbProcess -and !$pp.NoStop) {
  Write-Host "Restarting thunderbird process"
  Start-Process $tbProcess
}
tools\chocolateyUninstall.ps1
$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)"}
}
tools\helpers.ps1
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
  }
}
tools\LanguageChecksums.csv
af|32|3943b3aec8972e25416ea3db9b8427fd7b5264ac82002c5cdcf7603ba32c3d7df6148580b34e08eecb2eb2a4b2b3194dd3b879e3e49dbc082e3ebddc005afd4a
ar|32|bdd842c230c481f891a4dc932ed4b639c29d1630486393082e7eddd8a4215ff45dcf6e57442dcd8a18710aa4cf1e8d8e0970ffa40aa815553e5b326b72672a42
ast|32|7dfd44e7f4f688804ffb5b1ddcf45e71e4023153624ec8965866a8fa1321e9cbded90b782f9f55742cb4d9e4a77541ee93f531937ca8b3be1fd97b1b1b5cee9a
be|32|65a82a617c5a4e07d36784934ec32d828cab336bd942c48f3fc642cbb974457a0481601dc2c9f54194d35451be016b3d358b26b9451091756fe122b863115f47
bg|32|cedf8542640950edd063cc5f35e645aa0d1f3e79f3008187a71c3bd59c19857b265235ebd55d9f3f1bbb3dfaf305799a2c4cbef88626634ffe81e8d07d9aa3e3
br|32|0d994696e0516a44db49f095e985b672f89ddcc62e2a8a118629299492703eca4392f2e3cb5e31cbca2f0e6b01646792dab7b98719dc8f02923cbe7cfd4e4151
ca|32|be0c7c6c731906578062c06ead52f224f6a5aa218ea83f16166ad7997c60f7ddbba04c2be8eafb6cd7816eb856835db3a335421fd81809d31b1e25636ad1f80f
cak|32|46aadc16c7aadc73ae4661587f1e91ea03992a1ef2ba663be3615b8196927a5d22666adbd46fcb896de748c8fa7e713980c04f1cc9752527de44514bcc707f40
cs|32|f0a71471098b2006664fdf3af18e1cf940fefc6c446de47aad33041d6633f44c54944f2b9a52b845a57b74f4704d243d6a29fa31fa90db47dd54804c02c0f405
cy|32|1ce6186fb0acff2d875d0d5270803f24ae2679dde4838d63cf6aed7489d225e084bcc145386ce8bcf2c4756b03a9699c855ffa794e04f8b88fd83776b6cf3fba
da|32|57204154af7b4c8a616e15c119225fd93a8b412eb82b7dde71ecebeabb3c7a25dc8b9ccff761efaa5b54e42c66693bbbb1acd07eb4211f43ed8f838195a709b3
de|32|21f2fa32278f18d670d2fe18c8e0ae0a55fef866807cd6a1fa6e284872567044af0c8065c7d81ed374426da36b3fe1ebd3bef05a8cf91091e459b0dc21d20db5
dsb|32|9c5e295c247a4ed4ddb3888377f89f286354b68accdf58a10f8e5506b4dfe7be2fec652b6c3249327df93294ea88e8859ea8cd152c5974bada4a449188d7c1fb
el|32|4ba83c9bf1f793b030ccf5b3d869bc2a43856e2d24804309fa3fa6fe369801635b2153ae9dd2b7178d7007c39ef2e2f68366ee217cdc48f940f722f5d3a8b580
en-CA|32|2ff4d5d3eb56d7bc7fe8a5b3867479cebc09f40923bd0668f350d2b8d355f263682ca1a8c929dbc53628a96b81b568f3f30462feec9067821b288edc061659fa
en-GB|32|cc55fe72832ff573090afab644c924f95ec831d3cd2ff6dcb8c64aca05c0e642a5ce2c323180ac2a65bfab2a1a79cbef47fe5a8545da80af5e99809eb98c928a
en-US|32|fdde7f635f6305d9bf2fc77f54450e6dafc2d19dfe7edfa3a0f2a81e617b74359dec34607420b6aa0d6196e003ef1307a30c59bb6bdeb7b1343fcf5e5987d0f5
es-AR|32|6752b224324df0fbe898214db3956eb877f0fbc99a51dbca751c074a274641e49aebfd3b03b1984c8c6efe7df906742b24a2b645cd13e1134b78651497e6803d
es-ES|32|0b243d84c21d5dfc0e889bbda27813d3222e0f131f635ea168b5f945a41e7d59aa1fa4791ac5834f2a4476dca207b25ed4d5c04efd562bc9f84067d089f07f01
es-MX|32|9561816f5fb20b15ecc967f24bfefb53dadf6295d43db4674da02cfc9f6d80414cc6f4439ab8620c6d0c27c37d2e807507c9f1c0ffec90a81c557ee1f45f868f
et|32|450a0f920b3c7d5db13714cf7d67bdda295450bd57cc9313781efa97e8574b1e9f66d38fec13451cb44d68d7ebfb879eeae72b66bdadf734e93ef49ea957956e
eu|32|8d83a71656c72aabcf5cbb3a76ea97c323dca801e28db8ae38634006ac500b609e7d2c1178263b7e1b3a303479a0e452e641821e78026aa0d1a77b3ab6f7ee17
fi|32|4e5d3717079a3a289239434a2b9c9c4a1a51a929da41826f0d8840c17c33b60a2dba4f625e92205e28b0ce4bff8bea9dd2e562fa797df45b32b0e8d5686d7d4c
fr|32|7f442929fbb03138fb9b82b5522c3f3c617aee07b386303407fb4cda2eacda6cda415150695346a2f49a57d472777eebf7bfc1225489a921bb189340fa50bb06
fy-NL|32|443effdb6d8e7a0417fad59d5d10cd868817497ab6258c19a58c404f986fe5c9fa9c14ab3f23063baeccac654ff48aa9ed73d986c6853dcdbd55be31bcce6aa5
ga-IE|32|0a71c78b364748e357216bb68f1ea1948ec84083ec390b33a5e48f803748f73114cc19f7bad25751880ef7366d6bc23741ced633336b4d8c5d9d94b58c2f6e61
gd|32|4426d4cdda86df4e604cade6cd8977c65f05da8c98d83064f964dc6e869750a56ce0ab627b767041ec9a623818640bde3b61b5ec8223a11abf08639af55b9e40
gl|32|bf063e75af864ccbfc0554246357f7ad3a074ef9ee133541ba3b9eb0d0cc87ade60b5380159a300105b1bb82674d7a387759260f743d518a81ac4553f115fb22
he|32|60d6983a525b2ef29346575ea1d02d250144334da3cb495bc2e975a9f6aa9b8ba1c5c55ab53ed667e2427c4e58e7e20f0ea44db3b43cd61bd2ba30ed9b0b4641
hr|32|db88b0b63341e80005dcf50d1aa50a2c66ef52e7f3b27da7ec9ccea0a7235a7c50153343b5a63824adf325039566d19b29565100d596e451646374decdc7280f
hsb|32|681c51edd5b0c6e9625518da168f4ccc3ae78c01f13eef05ddbe318aef17ba1dfadf80dcd5944fad7fa292765e2a8803e300b01fadbf2fb371579a9ed9f9c83a
hu|32|6b76c831bdf7b9ada9a57a429e4429838ac9767ab8aa47622635a6fa6cfdc5de3f3e5c953391e62ef6cda22924ddca65b96b3c5f2198c5014d7e5d2b359850fb
hy-AM|32|b6d4d1e13c767d929f38814d5ff858ba76d800a2666f97f4b0699e4082c94d263649a05d00c4f321c57ef687214d7f2447e10a68ca75697c80b304377d48e042
id|32|02bf190f67dce348eb8ae2a5035ae659a625d72de09cb59dc6850bfb6fd13a8202e86f90197468278a1693e4d77f11d3cd12c10237997246ef92273019e2c48c
is|32|fd0ec38923b0ac4b3914d210c5da86c290348e5535121960d5ac3e5493d439b1ad541f2f4f51359d0f20e77398cba6432939c749a79e13836a8db113d3253506
it|32|7f7aff8a0b47062500bf90d680d11ed241e35a79d220adffc35cf09cb0f4b8cd50fed8011dc54e538ef84235b31549c8fd923746679cd792d140aad6a00561e2
ja|32|360d54f7e2d9db901a112e7af248340bed64dd35fbe7398329296309268c32b5c3e9ea9fe37928c1eb56f98b8269344ea1554bdcefdc303976a17b056ec05550
ka|32|65897c6f6425c1b8c1eaf081ce8965e04d682fdabd7ef256203cc798ac18ceb94b77a372f536579b0e84c95b5bae4e55721c292031946677d635d3750aceb9b3
kab|32|4efaba26f5a9e374885821817583391e0c0681856439879b35cbb7327c9166bbf2d4e899561045c48d409db54a3569e65c21ae60c91b5a899166f1b709f9d12a
kk|32|2baa33b34078d00656d1acff1cf7d5f6339708072f0da8f29d824e0d144d5cbaa6a501d0947c11dba53193b5c027351e6af06cd47c4afe94c5acdf19b04fd8d1
ko|32|acc210c719eb7a2e4e486e14819e31f4e2ce33b79d3c4779e0ef63ca37a777be6a49395bdf44e3e47b1993264798125274aa290aa77d22674c3a7e56196a06f7
lt|32|6099f2d09b6f5b951e777d779737417d1f785ef427fb18f4b2192f6647516c6ada8eff44961f08f2899794e2624b432f1cef210a68df1d2c81cea18f1449c066
lv|32|b80febebee02ed3fbec9e3d52fad0a90d5b31623b82784684829b14c2b924433e723301fd67bad487067a8fa101fd3ca454383dd2f28e98e756cfd58d9410fd4
ms|32|532b1eb9d19b280f2bba192fb3ba0b5d6622df59038369e4160ae232600dcabd7384a45422b5dea43ddfcb355c6727af9b386fd9f827b5cdd8fcb397b92d7278
nb-NO|32|4003683adf87177453e3520340665b8ac2be5376067445e9d164800c8e969ffab5def1de3a633bad19d3285d05d9856308f30eb4efb3c99e7a06a7947c86bbde
nl|32|3c9dc6b704afb17610dd7f86e0274aefe4591ad9d1865e3e130bb88f1db984966e96230e155adc9f841dbe8b7ed19eeb12f592ee1c667fb4b1c26efe1b7a6024
nn-NO|32|c4a3bcca9d8ceca45f68394454ed8ca52521d7b4a004934b78654511316679e44441e1c0600c5f6e75608759d82ae6257023accb211d0d11159ff18b7c7a2584
pa-IN|32|b2cb22660cc4f525ff00123e12d2bf951f63481ae6a684560f2580579f44d9b84c3ad0b56b47a87a9d53ce567a91f8fe5440531edccd6d592f3f15ab942aa9be
pl|32|6efbda46017fd9b61835efe1ab4dd25c88213ae0a21b780cdcee0a56f3cdfccb0287e80a587e2adc127cd23060f7397ea299c7b309aaa3e4f5fb0f53b1212843
pt-BR|32|a8c8e38a4c7e3dc77448e26a35553ac5f08df539945ace0c296bbacf71cc6594739e1bebce35ceb8b27cf001cf7fad589043bb89e67804074530af2f49e270fb
pt-PT|32|03798ecaba2661fb4bd46c1fcf2ec850b1cad8878e0ec9cb9aa5e6d68a820d3e5202c71022b31e34b3ed95393e49af0d802c01086e1743ce5b7ab0f5bdc471a6
rm|32|7dfbf78fe12974e330a292df96ce9d682c54357c6fe8af5ec22df1e6248d159aae4affd4ddfb86bd40095ebee42eb10393a63ccfa86765eddda169c377cca42d
ro|32|cdc1928c02755aef2246757ca3a3a84f9a41f324041483610cdaa1f4d7c2f8efd4b150043d0bc9bc26bfb661b3b88b60875ac9e524893a4057c782d687898513
ru|32|ad667f28ad567887f86fd5b5a970431e400462188a657cbe12584e2a15a5badc8186ff59520398df9fbf3816888778cd9b53c3d15b6232acb9e57b18d88f0cea
sk|32|bad1623546f28299de74be52da6f389b8c37750c6fa1c30d691cc69e423f2411e6adb931dfb56e7c729972d7fbee4ecc28d6ad4d94e418ec3bc951bda7f6fdf8
sl|32|dfa7743124baffb723a3e27a463095e5fc7f77c4da286d773b6d15519ad13598f65c6529c63e4dc7d80f567c7ccfbdbcf7c9bcd8b21bf4e6567fec7d29ba1f7b
sq|32|f58d4cc75478d26c5a63047182f1619ae31c8e5b5c6fa4f3f23e0f54545a969a287199ecf9f9e8929c0b299db7738c7d9c0eb741412df889400c8919d232a8b2
sr|32|470be3df7d728b5fd48a8bc487f0981a06343ab28f15efc12d081a06c0e9434cbc2a2c5e2096f847a2ea914450a556d80e7a47a16bcbfffc476c7798b2c01c85
sv-SE|32|c29407905cd479713ef4397da1ae6ef30fa5ced0164a4cce465f5f6b183e116a938c98cabc49f0552fd748a44ac3cc3f5a28586539cd4d973a1639708b1d1bd8
th|32|69bb947d7c5c5a19be71f0d29fd5d6dea3ca73a542e137c6ccaa1e49a8786f7deab19385f9c9df9addea3764fd0821065220117929236762bd0784f816f61064
tr|32|c43340f403cc49aacdaca45abd711736ea585791caa7babe15fab77476bfa623caf99e36c99e9c5ef3d36110f2d905dbc74afb992ea1eff3befc33fcbef4db95
uk|32|6fc6cffb58986bde2a4cd1225bb0737513256a7aec781f30a4516705855387cdfb0fd84efb76eac9412e42b0ec96384bc35ac62f7ad21696adda312f8421482d
uz|32|37fc72ce268863348056d61590d62853ba1da0660924e625a71cd91ca8dcd03cf38ca9cf778eb4c8cf96c0fb8ffd7f074148a14cc0592714f2af0e1fb1be87d3
vi|32|a34dcb036ca06b57a275875a2241a06810d4acfd2a56a6865f5d6a94955f0aa5526a95aaf6ecad798ecce319c06452e468e72bee820882bd0bdd5bcca09be171
zh-CN|32|4ced12503cc69ffd336d3070a71be47004b45ff38694aa65ad951dc8fc79a0b746c172baeb08398d8866720f5a47a952b97c8d20790fb7c762df66d3927bd4d5
zh-TW|32|fa190404c60041a7456dc5afd33f2f0a10ac4c940ec4538b7e20e53b554323afc5597e25ba61d7f8ef17fa90a18341498f3dd22f907894d4956c6e93fc3e9cfb
af|64|cd6b3bc736130834ccc3fb578031e09d9054e08a7bc897dc9a53663097c9fa097dd92e60d56c74feb01bb9f75d61f7435501b7fd25cef67b9b623dc30e3291d7
ar|64|531a61db8f90da4c2b4bd7d317ade8f971f38a8576bea97709b4204f5dbde26dc27bfd76ce3952c9712ca6562eff865e780c46cf979c30fe9e0ebacc0ddc3fd8
ast|64|9c5362111ae56ca1da170fca5be4296d0c05a21914f3435bdbf823cd3f1671e1a73ccd0da49f22b13eb36d2124a27d09832db898067dc5be2f961344d2fbb4a6
be|64|00495847601f5ad96e210ba4b9c71875ac439d69978d01bccb431624aecb49856950a291e31052a75e5aff80c08286bce4b4e88cacb5bbfa937a1a3e777c565e
bg|64|b9ce8748767bbbbe73dc1c442b3108f5442d076729526ea8d90bf7c3745f1f76bff75af76fed860b9ed1dddfa76304e6594c5fe74e2923ffdcb7465c7ddf4bb3
br|64|615b4c87ff93f2dab3652fdca5abb869157075e81a0b25e313dfbb80bf6fb44ffc9104a5753760211bc3383d950b2aa3ab5548c58da91f2dca0a29ddea5baa5c
ca|64|dee1be349a19d2cf7442bcb7ba02ec65018ec6b6ecb3df5e7a2bc11f302e37d4fc5e63fb8c0904fed1782f3a1f82ab324a09576615904e1d7c635c4808d1a264
cak|64|252e4911bd77f3ca94754efda00ef9c13d3fd3d2e72468f95f56d4f9131000e1d42724af3753f8f1e66f0bb3c6e156bb9a9ca79dfdbdf836fac7743ec050f870
cs|64|dc4eb189feadd20ddcb91d55aa3747130430c11bf6ef8d65593a47c8753a234b9d233dfe927c958a8a9ba4d0a5b7ef68a13a385f85f4a4c051bd06f76f3c3e99
cy|64|bb1387356d3485c5bad9a8f2733248c36992f235a733bce3dc21acb7c90cfa398c60ed354b0783226d4fd4899bb2deb56e6ed7626a77b29f3a41670ce914ce51
da|64|478e7e194de8249ff229e01ad34da257a7e10fd81561b34a52dafb644761f423a12c73811f152aa149a8a0ee605800c732714af8d93747647224c4d4b78326bb
de|64|d3d1ffcef8971577edef20e4db35e719f380132b064b89cf96c45e7942e45998f3dcb1d32f2efde73fdd164f1387ad64f112985715e29d41dc249618f0628f92
dsb|64|91d3bd2db7253e47d908ae066645c90ca4b57bb7c3b92c42c3e58ab2f2eb06cc170075683bcd2134c0fbf9583a2a6332f7d31ac6fa457a06336e4e4d99dd4170
el|64|f272a83477d529019219d6cb1672467fc8238d7a67d3df423368a5f2c0c4edb1dd529fb170f6086bd979d2eb5e4b04b7f927375d88ab5dc1995ee8b55fd7dbfc
en-CA|64|cbdfe2edea7ac27d27a97d846dd72233da87538e473f39be91d47cb3895a06c09852fab9a37862571400c8421b9ae92c704ceee000bab980da5514fcf050734c
en-GB|64|363b8fd0cadab1b71b8de2b9eed9b6488b2a2d845ff51416adf3a1cf6d97446d12d7cddcdecdc04242d772ade5aa533b9b7beda9a09d795445aaafdb5d6340a0
en-US|64|4b382ac48c9f4d4f9ba1dffa730120d6147d18812298b2da5f50d5dfdf4ae28640a20140aa6f9f35812188764bc6ef11028d0ff9a8e95a2bcca266193d5eb75e
es-AR|64|9bc36433dc062e084d6ce83c08cbcbe687be5278194173dd6839b40d40ca30d576eb67fa526d6fb878cf42c060cfc49999f295ab9e33bcae9ec0ccf58df1a74d
es-ES|64|144cee733b41e38b80245fcc6140d5a32a1c2982283c12f334dd50549dfb2400fd3d99a69c9f452c4d826f48393002b7818668db86f148d21dc909bf8543a57b
es-MX|64|754ead4221bc4694a65e8c3b7260c4bae5e7a2f266b084ebaec0674b7ff873f46964bf186af1544c5f2f8239acad21134a391e164f53cae5e58a2c58d527abe0
et|64|62a817eac56e85924d67a60b350b40ad1016789f67d26c634e46489284c49d8e9dd667a8194fd543a84bbba29e0be6a6e74f2e5f92d883b3d0d647dda6d51f10
eu|64|71e6bf4d8b5d8f8ab119e6f131e10fc2de59b0653ee196a5ed5630b8f6c1ce00512acf7820067583e73d610f24aee2237cc13ab3b1ef77c100d5f2c4db2db91a
fi|64|a0c29eeb12f076425ea70d7acfc1dc0cfdaa3ae3943f34da7939a913de5f2472645d1b0d8907336cc5f64b49fde51a68183485607f8ca8e9e0dcc58354eb5cf8
fr|64|f77d1f68f980c4ec1658d2857145e1607cef621d532ef8a4975a5e808b0bf31f011da1a43ef3917f1cc059b6860b686cf827fb5802ed0a5cc22ddf358fd3cbd0
fy-NL|64|cefbc2fba34bf3966e5c5c5e7ac9234f21f42d9010013941d2661bdb61ca407c6876f58dca8f16dd3336349014b09b4678ea18d40787f6c2f2f624b9608a29d4
ga-IE|64|d4b7b4a6c87b11becca5392d7b0a377d4486c78140c9b6fa2bbda732eb18a5600fbf3b588bff78365eead67122b75fee2ec75ecc38208d179db7e83f5031e40b
gd|64|23099fb1eb46928210b844f5bc4ea09f5f8454c4dcb12b910b0d757c8eeb6792dbb22f1f1a78528460b7ede76eb2fc942564c6b12ae003462f66aca1dd72333d
gl|64|fb54400b626f5b2cfe5ba5be5342362d1925554b6f29e167f5b6bd3ae7b5e5d9e8f7b2a196486c79e4cb2f76e6ac77c687f791d6389a34b8b232c7781d576e16
he|64|85a61be873695fd43883599c01564fcb041d7a40fd7f58028c587a5d734e0e0f35a4c6ed9d0bd6205fe35cd068f6cd1428f29bcc337efb93464f958ded54ec4b
hr|64|8685002db8a602070e7d123668c7207cc6d7031e14f2bd213ca9b330bce6473ceadbdfc6f9868caf0ae02a50a60ab908ddc3ec5789bcc3e7aa96071a3d9c9548
hsb|64|327b6f6f974890676556f61fbd20027af3257cd9b3ce630c36caca16ed50bbcc6204b064ec61f0271047551d9a87a224977421a437ef2bf60e2947314ba45bf5
hu|64|f2587fc56078b5462ee53483f36d1126fe87d99e1c23a332fcbd08e4fed2f69707971043029fb156869674ae376700f2e9437617de0e2a5c63693ebf167d072c
hy-AM|64|10709f977c2d165ba4375edc4a11c44ee7c5a2474bfd2652423eaa9908397854655ed665d91f567a8159eabed12b0407637ee5628c6df7b850777bba6cbbfc48
id|64|dc24ea1c8f568a68b38e9edd153c3570383599b6725b3ef23238ad5b3c6bc8c2f1f7ada54dd7c0fb035bbbb99a07cdf06cf0b90d93eb1a682438042e88e9ad2c
is|64|f2a232b9d07a1d5898168dc677f08d44248e8a0d2d927374f401051000f16012900095f2910089c1212028fca043a0f14625bbcba5a1886baa2a96427500fc1d
it|64|a7b42012db089fae56bfdbeeeaaef21cc86e382d80004ebe7af92dd08b834d9937bf4fb0fa11834e0d6d5059958cc05258ab7f40a68ae21d9b2baf0de66d8403
ja|64|e296a3d8c070db7d2a82d7bba6cd1ed1b6ff9dcbf5ad546fc1bed40684bdccc09ecd3ef7ec9d6ac730af199f223b224c487253a005345b70f0bfbcc40c0df91c
ka|64|0bd14f420279164e9bb9af1965cce54afad635d0cb39af2465f1120f7b883bca3020f727911f192a4a2be8f38aa9a9f0209514d2c7422e5a7ccc08c33934aaf1
kab|64|8ba35156f14469d7b7c017b8c7e077f06bd07d3272dc388cdd3a7953b1ba8409ab2d20f829bc08e287355729ba9d816089d6dd16b17b5e307f9df3c8dc3f47b7
kk|64|c7e4a814e0b7d6922f3797bc7315a375b5f9fca49464f289f8f7ecdd65fcce287f8b97b93530a455cacd50a5c540614d3e15f039ee4f8afda8751a0af82cc8c6
ko|64|0ed00d101f107e45a5023835a4bdfcbe63470b68dbc4366ced4c5a984ee87d31c0c7b947ef3f035027359a0f8c0e68ab597d9187617452915004c02f2801fa77
lt|64|ad29d909c82fd299afe57d7f09e239e80f19b840f72a2e1ce4790dc55bd521b5a3a21ca23d426f7c1bec1bbac055b916b4b8f4bb0092e4dbaa3adfa0b45c57c1
lv|64|e10c8036acb4a472dac8118261fe713899d9608d562e49c09eeac1f8936f157212f8313ccb07fb49e2dcde6a81447bdcacb39840f67cedeb431cfbbbc0e3670b
ms|64|ce40ec4883c1fbd8b0b11248c4e6d559d9abedc7c06ba255b4c26a4efe127dec617e2e00117892cc46d084a94e6ed34403ac7fd9a3215866a70cbe713f179413
nb-NO|64|aa42bea6425411c744586517a9dfa8b8a65ecf272e4363e62b8c7c081c0dd172a01bc6ec6617fda7f79c10d1734fbb35f515328fd9161c7b1762c0a33572ddda
nl|64|eed33253f47435668c27b0c312d0862183b82b3e596b4e879b29206c0f349a2c3c34b4a5476bda08400dbf1e21a1be5dd299d0151d794880182331dc47a3033b
nn-NO|64|69f34e6aa484e4a85853b5949b58cd60aa87c31d6bf1696045444f4ce891a478cc85fdeeb830ea42d037e7d430ab67c01fe7c2fa62b19f25a86987b7dc611cc6
pa-IN|64|74605cd866ce8a228672b4d865d09a3a65e698cd0760c76ff8e5d9e94748c809247eb6375e4bb717fdf690fd5e77fb653d6bb6f4687aebedd0a0f9ef7c609860
pl|64|33ec1b0482b82a5b55a5b0e908d9b420ecf97d3e86f27c91e28b86d9b4bf949ac146f9cd65994b98854c4c40da5f61eed91e215ea5b804406f77799cddc2b740
pt-BR|64|a4288ee6d90a0a7c9e1a8b4346cf380af8d8b1c0e0ab823cbe55983f50efda4632c54fb21ca06bd2e3b890c2e97a63918849e9029cb4db759f8c6b8611c58437
pt-PT|64|d8e755a32cb3f36862e11c8e98b45108302357fb89345c67e006a70864c83837cd643c0e1771aa2785d6b21e53cc72cdbe06f07109ede4ebbc683c61f035e28f
rm|64|e4d5997e6ce8e1defc3c15eb8a274d80eb32221aa2c32ae1d45bd8d7e3b64d97d215e9b44ced33275b121043e8ea3644ad1b010ea8a3c18ce59aeb2b79159864
ro|64|1549041880e3d00b5ca482c03ad01ecd3d1ae8ca759f4c239c2d8532ece2248c026840dfe69bd60e4eb9c88849bad52eb09f530b0bc7a7b43ec1bb8f25f50092
ru|64|cadaeaa8c16253c2ae896dd40580f10e230ed5a3cdaa5d7cbebe5f3c83324206c02f4fac03126da672e9987db26cc9124bdbde34cac570bda1de88f1eccf5cfa
sk|64|d834a834f9a11f9277667b82850f71a79695d86a79e2a366f1fadbb7ac8d95e14aede692c4c7b644abe9921a8aae2508f7455feba806c8f80c3c4621099953be
sl|64|98bcc4eb2595b42c235e465fe9b121739d0f2d3ca83c3b8c65081bbf303aefa4082704fd5b23f707a0efacf3bb344050354e31c453db6835ee6ff217b511b704
sq|64|3ee9629d7e0d62eceedaeeea7531cab44d87bcfc92c2d7422f5d23dd3e0dc765d835ef5a5a1e93986ccba7e6cda9a8fa0ec91bc97445e2e432ee51164019701e
sr|64|e31b5970ed465b017e9647f41c54c74b63617a2fc45a5e28b972f763db0aa6db5393cf3fb9864fa9c4328e14e62b5c4eea1d1c0ea7222c04369653c33e04f557
sv-SE|64|23ce294d4b9d4a45f0da5268926e0b76e1b99d69ecc9ab2603becf7f88f2af8bc38ad610947dfe1d444e190da25694d3b77d8c2a1cddf11c15d63f8147058a26
th|64|988c5a9e15799e8cb28b7b4ff600cb4e748f3cd77da319f0fc2cd6ae2f3298184a2a5775fa0ab22b92abe00302fd710266e68582b40f9060d6c48641b4a7857b
tr|64|d667d0d688f2c4c9022651a9b17f5ed28fdb544ed4d70dc26ec1b7730f910e70de2df31bb9e14069ee0ecea9212d9210606abb5c6b557c8ef1cf6dd25c3f6f56
uk|64|8e791c97623a50ad4d718232300bbbd03dc6b82ae1151687eac5e8de7d50ca2300d14f333d6acd5617aa4e9464f065aced474fd342a47357cf12d5039640aeb3
uz|64|6c5de695156b4753ef9b00ee001f010f498e340d76734703889e452d1c30e4151da5aacbb4c1607ab5d0b9353060942f42d17119a6cf9180ad4d66126080d66f
vi|64|5e41b24cde8319e3bd0539a38795da938100a775376be594c9464093624198038f06e282c18161dfbb93657c5f3a579eed4570cf8c1653c768b0f41a45322433
zh-CN|64|a327e09fe54980a0a63f5cc08b9033654876db543769fdbde75ad61783fa4f185e61da2ad38a89b063c57e2a3c6a00b1a5f8501799024975d189922415f6275d
zh-TW|64|c38808618d39c37c974d09d501590383fac7959dd8974a71f8d9d0765f055d179efcbe23d81a3e62df8b8c273fddf2e351b4642c2fc822bcee125930a2f10c69

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Thunderbird (Release) 141.0.0 46048 Tuesday, July 22, 2025 Approved
Thunderbird (Release) 140.0.1 33332 Thursday, July 10, 2025 Approved
Thunderbird (Release) 140.0.0 28199 Thursday, July 3, 2025 Approved
Thunderbird (Release) 139.0.2 40341 Wednesday, June 11, 2025 Approved
Thunderbird (Release) 139.0.1 13624 Tuesday, June 10, 2025 Approved
Mozilla Thunderbird 128.7.1 83978 Wednesday, February 19, 2025 Approved
Mozilla Thunderbird 128.7.0 34822 Wednesday, February 5, 2025 Approved
Mozilla Thunderbird 128.6.0 46264 Thursday, January 9, 2025 Approved
Mozilla Thunderbird 128.5.2 41772 Wednesday, December 11, 2024 Approved
Mozilla Thunderbird 128.5.1 23902 Tuesday, December 3, 2024 Approved
Mozilla Thunderbird 128.5.0 29594 Wednesday, November 27, 2024 Approved
Mozilla Thunderbird 128.4.4 26261 Wednesday, November 20, 2024 Approved
Mozilla Thunderbird 128.4.3 26574 Wednesday, November 13, 2024 Approved
Mozilla Thunderbird 128.4.2 25355 Thursday, November 7, 2024 Approved
Mozilla Thunderbird 128.4.1 16091 Tuesday, November 5, 2024 Approved
Mozilla Thunderbird 128.4.0 18716 Wednesday, October 30, 2024 Approved
Mozilla Thunderbird 128.3.3 24484 Friday, October 25, 2024 Approved
Mozilla Thunderbird 115.12.2 74401 Sunday, June 23, 2024 Approved
Mozilla Thunderbird 115.12.1 13999 Wednesday, June 19, 2024 Approved
Mozilla Thunderbird 115.11.1 30098 Wednesday, May 29, 2024 Approved
Mozilla Thunderbird 115.11.0 24328 Thursday, May 16, 2024 Approved
Mozilla Thunderbird 115.10.2 25304 Wednesday, May 1, 2024 Approved
Mozilla Thunderbird 115.10.1 23239 Friday, April 19, 2024 Approved
Mozilla Thunderbird 115.10.0 11928 Wednesday, April 17, 2024 Approved
Mozilla Thunderbird 115.9.0 34131 Tuesday, March 19, 2024 Approved
Mozilla Thunderbird 115.8.1 27857 Tuesday, March 5, 2024 Approved
Mozilla Thunderbird 115.8.0 27165 Wednesday, February 21, 2024 Approved
Mozilla Thunderbird 115.7.0 36265 Wednesday, January 24, 2024 Approved
Mozilla Thunderbird 115.6.1 27420 Tuesday, January 9, 2024 Approved
Mozilla Thunderbird 115.6.0 29881 Tuesday, December 19, 2023 Approved
Mozilla Thunderbird 115.5.2 22407 Tuesday, December 12, 2023 Approved
Mozilla Thunderbird 115.5.1 27074 Tuesday, November 28, 2023 Approved
Mozilla Thunderbird 115.5.0 18747 Wednesday, November 22, 2023 Approved
Mozilla Thunderbird 115.4.3 20227 Wednesday, November 15, 2023 Approved
Mozilla Thunderbird 115.4.2 22801 Wednesday, November 8, 2023 Approved
Mozilla Thunderbird 115.4.1 26058 Thursday, October 26, 2023 Approved
Mozilla Thunderbird 115.3.3 20843 Wednesday, October 18, 2023 Approved
Mozilla Thunderbird 115.3.2 22177 Wednesday, October 11, 2023 Approved
Mozilla Thunderbird 115.3.1 24370 Friday, September 29, 2023 Approved
Mozilla Thunderbird 115.3.0 12395 Wednesday, September 27, 2023 Approved
Mozilla Thunderbird 115.2.3 19579 Thursday, September 21, 2023 Approved
Mozilla Thunderbird 115.2.2 21751 Wednesday, September 13, 2023 Approved
Mozilla Thunderbird 115.2.1 6777 Tuesday, September 12, 2023 Approved
Mozilla Thunderbird 115.2.0 25464 Wednesday, August 30, 2023 Approved
Mozilla Thunderbird 115.1.1 26020 Wednesday, August 16, 2023 Approved
Mozilla Thunderbird 115.1.0 24950 Wednesday, August 2, 2023 Approved
Mozilla Thunderbird 115.0.1 27195 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23807 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 16048 Saturday, July 8, 2023 Approved
Mozilla Thunderbird 102.12.0 35838 Thursday, June 8, 2023 Approved
Mozilla Thunderbird 102.11.2 25027 Saturday, May 27, 2023 Approved
Mozilla Thunderbird 102.11.1 11263 Thursday, May 25, 2023 Approved
Mozilla Thunderbird 102.11.0 27793 Wednesday, May 10, 2023 Approved
Mozilla Thunderbird 102.10.1 29044 Tuesday, April 25, 2023 Approved
Mozilla Thunderbird 102.10.0 27140 Tuesday, April 11, 2023 Approved
Mozilla Thunderbird 102.9.1 26586 Wednesday, March 29, 2023 Approved
Mozilla Thunderbird 102.9.0 25521 Thursday, March 16, 2023 Approved
Mozilla Thunderbird 102.8.0 35739 Thursday, February 16, 2023 Approved
Mozilla Thunderbird 102.7.2 21460 Wednesday, February 8, 2023 Approved
Mozilla Thunderbird 102.7.1 19957 Wednesday, February 1, 2023 Approved
Mozilla Thunderbird 102.7.0 24127 Friday, January 20, 2023 Approved
Mozilla Thunderbird 102.6.1 36237 Wednesday, December 21, 2022 Approved
Mozilla Thunderbird 102.6.0 20272 Wednesday, December 14, 2022 Approved
Mozilla Thunderbird 102.5.1 25189 Thursday, December 1, 2022 Approved
Mozilla Thunderbird 102.5.0 26054 Wednesday, November 16, 2022 Approved
Mozilla Thunderbird 102.4.2 24306 Friday, November 4, 2022 Approved
Mozilla Thunderbird 102.4.1 20826 Thursday, October 27, 2022 Approved
Mozilla Thunderbird 102.4.0 16190 Thursday, October 20, 2022 Approved
Mozilla Thunderbird 102.3.3 20342 Wednesday, October 12, 2022 Approved
Mozilla Thunderbird 102.3.2 18416 Friday, October 7, 2022 Approved
Mozilla Thunderbird 102.3.1 18929 Thursday, September 29, 2022 Approved
Mozilla Thunderbird 102.3.0 19844 Wednesday, September 21, 2022 Approved
Mozilla Thunderbird 102.2.2 23228 Thursday, September 8, 2022 Approved
Mozilla Thunderbird 102.2.1 18029 Thursday, September 1, 2022 Approved
Mozilla Thunderbird 102.2.0 19400 Tuesday, August 23, 2022 Approved
Mozilla Thunderbird 102.1.2 22266 Tuesday, August 9, 2022 Approved
Mozilla Thunderbird 102.1.1 11515 Saturday, August 6, 2022 Approved
Mozilla Thunderbird 102.1.0 17276 Friday, July 29, 2022 Approved
Mozilla Thunderbird 102.0.3 18754 Wednesday, July 20, 2022 Approved
Mozilla Thunderbird 102.0.2 19814 Tuesday, July 12, 2022 Approved
Mozilla Thunderbird 102.0.1 14150 Thursday, July 7, 2022 Approved
Mozilla Thunderbird 102.0 20749 Wednesday, June 29, 2022 Approved
Mozilla Thunderbird 91.10.0 31631 Wednesday, June 1, 2022 Approved
Mozilla Thunderbird 91.9.1 21209 Friday, May 20, 2022 Approved
Mozilla Thunderbird 91.9.0 26241 Wednesday, May 4, 2022 Approved
Mozilla Thunderbird 91.8.1 24129 Tuesday, April 19, 2022 Approved
Mozilla Thunderbird 91.8.0 22352 Wednesday, April 6, 2022 Approved
Mozilla Thunderbird 91.7.0 30251 Thursday, March 10, 2022 Approved
Mozilla Thunderbird 91.6.2 14338 Sunday, March 6, 2022 Approved
Mozilla Thunderbird 91.6.1 23291 Friday, February 18, 2022 Approved
Mozilla Thunderbird 91.6.0 19963 Wednesday, February 9, 2022 Approved
Mozilla Thunderbird 91.5.1 23643 Tuesday, January 25, 2022 Approved
Mozilla Thunderbird 91.5.0 22137 Wednesday, January 12, 2022 Approved
Mozilla Thunderbird 91.4.1 25612 Monday, December 20, 2021 Approved
Mozilla Thunderbird 91.4.0.20211214 16833 Tuesday, December 14, 2021 Approved
Mozilla Thunderbird 91.4.0 18931 Tuesday, December 7, 2021 Approved
Mozilla Thunderbird 91.3.2 27051 Friday, November 19, 2021 Approved
Mozilla Thunderbird 91.3.1 14314 Tuesday, November 16, 2021 Approved
Mozilla Thunderbird 91.3.0 22564 Wednesday, November 3, 2021 Approved
Mozilla Thunderbird 91.2.1 22551 Friday, October 22, 2021 Approved
Mozilla Thunderbird 91.2.0.20211014 17868 Thursday, October 14, 2021 Approved
Mozilla Thunderbird 91.2.0 19199 Friday, October 8, 2021 Approved
Mozilla Thunderbird 91.1.2 22947 Tuesday, September 28, 2021 Approved
Mozilla Thunderbird 91.1.1 21726 Friday, September 17, 2021 Approved
Mozilla Thunderbird 91.1.0 20868 Tuesday, September 7, 2021 Approved
Mozilla Thunderbird 91.0.3 20714 Thursday, August 26, 2021 Approved
Mozilla Thunderbird 91.0.2 10510 Monday, August 23, 2021 Approved
Mozilla Thunderbird 91.0.1 14225 Tuesday, August 17, 2021 Approved
Mozilla Thunderbird 78.12.0 28817 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31947 Thursday, June 3, 2021 Approved
Mozilla Thunderbird 78.10.2 21101 Tuesday, May 18, 2021 Approved
Mozilla Thunderbird 78.10.1 19292 Wednesday, May 5, 2021 Approved
Mozilla Thunderbird 78.10.0 21027 Monday, April 19, 2021 Approved
Mozilla Thunderbird 78.9.1 18556 Friday, April 9, 2021 Approved
Mozilla Thunderbird 78.9.0 19309 Wednesday, March 24, 2021 Approved
Mozilla Thunderbird 78.8.1 21180 Tuesday, March 9, 2021 Approved
Mozilla Thunderbird 78.8.0 18916 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22999 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17660 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20354 Tuesday, January 12, 2021 Approved
Mozilla Thunderbird 78.6.0 20553 Monday, December 21, 2020 Approved
Mozilla Thunderbird 78.5.1 20609 Friday, December 4, 2020 Approved
Mozilla Thunderbird 78.5.0 18750 Thursday, November 19, 2020 Approved
Mozilla Thunderbird 78.4.3 14945 Wednesday, November 11, 2020 Approved
Mozilla Thunderbird 78.4.2 10907 Tuesday, November 10, 2020 Approved
Mozilla Thunderbird 78.4.1 9305 Friday, November 6, 2020 Approved
Mozilla Thunderbird 78.4.0 20246 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11766 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17211 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16228 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5325 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18612 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16630 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9607 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18459 Saturday, August 8, 2020 Approved
Mozilla Thunderbird 78.1.0 10163 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14092 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10458 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17266 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22093 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14145 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18468 Tuesday, May 5, 2020 Approved
Mozilla Thunderbird 68.7.0 21943 Thursday, April 9, 2020 Approved
Mozilla Thunderbird 68.6.0 19717 Friday, March 13, 2020 Approved
Mozilla Thunderbird 68.5.0 28068 Wednesday, February 12, 2020 Approved
Mozilla Thunderbird 68.4.2 21267 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18660 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18213 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13400 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 35033 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16951 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12510 Wednesday, October 23, 2019 Approved
Mozilla Thunderbird 68.1.2 17575 Thursday, October 10, 2019 Approved
Mozilla Thunderbird 68.1.1 17744 Wednesday, September 25, 2019 Approved
Mozilla Thunderbird 68.1.0 17604 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 26030 Wednesday, August 28, 2019 Approved
Mozilla Thunderbird 60.8.0 34742 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18441 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11165 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20075 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45085 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8148 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11797 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8128 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9179 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4702 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10700 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15358 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9203 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9301 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11102 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10599 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16957 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24490 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15900 Wednesday, July 11, 2018 Approved
Mozilla Thunderbird 52.9.0 7507 Wednesday, July 4, 2018 Approved
Mozilla Thunderbird 52.8.0 18856 Wednesday, May 23, 2018 Approved
Mozilla Thunderbird 52.7.0 20401 Saturday, March 24, 2018 Approved
Mozilla Thunderbird 52.6.0 23782 Friday, January 26, 2018 Approved
Mozilla Thunderbird 52.5.2 16368 Friday, December 22, 2017 Approved
Mozilla Thunderbird 52.5.0 14553 Friday, November 24, 2017 Approved
Mozilla Thunderbird 52.4.0 19549 Monday, October 9, 2017 Approved
Mozilla Thunderbird 52.3.0 17588 Thursday, August 17, 2017 Approved
Mozilla Thunderbird 52.2.1 12751 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 6055 Thursday, June 15, 2017 Approved
Mozilla Thunderbird 52.1.1 9477 Tuesday, May 16, 2017 Approved
Mozilla Thunderbird 52.1.0 6431 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7278 Saturday, April 15, 2017 Approved
Mozilla Thunderbird 52.0 4031 Monday, April 10, 2017 Approved
Mozilla Thunderbird 45.8.0 8862 Tuesday, March 7, 2017 Approved
Mozilla Thunderbird 45.7.1 8780 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5675 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7090 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11836 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2188 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2372 Monday, November 28, 2016 Approved
Mozilla Thunderbird 45.5.0 4866 Monday, November 21, 2016 Approved
Mozilla Thunderbird 45.4.0.20161024 8543 Monday, October 24, 2016 Approved
Mozilla Thunderbird 45.4.0.20161023 2270 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12359 Tuesday, October 4, 2016 Approved
Mozilla Thunderbird 45.3.0 34684 Wednesday, August 31, 2016 Approved
Mozilla Thunderbird 45.2.0 52904 Sunday, July 10, 2016 Approved
Mozilla Thunderbird 45.1.1 615 Monday, May 30, 2016 Approved
Mozilla Thunderbird 45.1.0 508 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 474 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7834 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5921 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6134 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2830 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5587 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5737 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5590 Friday, August 14, 2015 Approved
Mozilla Thunderbird 38.1.0 4028 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3344 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1924 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3699 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 844 Friday, April 3, 2015 Approved
Mozilla Thunderbird 31.5.0 2934 Tuesday, February 24, 2015 Approved
Mozilla Thunderbird 31.4.0 2597 Tuesday, January 13, 2015 Approved
Mozilla Thunderbird 31.3.0 2471 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2478 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1511 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1106 Wednesday, September 10, 2014 Approved
Mozilla Thunderbird 31.1.0 1029 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1611 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1549 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1602 Tuesday, April 29, 2014 Approved
Mozilla Thunderbird 24.4.0 1552 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1143 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 554 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 920 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 670 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 686 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 670 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 641 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 745 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 655 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 631 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 17.0.5 614 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 16.0.1.2 742 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 497 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 503 Monday, October 29, 2012 Approved
Discussion for the Thunderbird (Release) Package

Ground Rules:

  • This discussion is only about Thunderbird (Release) and the Thunderbird (Release) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Thunderbird (Release), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus