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,248,374

Downloads of v 141.0.0:

35,471

Last Update:

22 Jul 2025

Package Maintainer(s):

Software Author(s):

  • Mozilla

Tags:

Thunderbird (Release)

  • 1
  • 2
  • 3

141.0.0 | Updated: 22 Jul 2025

Downloads:

4,248,374

Downloads of v 141.0.0:

35,471

Software Author(s):

  • Mozilla

Thunderbird (Release) 141.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: '141.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  '141.0.0'
end

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


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

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


package { 'thunderbird':
  ensure   => '141.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 22 Jul 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 '141.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-141.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-141.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|bf6ef90045b54dfcb3e91a8bb97257286bc7e9e7a1be085dae4aa7ec52d5520d64a3bdc52bde99a78544eb12b9f2dcf0d8bde15e7e45d9fe9cee459a2461c991
ar|32|d603f58a0cf26bd661f6215a685da788935c604d0daa96b8efe602049b319d448f9867d51024c86fb111735c063132cffe9918a17682954806de9382d7417a7b
ast|32|2173494f5b16588c9018bfad1ef89957745d56c4b16222e9136b2dbb24cd7a4a569e20f901373d30a4a2d5d17e4150fc3d425fc0c6f96802432b9d36dcedc021
be|32|06f76926fa3b415f12d52c1ecd2ef6bdc401fdba87d84f67146768c39272f4a3603cfe79639fe619a2f54f3ca300cbaf03df5853df107291605baef835c39bee
bg|32|c4c2b36ff6126d00c79e8a293be91b1bfd0c5049e112e3b626f60561ede4608c9451e6c496bf31758b2e1c5c6d05db8a190bafcd2e878eb970d08fca8426082c
br|32|cb13a38b48f646590f1b3d1068d2352b49a6bb717924999e64bfd6c5dce7e19a001246d30e028b28f8ea327f3aa83fcf8de60aa16672c17620386161048e8fcf
ca|32|72a03c6b3ea72c4c8ca9a35d9b7c27d103827b6db5c7d040a946c4184d70a30a844847cb1aa4de9d14913c16dad54413ff6a46f956a70ab6b01b1fc32b3c25b6
cak|32|4b401b7421703066689221155ed47a2e5fd1306fd5d98cca838c9cebca14b8030343773b90b99dd2a10c540e88d8d661c1845fe1a9e04e5da1ead0bd7a5290a1
cs|32|31a340d6c879ef19b90bb3373a5b11f2b5ae462fe438a9e6dc5818fd4c0c62c856d28298d21e062a1ba476a3e4f127c95c0e4cc573dd0c9971c4d47996e59998
cy|32|9cd1aa2b002a1aa6d9b589862131560a12c6174d12d09b2b9b2dda744de6e23219fea5375f11ac4aaa2c1321ede1d77652c706af0ceb27964643c90bcafea4e0
da|32|6c6ae4e38ff1aed86223fa1ed9dde8badc99963a3a115829b2363206f758a778836d222bb11e8b27364c5d5b7cfee1a837449b0248d432d4ab7cb1b7b5ee2794
de|32|76861c51cea0e11cc5070352ec4b3a0ec3a565f4984552b3dec7fbc32917e55e88dfba68857ea8f70bb7e423ec9bb95ef658f543284cc7fda89090e4791f8019
dsb|32|aee9709ce0b2bc46e053864ee56f6bb7919a11059b9a25dd66dcd1ba7b9e8a678a1d7db2c2982d3ca714c32933e0eaf3c4c1ca2d99e9efafcd6871f723570362
el|32|7cd2019fa08a7f34a4678d00df2c30dc0b1604c1181e775aa1493f05cdaa04332fdbd47461d858e9ffbef330eb338922cb11dd5088ac2fd02ef66b2c02949961
en-CA|32|d054c601756ca8c306625777f351429b5477310c4b92d619310fa3d09cec40eec579f1720f613a03894979b885611fd8adddcc38e5eb71d1902941b74be9fe31
en-GB|32|3f7cb92bc74b249ee9a5bf923807d6ce2feda6976b2c97c713c3506001c8f73f0b292364f8dae35fd185478525823b904ea4e044566fcd983f230cce4d73fd51
en-US|32|5eb39a998c8f44327c61477b2c50be29e08f4702b0865d1f65d7281676e42e547e920de12f99e0b5969f1834976b80a78b1930d2ba128416679f0f1ad3b98f25
es-AR|32|d8cc54117eba3a65b860701b699db97fdb516ed060d752e4968b59594c6a3f0a86318554095d6e863f571285146798b3d83d72af3926312eaaf2e7e3f19c64e7
es-ES|32|370592ed699d1ec004d76b3147ba800583489acd084206f75eab5491ba7270340837539a4249db8174b51a100b19cca6ff218d857aba34529db5b08626d872b6
es-MX|32|034f41aaea34d0358f17f46802935424950a396b2cf620d85f2b3ad84a2a7df464a46b1e736cd76f9391e184f16f6fbd8996f683ceaeee48c4ea9ea09bb4dc8f
et|32|95fe7a7a6b4d1f7fee670521d784b1e5c619852e3ee9124127531027c43841b783feca489635574a952dce3788f3dde3b485d1e3e546dba060550ecf9cf9f64b
eu|32|8fd4391ce5fea39df8e13d25318cd940bff3d7798f6bdaab473a82a940bc8ad879a534de1bb110d4af0e1f3d4e745a55faa6720c3f803264ca7d9830674eee14
fi|32|396ab7bbf0d33acc1b4404330c3794a3779359f6ccd420300b2bf8c2a4b4bbf1cf25ad9215cb36d53d7ea1d2b95b458f89c2786aee92d81696f79633a0f0faeb
fr|32|70202f8dc3a5c3edc7d0bd7bf78c761aab98a5cb76555f4e72094e8113c8e8b770905baa573883a0e9057652f77e511b7dc56673a399b469413c759aec184e7a
fy-NL|32|1aa9978d8c228e5ff3db7bef0fba30f1e0e93fea31f791c670f4d64bf3078c50431e054157c1ef4a38146a6a6f573117547d5e2628da317488ad3f4cb0d4d886
ga-IE|32|a14df10f62b9f01481c204f16b7a6fe21a5b5114e8a31df442b24fdd042d71fdf8e1445271bcd5f53fc1e500d7859b76f961c0fe8eb6e5e6cbe5b6e516a01342
gd|32|7f67353f8042ee866b174b59004ac90d7057de8bad0222077ac66cdaf4e16fb02d8f14732ed624466d63874dcb98e994474f00a9b38a640731b95b74ab31ae59
gl|32|570028dfea44ebe97dbf79b0ebbeffd10a8dfb9e259ba7dfb4441603abdd257fcb45955cbb4755e3ea5aa41527e30ced60576c2451cffca35e23978c2e4426a6
he|32|f47b3776ed255bd5aa2185e4e00ca47f778b18ab985d44780700beff0cfb4aaf8a8826d71874fd732cd9393708cb3d58da8c771392665c77d9bf674eeb3a18c6
hr|32|3b10a5ad3e49099fac8ffb1cbfaaaa20c325c5228f7f443f65a2ff05374b88f09ddda248b23c4d7c35f0911d838b04c75b14fcc9d082f914effaa1c7fa032f6d
hsb|32|20025a3dbda2f2ed5a9e8dfcc708d6745e55e2f76177b63e57611536b99ca678adbfdf18ef6a6af33f3d837a8857a18c9dd548c633013ccf58b62e920cca5ab1
hu|32|9738035a7448002ad7205f541e78448ad4c7e8d458289a873ce0eb6a0720c2de63b94f64c984e37a65ad5b900f5a59753c4195fa7e74752de2b845c181a2de75
hy-AM|32|6394bf11110134322e2ebfe2980a639a176efa9b484c788b0b103e58ec162b789a25bffbf4d08eed942d8532ec7b0ff75f36e9affbdc9c017cc3ec2e2d00bfa3
id|32|fa155743ce7487d154a1966cdcbdb204bfe6de2ceb0443bb9bb982680ce077a61898daa5a057b6771fd06ba4bc187559de8aa02202820fc98b745cb16b5a15bd
is|32|d47b12fe1d2440e9658cbc6ca23addc70efd1f11149717cc6cf423c689ae07190ad09639ef853928eb8fb31373915bc7a438c60085b5327e65bc95e3cb82e13b
it|32|59a9efb11abd5a700394ba889f871e652f8c00141a15ffe82d7f6d992df02e4d6ec7734488d8773360e5688eb3fc45382493e8159f60fcb1872ade6b61de5ee6
ja|32|a408253ace84f3a9eab79f5340891bb7b8c781af83be93822c75dcdbc47b627c0c4e6f6a9f1e8300e8f46841526ff5ccc72714dc0831fcfaad840567bc76fb1e
ka|32|994946cd184d984ad3faf01bc762014f7130d704bf7ea65d26939f44ac0eb1d0cf82667ad676610a9c75d21db38be41d3aa5cb579ddd8c06558926b5caaac984
kab|32|d8876a45a89c6e3f4f72a52a98a7e08a4a8e85bdd8b32cf665158c7569170ed6d5fdfacdb0d3ea37c075ca862d8a6fa3599a4f9571d4f1ceb76c02a2ec6fe5a2
kk|32|b084daaf68e76bf08c399d2bbc8e57a99e3328079d9b30f0476d107f6e258bf8cb68c4752f0fb09291dae694913f962d527a424829e07772d48684450601ad7f
ko|32|306233e831aa9fc2d7bc6e7a41bcc4534beecd3fe4ed77b1c47cbc444a9b7c51fbe18409100058d53fe62f1f9b6166439db59f8a5d829ec773a612a046159797
lt|32|8a4b3dd7a187b81263d218107577867a22fdd0a284410607e4e1d02a2d7c13a7682a0b997b1f1e592b7a0412765ebcf9260a27e75fb4519282b60813fde1db7a
lv|32|f72de138f9e5e8023229f147db72224995b58e36cc0f2d467bea8387d939a38d0ecff17298dcc6b3dd03990106f995346344c4ed8e39f1ff1acc8b7385846d6d
ms|32|b3ed7a123fc84a144ba30505a2c8c1a760c0ef50e9ca4f00207de54cd3e67c218b81c48b15ada2b6a5e17a7e4849e8fc98974cfcc1ec328312de3ad911204d57
nb-NO|32|1a1f0e5e52154021bdd2e590b365e53ed7cc8383b61da1b6ca582aa3573d814a5c9301da43659cc29dd58d96c8b525f399771cb5246a8eeee58b37afd55de84c
nl|32|353d82f38110f5b9c1b60fcadeb8cb971a72897e3d7ff7c1ee2ee86f4d21f04eed0f1e6f795b1000228711349dae3eed835f36cdfcb83c9ffa4c3ec145f3285d
nn-NO|32|00401c45731e555dc8d625a43e5e7cc0958f9f16fe32845e7ea0c8a75b993b1ddaee6d8dd9d34d1cb720c3d854e21bfdcfe8a63ff09c1ede4a2036bbaab4057f
pa-IN|32|2606ec7971037c89e10f4f241271117508ae070e75e6134e7d2819c2e41a25895057e85afeaccce515d58961683b15daa93803c54c3507195e79918f984356fc
pl|32|874db79f71c0b8e7f10c40883000d43feb3e82e31e54437580b40a96455680f227ca40b6c8f75ab839c0afad314491b28d13e397eedf86c4980054d0742080cb
pt-BR|32|8ab11e6b2ac669e65b6cabfe18fed2853703aa39ae6397e0200c664d8bb31cacf530079aab3c5c88848bca44536d426081a538ffb88b110eb96e7cb05d22fc7e
pt-PT|32|9b60f50f631cd57cc1a993a3631befa89435f4ed713dabc049fa4d1d8348166570b75e5c35bcf68cc77b200c454019280533f65b1943100d4144db14f03f93c6
rm|32|c2599345b674e3332ad4905ba3f9432c274a1e1d27a3fefd70ea27d9b942decf088e69b918c91d9c80a837f9d679dd93c23601604ce55eab1ddbcd0e3fd45f44
ro|32|e87180f3f4121fde45b121712939585ad2a4c60b80b1cfe5579fcb9c4427198c4f67b088e2f90a3848aee82b3c1cdb12e2f9c4de8daae7795d8d5859f75f0f11
ru|32|4db86597450e11d5bd044bec1b2ebe190ca6cfdef9068ca757bdda2103618bd084be0e2c14409b156a911e322c21dc5e1f05d8ba7b0429a501427b5579af8877
sk|32|05356bfe5c058e10fe6dcf0165bc4c6d0f6822c983da39384850f4da2fae7d3d7d3460745eb949b86627b0bee1b49530b078d8a38df79dcc9e22903b9d5f7de4
sl|32|7c76a1891956c5f71a8f07599633daf776e3eb4f05905be88457ed57127ad5e1f3ea26526adb7645c25762eca107e43edbd1a753ae9972b144fe7574b874f5e7
sq|32|f25d189909216b5bc7352f7ebed597fde6cca832145c2ceb800d149f2987c18ec1f8d574e8d750bc02457b5a0da7d259444c5d993b5aebed6f9953598ffc7c48
sr|32|1932dd78faa44239409b83a10a1bb7e80bb19d25beddb4c1719d507f4d1e2ec25eef8719f86ae0b2246a01e4563f08bdf4edcea2e93fd981ede4d3d9ab02bf16
sv-SE|32|b09ffc5967a8317847fe0729d8c54469aa6ea5e9456ca3efbcba4d323af96a4d939ad8d4cd9158017d3d7ca6d4163e0313f333be50c1f84b9efca9d0a4826885
th|32|8b26ec9d3141856f545231f1381c94006efca919b3ce70ba22085a063c2c9d14448d561d9be1e372e89b3bdf5c69dc107ed21fab6e118d8d0ced384b4c044d6b
tr|32|7d465e72631369998c7d300643ca23d474e13dd92edee2c6ff66a515e331a5e3a7f72cc7169de908557fb8e3418164479168d6a0ded67115d568321edf169fdd
uk|32|1e03eb49b1c45a0ba26e44b8602c5272b0737c66178b9bf3da5cae24b4402c713545aef9928a7b98413d07207dbaf995ac9a35b858432a334a5e1b6beef01635
uz|32|7cf37d04d50fd6fe1761ac139a6f69f8b16e29c4c2554e1e3bf8e9b9cafd4666d22e861d7718300e9e4bc3b319259a385640845e02fc3962781cd8168c01eaea
vi|32|325aee848bcfa637b066aa490e45757bf1c2afe106b0343b521b54a0276f09d4b43266ba5957e9f6569cc44a3c145af24b4f913d27b0297b92bffa8f0762582c
zh-CN|32|505af6a7e1892ff5424f5e3200181b054989c3c6d35e8d658cab5e283ddafbd5411ed170a1c2428de5e2281a4439c2d5d26321dc35dc4bd8320a0431b5370082
zh-TW|32|0889544b2f0cf94677e08e716b111b3664f2af818896657a1905acca1ec5a65722cc2c4a33e8c8cf77f906cd7851a3e749cdad57c141a41310c351fdb6727a7a
af|64|5ba8de393149524ac20a1804969c22d2a1c9a6f4a328f8d3fe400fc04a6f0ca7e7e313f28084273c150c0e24b49845260d51393935810f218c6835f3c0bc2164
ar|64|4aae167f0af6de6868646751d0aa88de650ea0d35da881a8cce71f77e8fef0988fc73aa2253d5f51878b756ccdee9d90c8bebea6239f838d8e04f6ba259cf004
ast|64|9308414057dbddf303362d88934dfd85eb3f3e0b3dcb3eff6118e2b2ea502f2652681e6569055db92ac99231b9ec3c22271313bacd3712bc88255769ba65025c
be|64|6a4d58832873b248d72bb755dbd856521e74ef4a75437c31ef2f2597d1d2455a7c1675366171de964d40a3d73d1eb9d54daaac8d17cb96dd01d0ee4a79264b7b
bg|64|633992bbea61397a96d246c75467622dc7f88b41f510896fa8734646e2a86315578f5bfaa309ab8a16dba307a0320835ea8306adb145014deaf4f6ee66d018ae
br|64|445f0d11103b845f38789ba23597fbcdc7d0e3e77687a9451f4a240a27d1ab1fdfb0efe4aeaf866f516b9ea53007002fd5fd578ae6515e9fb6749e854d0203ab
ca|64|36c31426275aaee1db5923d2e06a9d7e1d9c7baf15bed1e02a61c7eab91192e2de985422ceb5ed945043dfc1a8991ac9904a340b3336d89fa9c55e9967f2e7b9
cak|64|286ee36dc95d61c29eced259817c92cb83a30c45291d51c566079fd817c28e7cad8e64f57177cd5c45574a907b518c97ecf8ad9cc0a0aaa76e1913b4ab98f9e8
cs|64|2e9a20ffe15b7560255ed9abae71a2c17585780c9963b420398567c13354d495cd15c89897d04f9a13056b17a02215d5475ffbd31b632b91b57cbf70c294d5d0
cy|64|02d8f8de394afcee046a364943fb40c912c653c5dc8dc0298dc6338d031703ed6290763be20bd8551a5d438b3ee273e7984120a202a98f86056c509c71916355
da|64|2919d15bcc92c1bcc4a5eb3e3dfff983f2e8c12bb8bdc09f60aace1310e37cdc826407f704ff813184d9e73e37137e47aa69ab4ae47ce001be1845e511b6a331
de|64|10a927d0e39f5b4a144629875d9d1685f629c27ea8a08dc5ed47b65bd6a3dd9f1825c2fbdcb125d568cef2032279f1b316763904a7db7c8a1b3a62352867bd62
dsb|64|818dd02ac87efdb2c9ef794d3bb8efad56cb5fe774bc3144064d4d0bd01ea5559892a4bd9f8aa09e401daa292cf1f2b03b2eb690d9354697b9ab950974cc3a5c
el|64|aa4c6ae3f4224abcb312ca3864a685a31c7b8e02bce4215261a76d8ee35610cfcee945c378342a3985f1c61bbf311dec2e5cd580dbc99d294fbc34ce558ef625
en-CA|64|3fd99cfbb64a8407981bc1bfe42bf28673f5b32e51b2916f5a1a5808e9723f798ccbc71a182e2e302a6f8d0dcdf31ceeeca34158acc0c83e405979fbc8d01258
en-GB|64|c684ec3ed11aa994197b4230789177ade6e8957c2cdf82646021084d777c0501366d35fb53cec6b4e08c610c3e305ed5ed9af33ce8544628f1a4a0ab19d55470
en-US|64|580931871073579efe1bb48a3a5fd933b3bcb0234bfa7427381e03295f8f2ac2f40e18faa39ad0d179e1cb625d4c054f350a51706b370ff1b0ba3829d7919bd9
es-AR|64|08bceea258272dc2cbdc9c633245cf11153c0e242c3757fec14a0d8705e6ec47391e1510deddc06a1d1165a8d2c9db113256945f7a97b9051cf5287656e128a6
es-ES|64|8ff562cec7bf576850e380c202a5259d7dec7498096e78903af89d9b5d3752dcc480a1f540946a9ec9dded2f54f80d7c1285a71c7c2a804f8d4fbc37f396e369
es-MX|64|bbc5fed8065c5dc0fd8a2fd3d1f798ae49b3c12ec7b373b0f6149ebbdc2184d5d98858a0073b834be17fa8a4e20d69294f5e2461ce10598d44df68924044aae8
et|64|c453703a375219f729b53e1e302aaf131b88393b1840ca51aa31fa85c5dde4cd276216dc21d975b3eb9441a5e05425f79cb5bada50b3bd57bddca8ba73a52b1e
eu|64|44a92c7a432515ce97243e22500973da7556dbafaf4d914599b11e290c0f7d914b888437cd52f432f8831e572c7c5eee2edfb2b3bd072dbdd0ef0417040ad328
fi|64|85565f9f8c35a7c78ecec7f9a234463f75c86ab21535ef123aeeec6f8f21aa7f018ae4bcbc46370d371f577b7b99aa2094941941ba6cbcf9e7578130ce6bee1e
fr|64|756324914551b192a8d50fd3c360a1b39db3afe6893c3218e5e703f84046bf2bcf5c5564642e6b490c868b7379656a588a40d625880640e13c84c33487fc7967
fy-NL|64|c64d9a984a5facfeaa5ca11214b05b235e52031de2ec133a2ebc65fb901f38058a6853f93171fad6c51d072fbacae6a312afd25daa11133d5441b652d44f318c
ga-IE|64|725c882017655fe4b5c40ab51b2b9902ffb3a9c6888dd78cd491b673bf5cbbe6ed8ed9c7969b18d588e728ba011920f154af907747ad73b9366b274ef1ae2815
gd|64|f8a4daf32ec6e02c48b8040e0c716ccfd55eca1c072b7f3787b6900615320794fdde9affea3cf8cd61f63a35901553c0aad5c21a46bdada97c74f0579d6404a6
gl|64|0b1397b0599b242922132db43f8bfed21314cbb218e58905f5eb179b5fd6bb0ea0902f4ad376d00034e2ffa55444e2b3b200a8ee7c972b06b62ce4371c2d429e
he|64|342d202e48765a62c61713d3ace6053dfeedfc5a786e28ddbb04466a9da03c2bebdddacab78669880ed085bddbf355d32853a4c72266205dcc840fa6610a6799
hr|64|a84b6b2910e9906f57190895f0a58db76f649c447ea593604bd2c88d57b641518dda8425b3a8af8d592b930a51fe4e364ef7a330989429e1d6c21c40c2723ebe
hsb|64|7d2ee072bfde0f50dca990aced46080bde11450b3e1ee0c98559672fc7453a53462c8792d3ec7851e335bd02cf072a73f71813545ad1fd4e556f02c93b47d00c
hu|64|2931156dae24bb6c363cb58e2489b8eff1412b330b0ef69595b5daa3f8c5f0393d95117d374a7d7232f373dec171be128aaf8c8aee23b77ed7664d889c10d71f
hy-AM|64|1c6cc18c69f693039ff552a66a82b3dc60e742e09a02f21fff67e89cd543176ca02d3b0beac1e868c035a8a1f5cde68133d4c281f22a36e6009bdd13e90028ce
id|64|55ce01765bed6c5df1ca34652d8914437bfc5a5c7b96735dc63d19ab3aacaa062a1635be6687524d1fab741b540ccf83e57063492b7a1ce75e5ace713d857a33
is|64|865a4d24ba7e0d89cd5f4fa89964605be1f9587ad5f37f5854f4559a4309d59aa088adc1c3d2777df0db698c2d5c7c6993a5896202692e3bc7eb3e33e2709e78
it|64|5e610943004bdd70320f4224252bcd514ee5aa2a38de82c60e7d013e50941e06133d262b4a6d85cc9afa2a4248bde3bc503b356620f044182342eed903b0f9bd
ja|64|52b8da62672145640f4f0142694e4f4417f588e2cc96b93b1580dcf343a3d0015a46ebc4ba992b8f359cdbf242b560fa447ccacee5c42ccdd4da15c867eb95a2
ka|64|069841d111c5a81259c58089e3340e049fc0a81cec985e1ffca0fadb5dad0b6e4ddeff5009428433c4db44db15dccf1812ae034e560aa61b16e0f8783d825ac1
kab|64|fd2a0735be62738382e83a5867001c07dba9a17a170ec73f073f24ba955eb9c885de7fa8618b04470430679d660dbe406c384c3cdb94eb362e552903475549fb
kk|64|7265c899317fed72e45969210ffeccfa66706a03edc269359b05695803d420cb9d92416f605f857c24e5c4b46153935df16c17156730eec1abd96a8153f67c16
ko|64|ff87d68cb3a12bf5e1f3cba6b1de35047c0eedb55e3b61730dcc80ee32dac00057bf4c2f4f1796a698f951bcd65498316ddf27461fbae74926c6e01b307b1a64
lt|64|b38d08f6e536e8ea80eab1d713553ec5a93272d66563ece4efecb3bebd431ffc59b0d37c67366863b5156a6dbee7c9e8b1fc5211fefffb7a11e88170cfa0f7b1
lv|64|4545d09b4aa03410e052d1056fa705b7761fdf50e2dcae369245909244955ca813be298a8cbb6cbc501d8f6a5c27e68813825f243a38776533a090334a019511
ms|64|be43e3a0d58c0f0c43fbab6838fda8f5f6c3484169eee38ef04fd48d0633f6b608c1d768e6e05ec925319c1fa9d55171d1b5b0d118148512a4172b2deade2a79
nb-NO|64|9a69e79f4c396beb2ea0a03c407e429e726383333fc7ea2c2b0035176a9749b0624c098ed88dd9b588f70f7ae01ca37dd36fb53a0cf149a6601b0614481f6dd6
nl|64|85e530c411f9851618050b35cded4063852fdab8965543718d772a3853a9a2c2500d046460e82b26611a83f6998d525e4ab13b3f19c93432b832488d6f40d25c
nn-NO|64|e3b4bd19ef189a436dfc8e611661159514e6550b01d8b73e45ea2ba2649cbc59f5a8feea98c7bd634f989c0cb7911dc7de70e0829061d50bc1880186348eef93
pa-IN|64|81b6f8c655ba7379893c3e717db5d200d7a26a741238ada3956b92e997fd32d00cb3e0ced3a5f30bfdb6664fa2c919b4fd3eb9fae55ba61694da3daf50220c1d
pl|64|2b090aa1376925f366e5b326f0490235f77971a0b92cce5f3c1255e8eec63f6a3318f1f85ee741de3c865b4fe5255ada5e23e5fdf0db62525ccfdff88c6b37ea
pt-BR|64|214e480c8c4cbcb488a6ec6cc1336c72bb24a5a5a056373fdd4ef05c560bf89aea8e1189c2662ff51c6bfeac77e5721f1e89ab09b294d9a5ba58d7e5c1f671ab
pt-PT|64|6f35a2249a294d20c2656689027b8134017b575b4b9d008abc33e29a9b74df794ad236ad48baf945e2b95a5d609b54dba552d17301b21ef8f206dbd0b646565c
rm|64|d657e6e35ed8e18c58e1549f595ee2e74be9e9e7a89f8db9af3a7b1806107d9d368b7efac0331e0e4ccee399dcb103a960d01c8290e9ba38c2ed4e1fc5b6300d
ro|64|46408f1aaa049dab2e11e87e1b52b492cdf80ee7fc8569fdb06e337bf818de9f7a5150765044ba0398af5e421bece6ebf17a4ec15187fc98708f64993f98d0fb
ru|64|171bbf0d32949149f85e89a210497a667d5b1aaefdadec7625bdde0a78236dd178031d933d1267570e711fab8541487e3c3fc2a57978e624a699be69cc94f9a6
sk|64|b99b8ad1192e5f294a9d5794ad468d3de288651c3f3b2e46ecec40cd03c6737919e7f88debfd53c6fed5c30a9e789ffe2397885e1a13953d5af2293bc72b3b83
sl|64|a5098658dbc193035c784b67faba7580522ab2a59812dec7c2d525ad49f512facea2ede3ee85e488ae0283a8ddd01a78fe2e0c4521b90b55d690875d97e5672d
sq|64|5896a4c9da7b6da9684c301afeace5d9757116d6e309f76ca8c20328517c45d308ad40671a99b5c7b55453c79cc2f3af68f75b5431e33ff3a6baf9f2a87a778e
sr|64|53d5f099be3c777f3ee41a1379b6259fe50b6a63b27bd96fc80d975f93b9fd98c2003e2cf6ba3506b3fc36c5d19b8f8218ee494e52b8bf397dc7f05c41c78773
sv-SE|64|05344a6ecefa071b6e7004e43e5e620ac300d3a955f74c7601e7e937d7860e0520fcaceb0270923521b14df3308d355829b708f9e2c8075fe5129b33758cd33e
th|64|e238422178743d0fda52d0ec027a4976037d26d1faac6d9295a4a909c9fac010dd5db57336d1bb88f39769832cdc18e3517fe4c9a505934d9b8508256f499e7e
tr|64|9dac528a0c71f2dfecf0347a41f9410464472fc95d2959727a3baa1055d8069ba40cdea231fab8487c120ba3ae5de56c735d89e101387861d7b506e3c278f4ed
uk|64|690626d42fe3fb50e3a149d7884531374c1c69323a761b12a5682a9fbdda053849bc38303c0b21061904729e0fe83c0eb0050c45e9581c530baa93320fe4adbd
uz|64|08d30f6e91a0d9806bddbc7d0b2151566b736581ab6359adf64431579dd0df16ebf82e1167a76aff6360c0af56cf0a0ef7e11a2f3767a42ccde92aea678e868a
vi|64|c1f84f449ae5f989dbddc8a8d363ed8a2cc6cbcaf1cef458929ea8d9d771f928270f474f41a648771d873a2bd15f3e049e8e06c02ed813d66ccd278c081eae8e
zh-CN|64|3e37262212de3364d89579fb80625b94ef5a070c9459e7a5cd802522b6710a3e35db2323051a4cc26d8fd901d5905b9d751b030ec95c79621ae822c6e5351c72
zh-TW|64|39075e4639d66fae9031297eff02209b2d35cb56e4391af8345a1cd20ac57450606dc604a3cca3352fe6eec18a70768f0b09406f9bfb46262917da1afe142a5f

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) 140.0.1 33320 Thursday, July 10, 2025 Approved
Thunderbird (Release) 140.0.0 28196 Thursday, July 3, 2025 Approved
Thunderbird (Release) 139.0.2 40330 Wednesday, June 11, 2025 Approved
Thunderbird (Release) 139.0.1 13624 Tuesday, June 10, 2025 Approved
Mozilla Thunderbird 128.7.1 83912 Wednesday, February 19, 2025 Approved
Mozilla Thunderbird 128.7.0 34800 Wednesday, February 5, 2025 Approved
Mozilla Thunderbird 128.6.0 46262 Thursday, January 9, 2025 Approved
Mozilla Thunderbird 128.5.2 41766 Wednesday, December 11, 2024 Approved
Mozilla Thunderbird 128.5.1 23902 Tuesday, December 3, 2024 Approved
Mozilla Thunderbird 128.5.0 29587 Wednesday, November 27, 2024 Approved
Mozilla Thunderbird 128.4.4 26261 Wednesday, November 20, 2024 Approved
Mozilla Thunderbird 128.4.3 26572 Wednesday, November 13, 2024 Approved
Mozilla Thunderbird 128.4.2 25354 Thursday, November 7, 2024 Approved
Mozilla Thunderbird 128.4.1 16090 Tuesday, November 5, 2024 Approved
Mozilla Thunderbird 128.4.0 18715 Wednesday, October 30, 2024 Approved
Mozilla Thunderbird 128.3.3 24480 Friday, October 25, 2024 Approved
Mozilla Thunderbird 115.12.2 74387 Sunday, June 23, 2024 Approved
Mozilla Thunderbird 115.12.1 13998 Wednesday, June 19, 2024 Approved
Mozilla Thunderbird 115.11.1 30094 Wednesday, May 29, 2024 Approved
Mozilla Thunderbird 115.11.0 24327 Thursday, May 16, 2024 Approved
Mozilla Thunderbird 115.10.2 25297 Wednesday, May 1, 2024 Approved
Mozilla Thunderbird 115.10.1 23236 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 27856 Tuesday, March 5, 2024 Approved
Mozilla Thunderbird 115.8.0 27161 Wednesday, February 21, 2024 Approved
Mozilla Thunderbird 115.7.0 36264 Wednesday, January 24, 2024 Approved
Mozilla Thunderbird 115.6.1 27416 Tuesday, January 9, 2024 Approved
Mozilla Thunderbird 115.6.0 29879 Tuesday, December 19, 2023 Approved
Mozilla Thunderbird 115.5.2 22404 Tuesday, December 12, 2023 Approved
Mozilla Thunderbird 115.5.1 27071 Tuesday, November 28, 2023 Approved
Mozilla Thunderbird 115.5.0 18744 Wednesday, November 22, 2023 Approved
Mozilla Thunderbird 115.4.3 20225 Wednesday, November 15, 2023 Approved
Mozilla Thunderbird 115.4.2 22798 Wednesday, November 8, 2023 Approved
Mozilla Thunderbird 115.4.1 26057 Thursday, October 26, 2023 Approved
Mozilla Thunderbird 115.3.3 20842 Wednesday, October 18, 2023 Approved
Mozilla Thunderbird 115.3.2 22176 Wednesday, October 11, 2023 Approved
Mozilla Thunderbird 115.3.1 24368 Friday, September 29, 2023 Approved
Mozilla Thunderbird 115.3.0 12392 Wednesday, September 27, 2023 Approved
Mozilla Thunderbird 115.2.3 19578 Thursday, September 21, 2023 Approved
Mozilla Thunderbird 115.2.2 21749 Wednesday, September 13, 2023 Approved
Mozilla Thunderbird 115.2.1 6776 Tuesday, September 12, 2023 Approved
Mozilla Thunderbird 115.2.0 25462 Wednesday, August 30, 2023 Approved
Mozilla Thunderbird 115.1.1 26017 Wednesday, August 16, 2023 Approved
Mozilla Thunderbird 115.1.0 24949 Wednesday, August 2, 2023 Approved
Mozilla Thunderbird 115.0.1 27186 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23805 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 16047 Saturday, July 8, 2023 Approved
Mozilla Thunderbird 102.12.0 35837 Thursday, June 8, 2023 Approved
Mozilla Thunderbird 102.11.2 25025 Saturday, May 27, 2023 Approved
Mozilla Thunderbird 102.11.1 11260 Thursday, May 25, 2023 Approved
Mozilla Thunderbird 102.11.0 27791 Wednesday, May 10, 2023 Approved
Mozilla Thunderbird 102.10.1 29039 Tuesday, April 25, 2023 Approved
Mozilla Thunderbird 102.10.0 27139 Tuesday, April 11, 2023 Approved
Mozilla Thunderbird 102.9.1 26584 Wednesday, March 29, 2023 Approved
Mozilla Thunderbird 102.9.0 25519 Thursday, March 16, 2023 Approved
Mozilla Thunderbird 102.8.0 35737 Thursday, February 16, 2023 Approved
Mozilla Thunderbird 102.7.2 21457 Wednesday, February 8, 2023 Approved
Mozilla Thunderbird 102.7.1 19957 Wednesday, February 1, 2023 Approved
Mozilla Thunderbird 102.7.0 24124 Friday, January 20, 2023 Approved
Mozilla Thunderbird 102.6.1 36232 Wednesday, December 21, 2022 Approved
Mozilla Thunderbird 102.6.0 20271 Wednesday, December 14, 2022 Approved
Mozilla Thunderbird 102.5.1 25187 Thursday, December 1, 2022 Approved
Mozilla Thunderbird 102.5.0 26053 Wednesday, November 16, 2022 Approved
Mozilla Thunderbird 102.4.2 24304 Friday, November 4, 2022 Approved
Mozilla Thunderbird 102.4.1 20824 Thursday, October 27, 2022 Approved
Mozilla Thunderbird 102.4.0 16189 Thursday, October 20, 2022 Approved
Mozilla Thunderbird 102.3.3 20339 Wednesday, October 12, 2022 Approved
Mozilla Thunderbird 102.3.2 18415 Friday, October 7, 2022 Approved
Mozilla Thunderbird 102.3.1 18927 Thursday, September 29, 2022 Approved
Mozilla Thunderbird 102.3.0 19843 Wednesday, September 21, 2022 Approved
Mozilla Thunderbird 102.2.2 23225 Thursday, September 8, 2022 Approved
Mozilla Thunderbird 102.2.1 18027 Thursday, September 1, 2022 Approved
Mozilla Thunderbird 102.2.0 19398 Tuesday, August 23, 2022 Approved
Mozilla Thunderbird 102.1.2 22263 Tuesday, August 9, 2022 Approved
Mozilla Thunderbird 102.1.1 11508 Saturday, August 6, 2022 Approved
Mozilla Thunderbird 102.1.0 17274 Friday, July 29, 2022 Approved
Mozilla Thunderbird 102.0.3 18753 Wednesday, July 20, 2022 Approved
Mozilla Thunderbird 102.0.2 19812 Tuesday, July 12, 2022 Approved
Mozilla Thunderbird 102.0.1 14147 Thursday, July 7, 2022 Approved
Mozilla Thunderbird 102.0 20741 Wednesday, June 29, 2022 Approved
Mozilla Thunderbird 91.10.0 31629 Wednesday, June 1, 2022 Approved
Mozilla Thunderbird 91.9.1 21206 Friday, May 20, 2022 Approved
Mozilla Thunderbird 91.9.0 26239 Wednesday, May 4, 2022 Approved
Mozilla Thunderbird 91.8.1 24128 Tuesday, April 19, 2022 Approved
Mozilla Thunderbird 91.8.0 22350 Wednesday, April 6, 2022 Approved
Mozilla Thunderbird 91.7.0 30249 Thursday, March 10, 2022 Approved
Mozilla Thunderbird 91.6.2 14336 Sunday, March 6, 2022 Approved
Mozilla Thunderbird 91.6.1 23290 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 22132 Wednesday, January 12, 2022 Approved
Mozilla Thunderbird 91.4.1 25610 Monday, December 20, 2021 Approved
Mozilla Thunderbird 91.4.0.20211214 16831 Tuesday, December 14, 2021 Approved
Mozilla Thunderbird 91.4.0 18928 Tuesday, December 7, 2021 Approved
Mozilla Thunderbird 91.3.2 27050 Friday, November 19, 2021 Approved
Mozilla Thunderbird 91.3.1 14312 Tuesday, November 16, 2021 Approved
Mozilla Thunderbird 91.3.0 22561 Wednesday, November 3, 2021 Approved
Mozilla Thunderbird 91.2.1 22550 Friday, October 22, 2021 Approved
Mozilla Thunderbird 91.2.0.20211014 17864 Thursday, October 14, 2021 Approved
Mozilla Thunderbird 91.2.0 19197 Friday, October 8, 2021 Approved
Mozilla Thunderbird 91.1.2 22945 Tuesday, September 28, 2021 Approved
Mozilla Thunderbird 91.1.1 21725 Friday, September 17, 2021 Approved
Mozilla Thunderbird 91.1.0 20865 Tuesday, September 7, 2021 Approved
Mozilla Thunderbird 91.0.3 20713 Thursday, August 26, 2021 Approved
Mozilla Thunderbird 91.0.2 10509 Monday, August 23, 2021 Approved
Mozilla Thunderbird 91.0.1 14221 Tuesday, August 17, 2021 Approved
Mozilla Thunderbird 78.12.0 28816 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31944 Thursday, June 3, 2021 Approved
Mozilla Thunderbird 78.10.2 21100 Tuesday, May 18, 2021 Approved
Mozilla Thunderbird 78.10.1 19288 Wednesday, May 5, 2021 Approved
Mozilla Thunderbird 78.10.0 21025 Monday, April 19, 2021 Approved
Mozilla Thunderbird 78.9.1 18553 Friday, April 9, 2021 Approved
Mozilla Thunderbird 78.9.0 19303 Wednesday, March 24, 2021 Approved
Mozilla Thunderbird 78.8.1 21180 Tuesday, March 9, 2021 Approved
Mozilla Thunderbird 78.8.0 18912 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22995 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17658 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20353 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 18749 Thursday, November 19, 2020 Approved
Mozilla Thunderbird 78.4.3 14942 Wednesday, November 11, 2020 Approved
Mozilla Thunderbird 78.4.2 10905 Tuesday, November 10, 2020 Approved
Mozilla Thunderbird 78.4.1 9303 Friday, November 6, 2020 Approved
Mozilla Thunderbird 78.4.0 20241 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11763 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17203 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16227 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5322 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18609 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16630 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9605 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18455 Saturday, August 8, 2020 Approved
Mozilla Thunderbird 78.1.0 10163 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14089 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10458 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17264 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22092 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14140 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18468 Tuesday, May 5, 2020 Approved
Mozilla Thunderbird 68.7.0 21941 Thursday, April 9, 2020 Approved
Mozilla Thunderbird 68.6.0 19717 Friday, March 13, 2020 Approved
Mozilla Thunderbird 68.5.0 28067 Wednesday, February 12, 2020 Approved
Mozilla Thunderbird 68.4.2 21263 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18658 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18211 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13399 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 35031 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 17574 Thursday, October 10, 2019 Approved
Mozilla Thunderbird 68.1.1 17742 Wednesday, September 25, 2019 Approved
Mozilla Thunderbird 68.1.0 17602 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 26029 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 11164 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20071 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45085 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8146 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11796 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8126 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9177 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 15357 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9202 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9298 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11100 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10598 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16955 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24489 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15896 Wednesday, July 11, 2018 Approved
Mozilla Thunderbird 52.9.0 7506 Wednesday, July 4, 2018 Approved
Mozilla Thunderbird 52.8.0 18855 Wednesday, May 23, 2018 Approved
Mozilla Thunderbird 52.7.0 20399 Saturday, March 24, 2018 Approved
Mozilla Thunderbird 52.6.0 23779 Friday, January 26, 2018 Approved
Mozilla Thunderbird 52.5.2 16364 Friday, December 22, 2017 Approved
Mozilla Thunderbird 52.5.0 14551 Friday, November 24, 2017 Approved
Mozilla Thunderbird 52.4.0 19548 Monday, October 9, 2017 Approved
Mozilla Thunderbird 52.3.0 17588 Thursday, August 17, 2017 Approved
Mozilla Thunderbird 52.2.1 12750 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 6051 Thursday, June 15, 2017 Approved
Mozilla Thunderbird 52.1.1 9476 Tuesday, May 16, 2017 Approved
Mozilla Thunderbird 52.1.0 6431 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7276 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 8779 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5670 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7087 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11835 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2183 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2368 Monday, November 28, 2016 Approved
Mozilla Thunderbird 45.5.0 4864 Monday, November 21, 2016 Approved
Mozilla Thunderbird 45.4.0.20161024 8540 Monday, October 24, 2016 Approved
Mozilla Thunderbird 45.4.0.20161023 2270 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12355 Tuesday, October 4, 2016 Approved
Mozilla Thunderbird 45.3.0 34682 Wednesday, August 31, 2016 Approved
Mozilla Thunderbird 45.2.0 52903 Sunday, July 10, 2016 Approved
Mozilla Thunderbird 45.1.1 614 Monday, May 30, 2016 Approved
Mozilla Thunderbird 45.1.0 507 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 473 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7833 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5921 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6133 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2829 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5582 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5734 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5585 Friday, August 14, 2015 Approved
Mozilla Thunderbird 38.1.0 4024 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3341 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1923 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3697 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 836 Friday, April 3, 2015 Approved
Mozilla Thunderbird 31.5.0 2933 Tuesday, February 24, 2015 Approved
Mozilla Thunderbird 31.4.0 2596 Tuesday, January 13, 2015 Approved
Mozilla Thunderbird 31.3.0 2470 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2476 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1510 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1104 Wednesday, September 10, 2014 Approved
Mozilla Thunderbird 31.1.0 1028 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1607 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1548 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1599 Tuesday, April 29, 2014 Approved
Mozilla Thunderbird 24.4.0 1549 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1140 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 552 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 915 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 668 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 683 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 668 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 640 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 740 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 653 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 631 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 17.0.5 610 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 16.0.1.2 740 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 491 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 501 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