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,194,267

Downloads of v 140.0.1:

15,317

Last Update:

10 Jul 2025

Package Maintainer(s):

Software Author(s):

  • Mozilla

Tags:

Thunderbird (Release)

  • 1
  • 2
  • 3

140.0.1 | Updated: 10 Jul 2025

Downloads:

4,194,267

Downloads of v 140.0.1:

15,317

Software Author(s):

  • Mozilla

Thunderbird (Release) 140.0.1

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: '140.0.1'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'thunderbird' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '140.0.1'
end

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


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

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


package { 'thunderbird':
  ensure   => '140.0.1',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 10 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 '140.0.1')
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-140.0.1&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-140.0.1&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|cfa0f88ca7d32ada4dc6590ac80b40f74651098bdd71430804705f51acb931517b21996aac6423606ba3c697648d43ad417ae16e6af7dbe958e9b48a3e8dfed5
ar|32|e353aa6a58e601de2271f46afa02c55c82066352cdf29393cb49008b5d5fda803985e0e96a9cc85fb84036d6d74c490a33f39101f5318e9968a5426119a50d48
ast|32|c85c238479f00c379c91e77209a1cc8e316df1fd3892f57995f25f3caa1c33cf684e8ca18f4026cd7d4a0cebdea33cfd5497cabce87ed2329ed406be32a7cd61
be|32|cb2088f1c0581c2f01bc723b1555b6c53cc29f70ec22995d1e9c22428e378d8eb6cc678fa51c2a9ec5b12a6659e9f5163f4f2b8a837cb50181f6f0b597a0f5c6
bg|32|e07bdb8c52b5c9240d33b5d1a20b4a4ec16533816bf0ebc2d2c5980e67d931dba0c74e35b92072e949a282c242c1489bc859bf73ed6791cfc232a6bb23c1c323
br|32|56a6287fc95533bf4a2281b7cf4feddfd2f55f459f657204e6bd76af50f289491f1a33f30d024c4293a633ec5e47a493d48b9a00dbc4a29a9f1020cbebcad87d
ca|32|76d7561223f38a0b1be027ef4be951143004f1a159e56635b8eadce12ec9156c24c79bcd5efb21899f87f160acb296b439eebe0ef4ed75d850719f99c9041d5e
cak|32|90775dd298eff18f63f0a201386c58c5290a059eaa7bea26be9b564c50135853d3f298d859ce5883c5000263614e8f88c76173034af2d32e9525473e8d076b66
cs|32|fefe1b0a810c74894e802e79d518e51c9f1b16aae93734bd074ef276be79c6fb83684598c0d74370b2514ee8f8820824fc29aeb3205974ccb7a77a55248c0e46
cy|32|a5a9fb75ed78aecbad13a9f32885bde712ad59957eb7b2f748ce56da24a8c540fd991f8637108b335fd7ff5fddcff72f91204a4069f3ed08de6452b7e123b217
da|32|e782f75d861141545c7a755d3a4eacaebbe46c2821cfdfcbe1b5114b50548ed3929728a6061224dbb9f9d81e33c3ce5f0520352d12e07db0b756a871d554a966
de|32|d0f0ddf6f57c6a930c4ca1805517ae47951d0cdc477e3b3af6695bf9fc3f64ec88c927be1dfbfe191984c6a1917383ecb7a904cd5fd5d4ef3d9efd028299dc15
dsb|32|c0f97811398914bd7d381ed1abbbb6ef6f2d5bf136d8b2ea0070d49827e158a4b6cf89e41ea99b2b901e5c14fc4a6762548d50eac63e82c44fb28b22c8cadc4d
el|32|c5f908b3834271966a790715ef92fb8021bd2353b48c6df4737c0cc988e6fe3e33d96e48b9ca186b8632a4de0cc6a7e531e3ad3ae9c5ebf2fe1e82b860a7ec2f
en-CA|32|3c84ae31aa2a1574c752a153b77d804900127e8fe9c0e3b2e42eb1ff1fd23f77dca060008471abab6bbe214c7c7a6b57ca99093806cb4da2d40b8aaab03e46c2
en-GB|32|43b4696c30d5b3816a530c2fdc4ff2c281112fda4f6f39a45e54061520fb30e4c172687916ffd4f3a937f2cf204df03f2daff9d97fa5cfd46e74c685bd173c47
en-US|32|09a3f6d0fc041d63c3f28224f1adb211e93e4f6794c8f6d8b3ecd6ead4ba942aee9f94c1c90d8f5e60e60824ecf997b846d8e5eb21d20e2a131b420112af6166
es-AR|32|454c608ceb155d6b3b21a5b69e4d8ae9c6c954acb51cb2f9ec28aa61659bf48aff9a9e13802c548d5e2517b46609a105ca2c9a9a669a4c8e8b77f2a850227c19
es-ES|32|4662b2a85ecf8ae6ff54e55e320fa0519ba2ac4fdd4b19d25e10c8b6facc6721c5b9dee1852f967b2411033c6681958360e176efec876233e2c99b87398988ac
es-MX|32|aa8721bac2a140eb6812ec63ef30c4803f7c05f84deaffc9de3ba82640600e6ae58c15417e904b8ddae56e514846f5c7bad5da043776c65edaef5237bbf504c5
et|32|17e32d08de186e939d3ccd1e9dc5deb89303f692f043c34f7b005d0961658133767d43891fc340097cce93c6f1ad6e0c61ad8f62b29984915889f587bf2e0084
eu|32|8c88bbc12f6c221f735347c16f9facd4285cf7777d3892242fdaf1707554b1a840c6de743828d7d00b64a093ccd97a2375689a5b0b549d94b91dc2551b5dc276
fi|32|dd3f9fec62a47add677451a4d608c2a70dfd98f577569a146ca4a1cdba6c8b473cd8c47cd10c8007a52af59c8da90078caae46aa8c7354b3b048d55676bec774
fr|32|29fa4f9b970533abbc12291be985598be6b717f57efeb2f5d83ad195bb03d86e5415c2d107a9a174fac13bd6b482cf504b8a90ce961399f617ac3579211759fd
fy-NL|32|921e6da2a98a6f4a3e694d52e29099e80a33fbb8572fc6d9a65d32e1e67797056ea9dae6e93e567147077a0f971fe787b0e617f53513556be30e112d8004ef8c
ga-IE|32|6a8c04bf38443340de119dc3b211980d4ca8b44e54b64a5e90e5eceb88b824548b415bcbba0d5d93270fb8afb9e866eee16b184e66d05436fdecba4a91774f49
gd|32|a00c096b317ff3f6493fcf8595ac89a3a6d0f9ff0573209130150dec603d4ebe677a69a1fe0a965a718137d0fccabbbbc97a6d1e88a6f51164802224b8a47481
gl|32|89f70fefad2fbbee05f45d3849c189da1b166bc2f3567bafce7c044637706c5ef45db8fc53c9b9dda8c43963acc4709378e9c3d048c72876c436025b7071017b
he|32|3ec4b8ef6d17cb748dd3008b5c85d4f9bd4fbf1e0075d458d6e09d7dea23771c318425a2e60c58811d3e4748e71cecff49e039e5fb57db2f074326556a4f8282
hr|32|c0c455716e96d2d66624179338bd3caba4b79f2f8070ba5da0ae6ac7f33fb939a9e0475adc209dd797b49fedb7606ecb265752082e33ef74b552c4684aa146e5
hsb|32|12e2cc025cc43fc94f627aeff25a5bbe0e2f34c0b111b56277f758244de06a0a5f65c1ee9de5854b70112bb83bedc1e88fea7ceff863b61c5a3acb5e04b6d1e9
hu|32|1c9ee47d36f505b4a21ccb76893e66ac864be24725caca1a55e8913e9f82167a61a2d1e2b995f7979770ee4ce94711a2aba437520273cdb1c0e0369b5fe22ba6
hy-AM|32|105ce7438dd5e4b5a5ffca174ba20e8c2bfb2b089ad2f82f3e4576d5406bf65e4f8aa93f1338d96d4efc1fb3b93b4f9e31132d2dd47751744183177954917ec3
id|32|2bb8ce4533a6dba6e16145975abb0542caa66d996d16f17aa1f050e7032b7a374609e0a653406db2cc8b817bc25b02e340325cb341e43346f8b415caed8d0fe1
is|32|ab7c715c4a213381fba4949f2082e2c415144e8b4fe49681849fd26e1fc8d9949c530d7815de55540334f8dbf3b667a5f130b04b7fc0ea0ad78c84701a202bd0
it|32|711d106c6459230284321283a0ee1116244e3f384940e9fac63a41621c5e2e8a96c7bf74b5cf5978e992bd72f1e0ac8c98dbe91fde9482e8122ad9b168ec7651
ja|32|c4cdea88713c0c9c87447bb45062de6a9528dc3e7588898d3e3a45b35df68f7df3af7f7cbbff0e5050d2dd25b0304b5b2d2b53984330db5875f48de2c6549609
ka|32|8d698c11c3d59f26f54dca3c51c59656ece10478b3e8cb7b45cbcfb757427ece797e40d4969754d524f68adca81bc35d38b7e4941ef7463b8ebb624e09ffb9c7
kab|32|b24715ea237248970551b6c9de9a89ed608be2251c562397a36b16dc7e2f34c5d7cf4873c20f47ff4612a38e26d3f0e9ca303895b321c0594a9d53655317710e
kk|32|0fb0062ddcdd65be63ed21e1b2d590006ffbd21a0a7bd258cb532fde73209e6fccfed6a0c0b4775bea1f539322805fe7637d50f965389928fa707c44379a38d5
ko|32|3b36c97a00b53bc8a1c776a0a0ef6428ec21d46360f2effc9695cf3ef5e0769e1741f65b12f3c6064287790392cf38c20dc9af45b71eed0ad99617880542df8b
lt|32|c080a452d7eefe98f712eac7580d9e8c5891bd415276d60f3a8e26a74d177123cc343b0e5f2c6a4f797319a798e88b0e8f5f471e61c97ec7419993129122f403
lv|32|4948eac82568fc492d2c501310ea968ebbf3ed1bb8a83ebb2ad848f8c6a7ed3e27eeadc189b358b0396f674c4926b49b90e59d8ae4a03542d4fd8de48e41ecfd
ms|32|8bb7c4e8533e4f1685b79e7c65df235e7f395076f60ef9b056e47282131889b8b3a360cc78b587923e80bd5338f5992e179e7bc0d1d9ee3f41ed28a6244ca0d9
nb-NO|32|7297d957645d2ba5b351c271fa703d89c81c7579b57bbf7d9148c2f19ca5c32a285b08981d6d0461485e447db7e64b166da5b584d4b24875f7e13e9e4539f6b5
nl|32|b8881f33b648b1bac334510e4c043379d8c1281eb368d7b35acafb114ccf42931de5021097b91a342b10d0caa98727e7b61a26dd9b0870dddd381cae08f687af
nn-NO|32|5852677b49631693637eb92df5316408ad997f76a8a3171decad8d7fa8b16b108109f7746f589efe04b172c3b0891b289d9e9c323a8ed3e102697022da22ff47
pa-IN|32|e05a668a16398d83ac3892403f61970bd6a627bd568d35646d7e1864157c4980ac66aed2bdaac0dd3e9abc2005705166e2a4cf34fb83f2e49fc058ebf044b6b7
pl|32|9b2cd452dc45449f6e0786dc8126a430c5507dea2d86d93226f53f86b2f83f0a81166aa3a4233a45e376869f5c20507d455c9121c4129ce44d7c808c7a5ee7ef
pt-BR|32|267cb3873a16cd1a0a5c9c3938e5e062a9956decd14ad7064e6838aee5eefb60e3586729b7541659f7d3e257f8233821fbfb1b157cedede6a3ed4456c41bd129
pt-PT|32|90565b441e0d2bccef360e494315b72236a3ec4afd057c07c99b3932ce120aeff837644f960cf34ddbb4eaf9b6531c6a9fc10951565133a28d68ee99e00c5d9c
rm|32|7fd2422ae8081adfa306169a0c23c7e78c0f3a6e8012e58bb232fa48cd5512a81e92a120f3908575607fbaeec28f9a6dfc8534a1db3ea6edf514dad9e59a4f0e
ro|32|660359de55b8d7db3f6e1a2fe68608b130a2f4b8863374093e613f8e59568c66663076ccea7015a37177d392d1169aeda7025630395b81b99b0576b6a889a850
ru|32|f8904e335accb7e31b3a92680b7e0ece134327be846ec5a3ba609b5273e1e8c660bd8ff9fe55a5e99e0d9ee8b074e051e63c8c459ebd1bca6ef2c90895d1cd4a
sk|32|a1f871bff48eab30512e6145fbc7de95983467e43ec238df2ffc6e3c8051742bf97de51658de8755b01e67f50a570c5300be94dcf775c03236d03654d79e0756
sl|32|5e9ec6ab57bf288a42fb78c97b4b952264bf96709f951b5db9f0f2bc75de56772496911afce438ba854d8fd8bd6aa276033dffcd033f1f0b86f42cde99923399
sq|32|da0deaee841e69b54acfbeec1156b251da3ef7910d7206c8654239949b4d9a7dc7f2f4c1d0982410543f3143bf2429c82fde10fe845c0fc7e755a8770aa651cc
sr|32|5f3d98794f46414d6546cdbaaf5db355455f3c1f8a9dfac31dc632aebd4aa37e3cd318dec337a6bfa895cd4fdf090c3ca0d7c7c93775689767bac99311fd072c
sv-SE|32|f212540cd23f5842b87afb949f7e0f4faca6be08843be09458cbf5e1a35e3f557cf93d37ef068433122dcd7d8d4ecf025ef882321a8992602e1525cd231f2b0a
th|32|367c0d224d85af187fd087377b8691d400d7a3331ae4160c0c38aebb9ebac484a78c0afa3136bd3a331836dec27017868739b4196b7191a46853edac70ee96b0
tr|32|a212f19545baad382a862a50b6f2f3674afc0bda938785736268d4fe2ec0711440282fe9beaf89e1d0a067ca36c25d925dcbeeab3ff7fb086927da60c7b9d22e
uk|32|d31c166c7ddd8c3a889b232265d079dda14c963345550db787e6bd76379ad8a948770ffa3b3f85a92a288197cbde222641cc53feec73c1279492e54a29e49b6e
uz|32|2326b25d9f7fa4349a072ab0096a378055d5e84c2e049dc5b27a592c0c84a33501142456caa07629cb2ff45f44938ddbd404da3787d06e75ac3fc299baa96583
vi|32|03777c682ce38316b095eb1206230a8139bc2a86ca3cf0677c09b2b849e583bcb870f0f18820e62298b11449b2783a938b6d92eb5e44758fae8f05e97d86387f
zh-CN|32|8f3d19cda463e8a09aa5adf2c259e60378f8b607395ac06ca92eb4160d42b37d305ed9444455ccec807ea88d006075ddfb39ff09567a5c83d65656a465d8badc
zh-TW|32|91940dbc5bcec7a3426dbf31b98e7dfbf617a75417c30b9f892aab8ff94c6cfb30b494ab1f3d59b7ba22b856a042a143ca2f8561a91d9e812cb8b3052ac0a586
af|64|ab215c0b1f4f37d82997f15332896db97961efb8365c76bfe70cc830a8634f0b2219bb47cba82aa92666de68a9a6d442d3e99a573e310d66b744072b7ac28ac7
ar|64|7e12a3bf7a1951abffc0e1eed2046ac703fd7d26dd37bb691788e4acb845c003f1177775d7d9250e57db6317c6a0253c45755934390a74ccb1db01c6a5d36e41
ast|64|1f0c67f46da33eb7b60c35e31917bbd948ac8437cfa4c960fdef08cb6810b0a718792cb2b5afb3d846e733fda79434bacc2437fe60e9dcb46cf965f183967988
be|64|8d478e9ac7c60730128eaea9c38fc69dcef7176aa08543393b6a9d2608aa5610ce01672727feb6793b02ddecd13d4b2563419ccc24de192731d64cd88c44ed49
bg|64|28da113c4a9d28f7f9c605c718efbc8604052cadedec2ccd0449cfa305f43345139b5d4ef0b59860490c64204bbc4786b50bbb4eea98ce983932af15bca9979b
br|64|8935bb40dafe12219a365937deca361a40de3d99b7f68a9f5670cd168e5416062a09b3c6d91080b6cee4c73138efe3970230228c6d21d48e8b1049d09d277b56
ca|64|06b12014247a76be74e0c57fc1edf46455db0b7ff6fc634e4dcaea5b248f2643ee1521ded12356adc19a8efac46c3a97d628235e7d03d997905515c9bfa884fb
cak|64|ca2f6175cbf7d70fa7e2229e4f7c859cf1ac1bd818a4a465857e37310f68fe9495824d5a4116f646d097bdb678bd088292101dfbb2c1c47f808d1fdc194fea8c
cs|64|bcd6cd0763890927eb9686456b20ac43dcc35401b2d17689858947510625cb7c6fda755722f822869de1ab8bf807ed602dcea87b10f6c02182b67d4266e9009f
cy|64|a58bd827798102fc7f7bb383dbe2f20b6ca9bf8cbd00dcf422cb477c5f0bffea5b9cd6aaee867b098415d6ab37a34dbf4865902e9869f6079fac14f467471ab5
da|64|05b138b688e356294cdd3086c3868d73731386e8ff13bbe24a0fe9289f269f0c4acb3cd916c791cbad7c5bbd1326c8f030fc312ba4ad2a0f30a6a95370db0e92
de|64|63eeb37ca1b629477bdf711506f382183d9458ab4294b2223a5c46e4f5d17e798d248fb9d4ef54656fece59cae33445345a2f67d6e5c6b4e4f274a6cedc11746
dsb|64|429dd85b155cbd2d98c2b12d5fa1828d8f3dbfc752a03154e9fdba84cfdb31b48fb2ee363f8e243e1fad77bd6001f0398447f5a3991fa8a8d5e0069b75b8e22d
el|64|f202dabd2800695d386725055f3b513be52cdb558dd2f718567dba3526536ff2c52480c9f416a46995f93c2f463c522cea178b4e8659a297bee3dad2a1038699
en-CA|64|8da0151d4000ebe9417d63e014d56f6939cbb802c786fce8318f2db4a2ab70489cd2d42c4568d9f2007758c2ce13357ce7f156c78e000147d00def36e36ed672
en-GB|64|a0dc285b42fd786f77bfcda1946a55bc032bfb6494427fc707e910cf1a5982735252066fba61622db238f2ad44a53c39ad8a0e0be0c6a779f44e13f3002af527
en-US|64|c8c59b47ae7e0a6b6b160ce69a90a399531bf681a1240be6e33fb94f655ff388419193eeac5bbd52fada0f52eff6a04d03006341937c93ba655d0a884203a4d4
es-AR|64|07e9c1797f1d2fe9a4387fbc1eadedc6e61bce83dfa8bb4410cf5452ff4a5a7f6a5030b5a46cd1c810f8acf243559d5d8a5462b6ad785b61bb624a582b66c427
es-ES|64|f5b25a4317bc5f7a1a53c601c60415438e770ca02d90dc1c0bd058c44ad49ed487558bf458156cadf7e92cfd115b1958dc7827d8986425a3afab7b244b6c9b43
es-MX|64|5766b41117a820a165238fdd43684d3873cdff014f337b6e019e3c43c88f28f64eab35b06a5ed712bcc335c94787eff5dd2e3a0976c8d4a13502ef9cb84280f8
et|64|9540a5bc8dec54e4d829c6fc3be52323007f4b210e5da5ec677aeb729b689f5a35d4a8b12b1f8c72681cd236ebe68408f91b8bf966b4042784d80c0df8cd7e74
eu|64|cfc6d3848f925a722c8792189527e73872ae2a747150989c88219ad77b54f98fb8831ac2a9688166a2e67378ce3cfbd261fe3374eee7ff2686054ce42a02aa83
fi|64|e8cd6412b000ac5a2d3869fdd461f89c3b7c4c4174fec6c72355ba80ac52f565d1d132bd0fe638f4f8e3da8689d54f144e5c651867cbae7c3c555c20ec8faa48
fr|64|73ddf49bbd72750d7614c7bbb3413863acfbcf810ed4e3bc14bff292da3f9eb5b13a90f3a28e0043e87b925ae5311b4fb02eda35777b2fecd2d4e16e1d7bff99
fy-NL|64|b01165a2ba21851f70b1a5417340f072f6fb085d2fe18c4748b3dbaab10c1b3ca4f222d145879966a46ec898331908d4646d4bcd8dcf2c4ac43084aa6a15a53e
ga-IE|64|cbc0fde308d54b908a039a9ef06ae283550c8518ae825f0c3ee1044ac13eb48267168a6ea0c86cbf00c43c6f4bcf4a77aebe0bd3e73f52bb6a49f054a5308631
gd|64|eeb592271355e9e7d939f3dd2a79c1e73fad9ee4c2aece69003b21833a0e35328a6546d6b5151802a784458999adad1593eb92e290a344f56b70cbb3bc2b3cac
gl|64|2dea9ddbfaa792707146c75fef1447f069cdf52f9580c372ad1fd31194cd135f6ac310a34ae36da3c5b37fd21fad705276976520806288a3ac1d3b6e809c9b13
he|64|8e8e641b116fe30cfdb868a5614410e5bc9cf4b574d7916109c6c7163ac0ecc2cdf7a90ae174646e5ab9d647edf888d4162198b909f86e7f4dfc92d1e7b260b9
hr|64|5b46e2ce89a4c0f93322993690953da77cd90fa07c141f56eb7a8334d432730949b5e8cd3526e3af5c9f1928dbfa06b57f7ea9d7a0594c2c2162ee992d6883e8
hsb|64|a445858d9f495c5bc6b08e7c485fa340d86e1a50fd10f8a15c90d970bf3621b15faceb1da1d8db765b8d062a6ff588a777aed829823b2d97ccb1ba0edee5956d
hu|64|84ed8a87225c689f315b26cab1d8b2d3b2b6f03a8446c0737ebce29132f0e4efedf846f465d5067b0961b9dece62c5b44df3d661547525262d20985d6a06259a
hy-AM|64|bb757f7768fa3011ecdee73e405d398106ea2d10a865f6150218452bc4f6947ea89e323fb74e5ed23b832a35ede780e8b4eb40f4b2cc634a1b5e90defbba44c5
id|64|d229903779b3bd109f09106e179aae0346d4c184affea239da5d10750fbdd386f8acd69b784609e8e5d2e830ca453bbc04d31f3f13099e5ea211bbd18d4e03ee
is|64|2d7e4bc344308d9dde8021e67df02f222316143471ac7aa0f621b7c91c7f650ab102e348648c0df8cc5f89bf625e9c8976d6ab6ef76c1dc8ef97eb32658336f1
it|64|449937136cbb31c8654c4257f32022c1b353486bba92f01c1a1e697feea2c02858eefb00ef0ddbbfc39b1ca116e82bb3631df79cc9de50fada984e76a1343c5e
ja|64|d412e050ea4501db6ecb996a832e81582d4e178bb222e6e0e1e44b132207310bdb91c45ab1317627e060ff8c243959527925f420bddf02e27f8d6ce8b1ce2e98
ka|64|dc5c0c51f08604b4e51793d053fc483b81712395df98044efdac04d0f3ae9c485be10a71fb3a46787c5f5a46b2e4ee12f331deb361dc6167b833688444fea6b4
kab|64|841ecfb3469a74976b00dc02eee462f28c5054d21fed2a78b8447a813de1403f2b92bef7f49be6ae09974cc117d5a79d6a1e1d494f4b9c3b45c17a23028d5479
kk|64|1f51b3aa918d2ada9363c5583c5b88c2715a3533afd240ba1ba5247d76c6219dd8b9e77526e4ffe38c96ffc42ffc6944d4c818ac7fdfe3cc8a6c7fba09ecafc3
ko|64|9c95882770a7641c96e231ea682f33ff0835e3fe84db8edacd5747b30c62de8b0a5f75d74eba686248f23ca6d9d1a6312596c11c32d5f8191f77bc6f19b25359
lt|64|c003e6e380b22b24091b95f93851e0427db54adcc3e86024a972d0ee8d816de039f16996f150d5c5124b8e7c0fb736efdec1c2a5ee42416a9192296ae9f60e44
lv|64|a5a1b71c90cba6364a92bcf6ba7385c166e2c75b46132533ff50fec534426abe1182d4a769746abd1cc13422104a83ca39f1687e8fb0dd8fc702fccb42e911c2
ms|64|bc138131c324539cb4dbc1503b87af339bfe9c25afcb99513d8614cd6112f5cf4468c33474fda82aee8f93f6802b686e32055ca716706087030623c8c823b9ce
nb-NO|64|be2c82d45fbce6168d7060c8d3f5016325c8113e5c85b4607b1828ed3bdd0e696b850d076e3623d32002eeef1584516e71d7b97b41d2c6f6c9b3591851017acd
nl|64|ff643e95e98aacf63f83e7bccbb8a94066ef6b096b0e457174c6fb9d2192e4a1d7a3c0985482732ead06f5aecd54ec56aa7546c8d9d821853372a0515e3cb741
nn-NO|64|f3a0249ba11fc4ebb41602fccae77e549d87d30b632fdd7d284fa2de81e426a1f5828c3e3a57778a1b900d047026907a73a480b9012ee2b0648037d970044afd
pa-IN|64|3585cdabe2eefdd71db264fa51cdc99ec0729d67ff079d2d2dac9b61ab5b132de0a5d24862cbb86a6ab32fca1f037e1aba9ebb033083eef0a00bcc87984c2430
pl|64|7fef38b353a451edf01ac13618a804bad99ac4c3e521ee7f2af34a6f7c9d293f5d3132eb5f24cb759528a1f8ef5bdbf13d3135e508e2e71a09c922c59c3f7eb6
pt-BR|64|c67e533cf147f7fd25a2607cd58a442b880c2aaa66ed9a67d533b188aed1d4dae2b284e9883874230f042ff5bfea3c1bab9e9f338a4957dc71b1ef2b22a3fe95
pt-PT|64|e8fdf74b1536d420b0dc9ac3a1bf77d6ea031e48b606b44d8bd76973c3d8bf0f2cde2980c407d06399b1d317ccb4419be8db8c6777b961ba2a43597c5e7015e7
rm|64|a7328dc1094e52917c3fd47a1f872b5a8c0a8efb99dd886a3c10a4a878fd534cd166fbc7a9955182a39e05052ac4193af9c88af425643b585c15982a740f12cb
ro|64|0df1e1399fddd31b4de17d45c5e0b27e55cf28371de312b547fcaeefcd41f638739d5a0daf3bbbd79c8c9dceda17536ee4150c26e8aa65a7ece588221fd29656
ru|64|15e3174f54698f93f376ff5c948a2da82b2989f3925aa6df2722172047b91ad0303b6b9658ee291ac660ea5100ddfc6a63506964a63e91aa18bfc9a985d278f8
sk|64|387f664d26bdb0ce1e4435af4a22819c7168754a1b4f33eb220037af4d020a822e5d212b6b01db1c517d63d40d5cec87ec17bd4b41b027a6c57bb7182d7f6bb2
sl|64|fef07d8d088032d256426af649a22263e0238c25bc051650c6ef5016d91240b547f5c66fcb2be635782ba7b614724d75bff4c6d6ac528a89368b5534a78b5a92
sq|64|68e6729034fc67f20f88fe381e0fbdd3bbf8915d894780b464a899192f11b93a74ef3e4c94644e1bacc282e274b6ad0a09281f410e3c20af5c2fc47e7993ef73
sr|64|1ae03d093c5131dd25d5e720aec7e8fe9a1186973368f0d8f06c9a05fb87e097307b708eebfb45ab0b2184165d956dd25ff185f430fb8e8b61c04b6acf4b3fdf
sv-SE|64|9fcd29591a2ac492e1641189061d89cc26e0f632bec9ccea6653b91e0b0032764bb367e5f6993b0877a14b085985d1d8e402dd48d3b953e54d37050a6f775afa
th|64|f9783af595d9cd1d05d8d9bf467c8b95e2355c9b43ff069c23fd45b027784e9fcf7d79004fd071e1bdc1bf703cb266b0344a99eba15584ac75c34a3535f50905
tr|64|9b79ad185ad0cec8e38cd5e0bfa6cb385b9e564c2148c03fdbab9a7bdbbbfb6c57d132ad235f2fc4b83a3f2206968fec88749c1d09eacaf9a70bac2bb3508311
uk|64|fe58dc2654c68852f7d43dffde504bcbf4c806a51d449f6862efcef3a4d721c4cdeb295f9d1510b7ba908d2a1724ea7c1b76972112b285b37213c6a25ee49272
uz|64|70e335c5b0b9e44a0b70feaf26d7eca49f42b027ffaa005a908c458502fa01a15436b6a8eded0d63f672822606f62009b0f81f449246585bd4796549b5a6f259
vi|64|eee5d556aef6ea02ab37d7e5d545c95c88b2c5ae234452da696b9a1adc83a6dd2c8344ca246da0361795163854d8c0fb4a607e99f2805f501faff5808eda18a2
zh-CN|64|7fc3f4054e73e044950ac877f6e8b13682b12788ab051599f09a0edbfecc4795b9091687ddb01ed320085389c3291f1077a8e182817862b05bc4f5c0ca6cf902
zh-TW|64|44ae06cfdaa0e59acda550fc9ffbac05264025e5db0cc59fd2a5db6344a9ee236f0ff97a6a60e67fb620390b0d48dd1e92200100160754115ae9ebfc2c5792fd

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.0 28181 Thursday, July 3, 2025 Approved
Thunderbird (Release) 139.0.2 40309 Wednesday, June 11, 2025 Approved
Thunderbird (Release) 139.0.1 13619 Tuesday, June 10, 2025 Approved
Mozilla Thunderbird 128.7.1 83841 Wednesday, February 19, 2025 Approved
Mozilla Thunderbird 128.7.0 34783 Wednesday, February 5, 2025 Approved
Mozilla Thunderbird 128.6.0 46258 Thursday, January 9, 2025 Approved
Mozilla Thunderbird 128.5.2 41759 Wednesday, December 11, 2024 Approved
Mozilla Thunderbird 128.5.1 23897 Tuesday, December 3, 2024 Approved
Mozilla Thunderbird 128.5.0 29581 Wednesday, November 27, 2024 Approved
Mozilla Thunderbird 128.4.4 26258 Wednesday, November 20, 2024 Approved
Mozilla Thunderbird 128.4.3 26565 Wednesday, November 13, 2024 Approved
Mozilla Thunderbird 128.4.2 25351 Thursday, November 7, 2024 Approved
Mozilla Thunderbird 128.4.1 16089 Tuesday, November 5, 2024 Approved
Mozilla Thunderbird 128.4.0 18709 Wednesday, October 30, 2024 Approved
Mozilla Thunderbird 128.3.3 24474 Friday, October 25, 2024 Approved
Mozilla Thunderbird 115.12.2 74376 Sunday, June 23, 2024 Approved
Mozilla Thunderbird 115.12.1 13996 Wednesday, June 19, 2024 Approved
Mozilla Thunderbird 115.11.1 30090 Wednesday, May 29, 2024 Approved
Mozilla Thunderbird 115.11.0 24326 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 11927 Wednesday, April 17, 2024 Approved
Mozilla Thunderbird 115.9.0 34129 Tuesday, March 19, 2024 Approved
Mozilla Thunderbird 115.8.1 27855 Tuesday, March 5, 2024 Approved
Mozilla Thunderbird 115.8.0 27158 Wednesday, February 21, 2024 Approved
Mozilla Thunderbird 115.7.0 36263 Wednesday, January 24, 2024 Approved
Mozilla Thunderbird 115.6.1 27412 Tuesday, January 9, 2024 Approved
Mozilla Thunderbird 115.6.0 29879 Tuesday, December 19, 2023 Approved
Mozilla Thunderbird 115.5.2 22403 Tuesday, December 12, 2023 Approved
Mozilla Thunderbird 115.5.1 27071 Tuesday, November 28, 2023 Approved
Mozilla Thunderbird 115.5.0 18743 Wednesday, November 22, 2023 Approved
Mozilla Thunderbird 115.4.3 20218 Wednesday, November 15, 2023 Approved
Mozilla Thunderbird 115.4.2 22792 Wednesday, November 8, 2023 Approved
Mozilla Thunderbird 115.4.1 26055 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 12389 Wednesday, September 27, 2023 Approved
Mozilla Thunderbird 115.2.3 19577 Thursday, September 21, 2023 Approved
Mozilla Thunderbird 115.2.2 21747 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 26014 Wednesday, August 16, 2023 Approved
Mozilla Thunderbird 115.1.0 24947 Wednesday, August 2, 2023 Approved
Mozilla Thunderbird 115.0.1 27175 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23803 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 16043 Saturday, July 8, 2023 Approved
Mozilla Thunderbird 102.12.0 35832 Thursday, June 8, 2023 Approved
Mozilla Thunderbird 102.11.2 25022 Saturday, May 27, 2023 Approved
Mozilla Thunderbird 102.11.1 11260 Thursday, May 25, 2023 Approved
Mozilla Thunderbird 102.11.0 27790 Wednesday, May 10, 2023 Approved
Mozilla Thunderbird 102.10.1 29036 Tuesday, April 25, 2023 Approved
Mozilla Thunderbird 102.10.0 27136 Tuesday, April 11, 2023 Approved
Mozilla Thunderbird 102.9.1 26583 Wednesday, March 29, 2023 Approved
Mozilla Thunderbird 102.9.0 25516 Thursday, March 16, 2023 Approved
Mozilla Thunderbird 102.8.0 35730 Thursday, February 16, 2023 Approved
Mozilla Thunderbird 102.7.2 21454 Wednesday, February 8, 2023 Approved
Mozilla Thunderbird 102.7.1 19954 Wednesday, February 1, 2023 Approved
Mozilla Thunderbird 102.7.0 24124 Friday, January 20, 2023 Approved
Mozilla Thunderbird 102.6.1 36229 Wednesday, December 21, 2022 Approved
Mozilla Thunderbird 102.6.0 20270 Wednesday, December 14, 2022 Approved
Mozilla Thunderbird 102.5.1 25186 Thursday, December 1, 2022 Approved
Mozilla Thunderbird 102.5.0 26052 Wednesday, November 16, 2022 Approved
Mozilla Thunderbird 102.4.2 24304 Friday, November 4, 2022 Approved
Mozilla Thunderbird 102.4.1 20823 Thursday, October 27, 2022 Approved
Mozilla Thunderbird 102.4.0 16189 Thursday, October 20, 2022 Approved
Mozilla Thunderbird 102.3.3 20337 Wednesday, October 12, 2022 Approved
Mozilla Thunderbird 102.3.2 18413 Friday, October 7, 2022 Approved
Mozilla Thunderbird 102.3.1 18926 Thursday, September 29, 2022 Approved
Mozilla Thunderbird 102.3.0 19842 Wednesday, September 21, 2022 Approved
Mozilla Thunderbird 102.2.2 23219 Thursday, September 8, 2022 Approved
Mozilla Thunderbird 102.2.1 18023 Thursday, September 1, 2022 Approved
Mozilla Thunderbird 102.2.0 19397 Tuesday, August 23, 2022 Approved
Mozilla Thunderbird 102.1.2 22263 Tuesday, August 9, 2022 Approved
Mozilla Thunderbird 102.1.1 11504 Saturday, August 6, 2022 Approved
Mozilla Thunderbird 102.1.0 17273 Friday, July 29, 2022 Approved
Mozilla Thunderbird 102.0.3 18750 Wednesday, July 20, 2022 Approved
Mozilla Thunderbird 102.0.2 19811 Tuesday, July 12, 2022 Approved
Mozilla Thunderbird 102.0.1 14146 Thursday, July 7, 2022 Approved
Mozilla Thunderbird 102.0 20739 Wednesday, June 29, 2022 Approved
Mozilla Thunderbird 91.10.0 31626 Wednesday, June 1, 2022 Approved
Mozilla Thunderbird 91.9.1 21204 Friday, May 20, 2022 Approved
Mozilla Thunderbird 91.9.0 26237 Wednesday, May 4, 2022 Approved
Mozilla Thunderbird 91.8.1 24126 Tuesday, April 19, 2022 Approved
Mozilla Thunderbird 91.8.0 22348 Wednesday, April 6, 2022 Approved
Mozilla Thunderbird 91.7.0 30247 Thursday, March 10, 2022 Approved
Mozilla Thunderbird 91.6.2 14335 Sunday, March 6, 2022 Approved
Mozilla Thunderbird 91.6.1 23290 Friday, February 18, 2022 Approved
Mozilla Thunderbird 91.6.0 19956 Wednesday, February 9, 2022 Approved
Mozilla Thunderbird 91.5.1 23640 Tuesday, January 25, 2022 Approved
Mozilla Thunderbird 91.5.0 22129 Wednesday, January 12, 2022 Approved
Mozilla Thunderbird 91.4.1 25610 Monday, December 20, 2021 Approved
Mozilla Thunderbird 91.4.0.20211214 16829 Tuesday, December 14, 2021 Approved
Mozilla Thunderbird 91.4.0 18926 Tuesday, December 7, 2021 Approved
Mozilla Thunderbird 91.3.2 27049 Friday, November 19, 2021 Approved
Mozilla Thunderbird 91.3.1 14312 Tuesday, November 16, 2021 Approved
Mozilla Thunderbird 91.3.0 22559 Wednesday, November 3, 2021 Approved
Mozilla Thunderbird 91.2.1 22548 Friday, October 22, 2021 Approved
Mozilla Thunderbird 91.2.0.20211014 17861 Thursday, October 14, 2021 Approved
Mozilla Thunderbird 91.2.0 19194 Friday, October 8, 2021 Approved
Mozilla Thunderbird 91.1.2 22945 Tuesday, September 28, 2021 Approved
Mozilla Thunderbird 91.1.1 21724 Friday, September 17, 2021 Approved
Mozilla Thunderbird 91.1.0 20864 Tuesday, September 7, 2021 Approved
Mozilla Thunderbird 91.0.3 20707 Thursday, August 26, 2021 Approved
Mozilla Thunderbird 91.0.2 10507 Monday, August 23, 2021 Approved
Mozilla Thunderbird 91.0.1 14220 Tuesday, August 17, 2021 Approved
Mozilla Thunderbird 78.12.0 28815 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31942 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 21024 Monday, April 19, 2021 Approved
Mozilla Thunderbird 78.9.1 18551 Friday, April 9, 2021 Approved
Mozilla Thunderbird 78.9.0 19300 Wednesday, March 24, 2021 Approved
Mozilla Thunderbird 78.8.1 21178 Tuesday, March 9, 2021 Approved
Mozilla Thunderbird 78.8.0 18909 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22991 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17657 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20351 Tuesday, January 12, 2021 Approved
Mozilla Thunderbird 78.6.0 20551 Monday, December 21, 2020 Approved
Mozilla Thunderbird 78.5.1 20608 Friday, December 4, 2020 Approved
Mozilla Thunderbird 78.5.0 18748 Thursday, November 19, 2020 Approved
Mozilla Thunderbird 78.4.3 14941 Wednesday, November 11, 2020 Approved
Mozilla Thunderbird 78.4.2 10905 Tuesday, November 10, 2020 Approved
Mozilla Thunderbird 78.4.1 9301 Friday, November 6, 2020 Approved
Mozilla Thunderbird 78.4.0 20240 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11762 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17202 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16226 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5322 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18606 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16627 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9604 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18454 Saturday, August 8, 2020 Approved
Mozilla Thunderbird 78.1.0 10161 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14087 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10455 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17263 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22090 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14137 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18462 Tuesday, May 5, 2020 Approved
Mozilla Thunderbird 68.7.0 21937 Thursday, April 9, 2020 Approved
Mozilla Thunderbird 68.6.0 19716 Friday, March 13, 2020 Approved
Mozilla Thunderbird 68.5.0 28064 Wednesday, February 12, 2020 Approved
Mozilla Thunderbird 68.4.2 21263 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18655 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18209 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13396 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 35025 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16949 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12507 Wednesday, October 23, 2019 Approved
Mozilla Thunderbird 68.1.2 17572 Thursday, October 10, 2019 Approved
Mozilla Thunderbird 68.1.1 17741 Wednesday, September 25, 2019 Approved
Mozilla Thunderbird 68.1.0 17598 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 26027 Wednesday, August 28, 2019 Approved
Mozilla Thunderbird 60.8.0 34741 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18439 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11163 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20068 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45082 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8146 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11794 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8123 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9174 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4699 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10698 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15355 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9201 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9297 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11100 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10595 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16950 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24486 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15891 Wednesday, July 11, 2018 Approved
Mozilla Thunderbird 52.9.0 7504 Wednesday, July 4, 2018 Approved
Mozilla Thunderbird 52.8.0 18848 Wednesday, May 23, 2018 Approved
Mozilla Thunderbird 52.7.0 20398 Saturday, March 24, 2018 Approved
Mozilla Thunderbird 52.6.0 23777 Friday, January 26, 2018 Approved
Mozilla Thunderbird 52.5.2 16363 Friday, December 22, 2017 Approved
Mozilla Thunderbird 52.5.0 14550 Friday, November 24, 2017 Approved
Mozilla Thunderbird 52.4.0 19546 Monday, October 9, 2017 Approved
Mozilla Thunderbird 52.3.0 17587 Thursday, August 17, 2017 Approved
Mozilla Thunderbird 52.2.1 12749 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 6050 Thursday, June 15, 2017 Approved
Mozilla Thunderbird 52.1.1 9471 Tuesday, May 16, 2017 Approved
Mozilla Thunderbird 52.1.0 6429 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7272 Saturday, April 15, 2017 Approved
Mozilla Thunderbird 52.0 4028 Monday, April 10, 2017 Approved
Mozilla Thunderbird 45.8.0 8860 Tuesday, March 7, 2017 Approved
Mozilla Thunderbird 45.7.1 8777 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5669 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7084 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11834 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2181 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 2267 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12355 Tuesday, October 4, 2016 Approved
Mozilla Thunderbird 45.3.0 34679 Wednesday, August 31, 2016 Approved
Mozilla Thunderbird 45.2.0 52898 Sunday, July 10, 2016 Approved
Mozilla Thunderbird 45.1.1 613 Monday, May 30, 2016 Approved
Mozilla Thunderbird 45.1.0 506 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 473 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7832 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5917 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6132 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2829 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5579 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5727 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5581 Friday, August 14, 2015 Approved
Mozilla Thunderbird 38.1.0 4022 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3339 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1923 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3696 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 835 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 2468 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2474 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1507 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1104 Wednesday, September 10, 2014 Approved
Mozilla Thunderbird 31.1.0 1026 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1603 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1546 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1598 Tuesday, April 29, 2014 Approved
Mozilla Thunderbird 24.4.0 1549 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1138 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 552 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 913 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 667 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 683 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 667 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 638 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 732 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 653 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 630 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 17.0.5 607 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 16.0.1.2 740 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 490 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 500 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