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:

3,473,224

Downloads of v 91.4.1:

25,558

Last Update:

20 Dec 2021

Package Maintainer(s):

Software Author(s):

  • Mozilla

Tags:

mozilla thunderbird email admin foss cross-platform

Mozilla Thunderbird

This is not the latest version of Mozilla Thunderbird available.

  • 1
  • 2
  • 3

91.4.1 | Updated: 20 Dec 2021

Downloads:

3,473,224

Downloads of v 91.4.1:

25,558

Software Author(s):

  • Mozilla

Mozilla Thunderbird 91.4.1

This is not the latest version of Mozilla Thunderbird available.

  • 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 Mozilla Thunderbird, run the following command from the command line or from PowerShell:

>

To upgrade Mozilla Thunderbird, run the following command from the command line or from PowerShell:

>

To uninstall Mozilla Thunderbird, run the following command from the command line or from PowerShell:

>

Deployment Method:

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'" --version="'91.4.1'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

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

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


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

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

Exit $exitCode

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

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


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

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


package { 'thunderbird':
  ensure   => '91.4.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 20 Dec 2021.

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.

Examples

choco install thunderbird --params "/l=en-GB"
choco install thunderbird --params "/UseMozillaFallback"

Notes

  • 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.

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'

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.' }

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '91.4.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) {
  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-91.4.1-SSL&os=win&lang=${locale}"

  silentArgs = '-ms'
  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-91.4.1-SSL&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
if ($tbProcess) {
  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|952d0940a1ce6f122d22dac0eca9147ac660724e4b1b1c555aba38605a322d09943fddf9363f9ef5298b7d431793ba68022b12648f1474f4593112d9aa41038a
ar|32|66b126afe4681a13f16f9df17ccea6fb3f00683691bc796fa986f31ba90372645115a9d4d4481942bcada3c8a799e248b92c71787d83ee9f726a323e80492017
ast|32|ad93ed6909b5f0b54dc622028a05c77b809186dd1f797f8d180db9d4530c7e52d0b1f68df388e7d48561f238f36f04f496e3426b1fbb5a087d9977221a6876a4
be|32|45342bd9820af4bb9a55fde8476c269e0d76ae4b06579409d945bf6ada02a6ffc55e6bead1e5dd349a69ea20535cf6c755fb07aeb2c6e1786c585dbac1a8a2c3
bg|32|a80266ee0bddec9bcdd44a20dded5311568d76d4e2007e6e1cc7dc8d42f1973cbbab6e66a9d50caf926bf250d4b29b2be96e3f0d76df9eef4916b4bb49998ce6
br|32|17b450b74a2297167ee00afaeb7ab8cf0eddfec30cfecc525acda627154d490d16700aa754078f7606f073ead747f12d303546a568b723add12c8936a094a411
ca|32|8fb13fceec03405c64f81cf48cdcdcddfe78c6d3eaf86691741e40450263d4bc4a15ef4616c4d21a6379a5d031fb38f92f4ffa8c6dd99bc4746dfbdfc1be8277
cak|32|acf835ea8ff951912ac9915d4dc7d5063c0cb655e80d891ea345c82a74a0d366380336fc7a80b2900ea359580a7f47c7d48c9369c295f87f55a147d322e62fbd
cs|32|e74734e60d4976369f47c95a928b9ed3b72dcb57d03bfe74e824f7f9f79f6987e70bfed1c1ea1b2f8edd75f8585bd4dcaba8638d602bd5f230b8871ec36e0b27
cy|32|937800957e7103df8b97e1f4ed5c66a97547b4477cb45c9e1c394ecfa9db5520f4fa365867d5ed3160fb3d55d49c99b22f3b26d770a2c719dcb5c2ecaf5457e1
da|32|f2b573b4da71966e2cdbe9ae4c9554a70268894ec6716d5e0aadcad764bd50980425e08dea6ed382fd69d0334b5f543ac567c4ad37350517382d246f0c9665f9
de|32|398bab09de00dcfe55f7589c81fcb450a09ded2d3c72e8eb859e7edf145132a200fdfca4ef5d243e8b81ac04f11844af9f3d9ce23d0bfcc041d02636b5c0aee9
dsb|32|da0b41b7eb6d39da78d229c2d3cbae17045da6c88ae7f74b912c165489c247f58171ab6662aa662db087a78aa23214f445ab4dcd22bc86f1de58d99b2ac63a60
el|32|7d6e35ce382aa4502cb35cb8521975c0856a43c96ab7ae99e39f019c261f0a2a5730d27efe224c9dd951483da03c5a796f5dc3efe7701791dc77b6aec582ad60
en-CA|32|206d2f32ce55ace074a97a8afed0b70bd18958392f31aaa33c0f1d57bf01297e23b9064766d3f2caf482af9c65cf68152806f26cf8db6f2864cb4091b39849f7
en-GB|32|21714995000233d1ab8595c77e4f2f15fad28d2f7589e716447019d6681291b7e56a109641931b9acaaddacaa8e327237c516169d3c06b73e29e02d0cfa4b066
en-US|32|cf215894080e4989922ec16d9229b732b30cfdebdd0a7509d23ef5a18882fca87c6a385df448c10079b314b8de87a127f734aea9e752e21abe587c907c88b042
es-AR|32|d487c6bb95bae8d9597ce007dac1331efe4c89cccf0c1c6c17aad3f392f86d300a19acea378ec00d9a79b9c675f3d1936b1ac17a3301887479e994b6463fc6c5
es-ES|32|1860a954215be43ee3e432c959e1d4bfd8c873a78766d25f1a08e092aca58dac368c8491752aadab7b8d945876e113473cc45b62b572089e36cbb7c11eabb492
et|32|3650848593ae7cf6ccaf451e1b8a455f076bfe1223b78053b406d943b7573ec014fe97ab5e0ddcefd174141a9f29fe642e635f5475c0f9081d34659c4f9c2dcd
eu|32|63f23940e0fa142e5bfe15f095d4433d9f819a7abaafeda05145048c86496a0c152772ebf796326b6784c9762d24d7cec1cadc82dc15ea06f94aa56b27e87840
fi|32|68d35a40cee85f89a0c61782f202092472bc6285e615681c4b1c42fd7a9a9b47e1e8814867ec500f0e884ff5dd2c0861f14dc44beeab17bb33659db29f72b8eb
fr|32|d1d91782c27f54b590a020bd21769a48056d0ae167df929c66f858cf358a6103a60c0c2eafe74be9d8c01dfafa98abaede822c33dcea2c94a0d4accfedf1d6fc
fy-NL|32|193563a87c647c001c627bd9ce088758005bc58f4131e46ce2a82c4708bf2dc43df4b9156fee8b2d5c1169fee8aaca9684a85c33cd52314cb1bddcae529b76c4
ga-IE|32|8f1628dfc37d87a82af4fe2833839c0f36c1dd73126119fe621acb928e1c16f3b5914bdb8563cb3165c3ac4bf8d6b1f581bcda72c7abda106ac30aaaed4e36bd
gd|32|5d44203006ab3e43af02c007baf22fc92cfb20c4300a2a07bf13357c6626ae4cdfb786db41b1e39191d1f7dca9e911964ae4862cee7f0387b544135a6690301b
gl|32|c8a4c6b1e90dd0811ef815fae5184ce3a7e2d00f8d9e8842276bdbc5335f5bb39c0b2a71273cdcf5aca4b2b7122e989ee8a1278155867d28e808fad7a8550ad9
he|32|b50cddcd657dbd63400766269b8e06038a196472aa67adb7684f76db9e9666afbba27f39b0d6b213668723d526be1a373b859f7be0b333fa6008618dc3ec6e36
hr|32|c1c85a94a28700ec9cddec0ba7d15f4900fbe371a9b6c49613fc82dba97b9a8972684cc99d0d18a352af487a4fa1d8aaee56aec071f9e13a188f313b76cd7209
hsb|32|bfa5a1dc65b52fdc63bf8c848a6cd2edae0ce71a8581fb60fd0ca8871cd90df5a2565f98ebe6a287ec86cdad08ee59a20038453cd918791e7309cc55d00f0500
hu|32|16a35fbd824ed4b9a7aaa7a6dd92d432c1d66289a4a5dd92a9667b5bbfc247039a574eaa9c8f1e84a4c29f1639c72d54a2393ff21c7f838af9e0033e1a152e0e
hy-AM|32|cf950ea73b36f93f984cdcbe8c519acd3937587f44f1df3ac9d3d3ac020c80ad21d365125919cabb95102f6815720276d5d110d315f7bd237b79873e43b646a9
id|32|e1a198b9ba9f152cdeab35761d8aa625e8d548d13a939084d0f62e4e4f27befceee475db619341d70989d1ca76e8380adc1a2b976583911b4d1079bddaf8ebb5
is|32|4969103e2b5b10e7e3f0ec772f916e0845dfdc84922d7efab354824f83c4b44119bca6dc21ed94df9e7b4afbdd8865bac717c82c29ef610529f6c677902e384f
it|32|6131db518363d5e77860aad9a68e853b3dbad8c915422dcb71f97a83a8d5520fa9d659081865b640449739891d085192b72a7300e8a72fcb1caa5f75e955b519
ja|32|36c5393a65c64ba3f1e7cfdad7eb3dd6c49b7a7130dee00f0a84c76b46c68073dda1ee24d9f14ba90869162912a15bb3809d2cb2bfc442a0c1df80a088dd7608
ka|32|eb36b1b5dd8a84ed6ab32c82a98dc426d6b4614d85675caeab1a51968690c9bc19fd66b754d005710b367c06efe57d786f991a8e9e8748cfdb454d61c37eb268
kab|32|e8f2108a09009f8843c8c5ed00befc734c8bae2abd628bbb6c3fe41a96352e8373fc6a7bcec3ce284f995ddc8b86ee879f562e1cfa02969dc34a8c775c80b5ae
kk|32|b7785684ed5dcfc4c506e48871e8162cbbc3a6d2654dee2c18a42d3a695c7c5dc600b51163075459c27f0a33f8a094cd03d55271cdebbfa9d70f550b03dedf30
ko|32|9dacf86ffde49f484f4b130273b34da05a26591548e900a0be1af74ebe50724e0ef64782dbe0f0c6b585375ea3fb2f24b96ae34348206bab2a8bf496f53f53ee
lt|32|0f8f371dde587472f7fbb0406f542e46f87b7175885902626bb7c5726bb95a933a74608299774a68c3460faf283e3a5bbdfaaaa7cdf683958f15dcb236b9df20
lv|32|1c41d23437bfefea6a7a7073563a8d2127d69ce5bdf7c7d7544ad141d0efdf90cd080c26f9b2791e2db8d114fc780ab7d9e217ee9f13f4fa14e5301f4cac0942
ms|32|460cc97a68eb5e73405415ab0b456d55c492f03272c002978489e2dadb616a69785df1ae6d19154033ff7ecac178a068249b7179916b3d91c9bca54dcf95b8cd
nb-NO|32|ae3c9e25528c50319e813116df88c4e8ad95c3a85b06606debaae290945a70fc8f8b3465e8f60a061a977bd0e19aa00e5ca56bf846cec8115f3498e2c9a0b09b
nl|32|a381d9bf40171ed5c1e390e0856af3abcba36a2e2894a06718d522194d69d91a93b210666fe64fd4d19aa7ef803f228851d231bd92e1fc4edb8187f226b64e20
nn-NO|32|49640845f7e4a5e4188a563c40ed802cb056267f94b06aa8a5191095c25055f36f37f84f0a7a11815844992f83563b9691af31403697492825c510ea8baf4ac7
pa-IN|32|c0131bfe73410b1e1c23ea74881d5ccb233376ae92e40cdce62e44b0297b3bf5fd8773aee0457dd812b5774daebb187eea5864387b7f84cf1b4d795bc63564db
pl|32|96d9a8be14252799254b96780e8e87ee534e6d3bc04d70c4abcd6439aafc901ddbe17a3e9e818965676f6cf63dd624dda779b6e765b6fdaef32242296543f34c
pt-BR|32|5d90b8b5942193ec38c83ac11aad752d5c6a7ed44e86ac6158b5c3c98f9583cc59ba2ae768605416151afc8171a5deab28eb316b0ff2b4fc2da32ad1e510a88b
pt-PT|32|eef255eac362aa2fbeab6020acccb66205e1b474ad4e0cf266bec7d6f3e9a62c1e7709ae55bed2b934759dcccc3f353fd3605fba229e4d553dc472764d663f6a
rm|32|d710aaa437378b41c291a0ef95113b05dbc59b098c3a3e3e28096db9e070d3cd2994cc1b8ca9aa81a3eaf7706b303e38dc7f1ad37787f8831eabc17b383b3d44
ro|32|cecc3489e1df7ec1e00e3d7c78ce0a598fcf1ff60b19c9382a1942db57e254fca612fba318546fa02ae7e525cb8d4296589bd00a1fc23fc8cb0dea82bfac8b4b
ru|32|9ce79a86cd1ee4bd4f8b84323d612b77384d8c4425bb0773fdd2e02023e370dcbbf5becdf76df10be26bd36d15608cce6cd99dfa84cd5d801bae026f4b62f873
sk|32|0069f143303fad5c999616c7d73227b89022f60d4c6c850c51ccdf68901546b76ecd7367c9074ef05b0fa44a48e9aa30f23e338374ada5b7209f237eb91d20f1
sl|32|1a3f45b3e8126768ea08f28c1d5a9da951abeee9844c14d9761f5a800b490f5533b36050660bc756b4d1aa490645ca226781dcc8457358735affe6e752f970a3
sq|32|758335a0443d5b93d68e39b1b2abf668020e7962e54d9a6f06ce1ffcde53d01fc71ea0d3be412c7f2d823dce2fe94c286df47e381683ed13456b60ec19f312fa
sr|32|1c7de9ae4a72c8a45b6ca340094cd3acb7c5218afa137a5d7746267c8b3a0224ec4daecfb6e3c4209368db07e57b38dd28082b6d66e221337792cad6bd4b8283
sv-SE|32|e100482445907ce24b0207c5cbb841a410b9de939705509c887d5f95faa59c53c5d54b333f7a694f4bd56742454cde2fc8b2a564e14a7b22eb5b32ec24dec2e0
th|32|67e042c6663ddbb70d20bafd52d246716812a2e4fcad5d51194e12d3454d9eeb970dacd634dcc16150572e1d4db861f61817e01d39cb1a804a5cb09641583dd8
tr|32|f2979acf81fb55a37d7780b19f873ecf37bad2a52165839fb72bab02576085696461acc91a2ac815cb00d1e72274b83a254ecae52a2e3d53660b32bcd48d872a
uk|32|5a4363550470d4006c70275b5586f81e00c28cd50aec171bf07a0d3e5c2e9cff87a08c56e91b7238e25fc708560a43b20f73ac1276c3f96f825ec3278eefb7fb
uz|32|107ec5e99f9cb333a9c5a7e6ed27b587a1bc2acb7bae00e15ed6d1ed4081586d18d12bcf262d80d531f9574277464a589f63afbe6fd147ea6a28807d52b24438
vi|32|578d5b7f371ecb7184e6cbc67f6cc474b1e11e50bd05a6db7eac3c7173c9c7b35969e42cd1ee2a61ca2f7e09b80f48fca1d9075e06af4eaa90a72814b783b337
zh-CN|32|2771567768e569f9dc2bd66cdcbc4a7258563e50f7ee99d70bce3dcdabe03f3e68512e027ef12a0731f4c382e24f8a830f29d307f6d1ecc7e3ffbb8515f6932e
zh-TW|32|49df2b89c68d3d01d7ad9fbd3603f89c90c4381635a442496875b6e8569c0d56ac016ef23148c6ac82ac51d5b850d435a28b0b5cd2f52a0da1aa3bfb42b11b20
af|64|dc2011fc3fb24bd1c763fc6e042f671727fd6ab6a7c3c26f82bbe458b605f2ab9f3e4c9b408336f23743ad2be4eae52ee8e5d1d1c3058da8bf87fdbb4b060b1a
ar|64|2c9c1fac0df0f600d06ff810f24b38e1fd5d4220f58882040927556edaa070b221ce9c0828e5f775456b453d088159b3ce3ae30d8eb85915bc9aedf610db4c15
ast|64|ffde8e49a5994afa41d35c9fe105fb8332922859f1d2d2a7a73cbe02d4bf5616a1d266d866db2ffa812f8aef8e1e6627bf714cc4381a633758101f6b553f5dc9
be|64|4374f104bcdf2866311416f15be5d1044a37caeebab967cef6171714ad4967b8016b44a9325bfe0600aa04c9a978ff576c740c122b3f5ebd1e6462a45e97ca08
bg|64|48db7d388b6e46d939e7bf52935d2663acd5200985519979f3ad5aeb2369a4863048f992f5544e7e2bcc0542f0af3e15d205895790e9f5c2c57628a52d358b3f
br|64|4766790d33de70b3fa13a2dc491a7682c6adf5b38e2798026e85a4cdaaf7a9f89e759ae7d95993ba3c8ff8fe6da5d47f23809b32badcc9e9b8309d002e735821
ca|64|8f90dcaad58f3730a9278a10b984798b923fb7ede2501a934d0b0dc44dfb52aed03cb19aa9e9a8c1f0af4310b1549ec701fe4a32c15f11d15ccf3e72acf98a3e
cak|64|2a4549796ffc1c455b8194f33b03e31c782e9487d82c0964ca644529faea783c4ff04eef1b2fab6806450b0938bd3050fd129958beb956f5f811c0efda7f9476
cs|64|f8c478b396caa2773865d4da7e09d3fff5c49ddc21743818fe1350dc5ed54b81573d1d39386d4137e9b630e31354fbc4c811d1cf7de04052c4f4f3226d23d789
cy|64|877a83d44c99187c0d76f2fc6e3b8676a5ea7d16a3069e6e308569230bb0db19ccdd93c8dcb3ddcf2e3edb055c92bf610f6a2c363fffc63f4467134fc88d2a8e
da|64|ad36e73c7887091bf8cf16dfdf7367718ca98a2fc5a15ac2684b5b669322f05d7966d06e1ddfae4860e1d8876567f2ba368132597758022661882c0fe5b6bd19
de|64|b698b5b11a97eb9e41c72826ff674c22125d38b152b2f8ba5da42e61a551806027e58a621e2f3cee2d00b546286abb1a96de9895df0282eadd92ddecdfd14200
dsb|64|3d113f943942c52b90d2debe29fa834f3054cccfc66d440ac1ab73fab8d730c379ad5d25e2835d54f3c5b9f4c0d28fdadf898d7cec5be61f8a0615564a05a090
el|64|6362d8b7f495c9a34b7efc1072882a15e78d5cd04c519e605142680681da3c17fa4befbcae0b88d8496aa349fa4a74efff445f0a635d78943c73e84d92f42dc6
en-CA|64|88998345871ba45bb05aa73191714d77474e596714c6b9eb05a7a9eda77e3f6d468c301c08c0a4b1aef51b00ceef086eea7be967528eec87a80e50d845660e88
en-GB|64|d6632ae3d4afa108e5f120a8c77b67884511925e20ada88cad71760d1d6442fabf75352e17d02804d8e0bbd0e432354a697a00a2b886b3d4d55e6164d84721ff
en-US|64|c151688fdc47beceac2d4937bd18385190c539ddf8be5a0f3984b2be3e995bd78eeac2787ee9d5516d72e894c41ccf25e1b47a858131d87d9853207aaaa3e203
es-AR|64|1f282473a5694707cf8f498a66b9d53514b54e28089d844479101b62500657246032a96b789b8a0900d882a520ca41dc169b5b85e63fa96712f5b0295600784c
es-ES|64|67ee72c0b41b204284e0d546441e9dba26b092cee6ea0e5c0a73504f72bf4d5b19425a4cfcfd555f44e16f65c2080d4ad8eb1eb682d210b7ebb1ea6f27d523d8
et|64|7f0d67eff5e695c5a97d5c72eb8ee0cb7fdaebc82500773d24c07abce84dbd273d4cbfaba98885bab2466f9fcbab474bbbffcb4230d8e3bb5b65168fba566451
eu|64|aeb5b8ef81194115058423108baaa40f5004926f0565da01bcf8f9c64fe940a0f25bd5a0f780451e3f8079b5128801e2dda27eb36402a86f06ebae63c5ba07c6
fi|64|adc4584a9c1841cc11728061d80d66a66ca809b93694f63d814ee40ca57a31adc37331aeb32495ef6ff24590bd661a639f23fe124fbd24caafdcc1887aeeeba1
fr|64|024623e3d5db6979c2d3c23e28d8d84a8d89e2f84dd0060ef1dabd10ccb2b6dda00c0e1c3d1c7b6719072f353554a19c3f811ef7c83281ec8c31116d1898b1e9
fy-NL|64|4e11d635eadffa711ee83bbfb2026b8b70e23a77c519737e5024d8b4cf0e0d180298514ae1fa96fa428d2375207d20ac684857b58897471fac8e696356660cbc
ga-IE|64|01ad37f6e7ead7afb2439b73b7f916f53a474bec24fe1aba3709e7661be4588735a2dc75af5b55c30c094d92db739878c12b5dd3684ebc308125f655c2c37595
gd|64|68d7f1a7c09433e0233f370946115eb0702e999c9a2a71ab69df2bf24d5afc168e721e0f7b0dc9650fdde21437f762a95f9b7ebe02451b903b4a48acd0fb71fe
gl|64|3e54cbe8297deedd4bcc4f545257b3ab8ed2bcb8f828b38adebff4a5fc727e5b05dd1a3ec8c68d69217b226386ac7b2ef0e4ed108273bb80ebe7f42884153827
he|64|fe74237f4488d01103bb2ba2095b9e483ad6e0cd042b728b913ab21df5dfc6624b4b7626119f98feb130d2a938025fbea0440dece38fb25398572647f219f10b
hr|64|82fd890832b345a26b1f19e38d946387ae2109144b465ca7b5432f0390226e89c24dca2b0e35751cbf733a2a1a58dee3f64b06322cf7c5ce3b80bd211da1f914
hsb|64|fca49575fc61f0434845eb87f0e0dd28dcd8a4405622381a23d78ceec7404599f1fffa7566844d91e304d617b5eae17a4276676a8e5c664db9cb47f46aa11615
hu|64|416076a24bbe55cbadff4b3a58be9cff827be51980aae71781a0a96c788696ae90412078e564b59e23fec0a41f1169ddc8d5e9b6e735a4072924e8ea0b5b7456
hy-AM|64|094973007a98ef2f047bbed1bfd44c0d69244cef0f701c39ee719dcb885d5ec63c4513c5e61cb8217a4bcd0a0d7524dc2f3068dba20e5621f97db2629faa7d07
id|64|228d618c431a7dfaad2b2d45701ff6d70ec646be7663516d1f99fdc95b3c39a2e9a00f1b4df2422ec30db00d647a4dc7604de3f62b389267254e2adf6a6fc87e
is|64|d82ac6f0726570c3009a8bb7b56459922bf2f7ae5b9bd27a4ddf9a83c2cab173383d39567adcf1b416c256cb8f8fdee0e249d3396470fbe42cab5dfdf1bbbe79
it|64|7aca3d7ccc310b30145190a05a063b81be8d600079bf826a4c942c83d6c9a3eb1cf6ea3ad6a0a952a529b1ecf28c97f846d0ed399af1ba3abed76f4083d139c4
ja|64|08357d30ce72ea8e5beb137fd881f48ef39073979c30cf8a9c1014c8364939eb4fa01f9d26e2e8e42206b0f59426a5a11dd2d8cd21466b4bde00b4663659e5ac
ka|64|7b064b4343b0f893da5b90f27a232b34c8253e530cd99820abc67eb45da8188c495883f72ad6710c217571f1a839209d3b9354ad609b6a8593b159c8415a265d
kab|64|31cc9a7e20afceae926180a30e555f45d480400837381af06c39b9dac7a09cd9eeca6ceedb65b65057b890a03ad7deed8a74c4ec25ce395e016d5d021698556d
kk|64|460569726113baca22f0aa4d077feda974b29961830d69ef12968790e02d48c868d32bba743ecae7494a90a4654de9c5627940dde89468f68842ab4af90e8ea6
ko|64|14dcd49f8ec96c3c367525d2d7a81b278d9ac2b8182333ca7f33effbfb58b5b736f6c2476178d695d4166b9299107b7bb0ac8313bcf8e4a9c39ea07c23cfd2e3
lt|64|f347ddfd07524e382f08b26730393859d01d84cfdff8add0c8b8cf03218e2ff4d7a3c2937d7d2eae27dfea3d1e1361eb52b9975048e96e0bb63c2bbef5fca03d
lv|64|f5cdf590e45ff14f381629dd685483ecfc640ba65e6aaab6e578d6f48ec3806c4b6a0954192d9786398f123dd46d837850923200ba7005d1c9cd720cd58b12d0
ms|64|e6dd627bc0faec3e299f57b7f825688ae1c63a7525b54be5a2b1c0f4f618bed537157e97c2d28c0ce63f04a66bdbe73ad794b739446a4cfb72867148a4fc7868
nb-NO|64|0fdbbfb0a0b30057b818f70316136bfa9421da61a8b6d3c9f7c753267fabd516a0c26ab1d5199c95308ee70f76c88e7ec67f5570f18a7faf3f53e2d03d7ea459
nl|64|c2ce83632566beb4f1778728d1edc5ab34acfcaa37f4366b83fdf46846c3a4b27dba954528813c6afea6ef1b2939a887f7d5cd52e67766b024cb114faf0f7e73
nn-NO|64|e7a79c2d5414a4f67261a94cc1b31d6d89e706626e4ffac0540a520fd09fe6f22ffaddb8eba79eea9e768cf2aa02345c003d817ad0734d294292ab54deae36a6
pa-IN|64|9a7bb3d82d1a185a67a4ec69265cd8aec75a288613a98669aee4be98b10703e15eb1646d06f23ca43860a899e4f1b3aa0ebb899a5fe18c3ec5011ccbd3b9030e
pl|64|15d6cf0133987fe53b1d601bccc500ba874aca0dcc3161ea686caf9a850df1599a7f8b09291366bc42236c1b8a377ca882405d945f48644cfcef5282429080c8
pt-BR|64|ed80ca1d5fbc96cfec49998d2116bcb5efe9124c3191913ea1ad7e9f477d49d839b109b333a7923e1916fe47c51ef54d12dd0d0fec443c9a7e576e03fb10711c
pt-PT|64|fb6d8851cfee146485a41ce13cd80b132e81f95e75fc080a27226bc7b2340e5c4d08cdd82f140ae2f2c39b136492f4c1e4d49717e8e9df82e86ca2277645046c
rm|64|50e61d9422a5ba4db32197b1de4b824f83c320002c6a268ab61d28f4965a98980235916a91858c614571b18be10e8a5809372653b341df34aa77e760ebf0daaf
ro|64|610630f5f6ad7a7e38d8fca67f663dd70a8243c5ef46b59073f0817c87e35f41439e34f4a8cb952eadc41ece6616a8d979aa1df95f3d26e6bea49b79d353e3d0
ru|64|f85d7d00467f08006f6005dc39e81c7298ca1ee81fb88f0225196baecd2082a1670d07d2ffda45c777665238b28e9fde0b467bb226526fa27a52b6f42105377e
sk|64|4a79ee0a3391aca00e86a1a057e02aa26234c10f5c86e3d630904f1a907775fe36e8f0631f7b1d0908657fe239917fc4ea32ee4abfa4777bae062ae9ac8cbf48
sl|64|78b64ca13c9f860077558f02ed6ed33559f39a05e58219d9cda0f2fdfee358420d161deacaeba12165baad02a2452036ba98f9b245cc2ab037d9fb723910c32a
sq|64|e983289bbae3b75f5704c94b4f90fe7ffe46bba7e7d2aac81e87aa55d8d312a6e6c422bdb615903442fe71b3a6d9e45f0007b81be8e3cc166ba87fdac1aefa90
sr|64|1d5fbea149fddb8d6cf78d49163587f8f2a86ebd3ac0610340914a40d848694b42c95afc2b0cc5c15cbce7fee6f33f1fba3af50dce1cb1ba8bf9cebbf6760fea
sv-SE|64|61cd80c21d4f2354f37f927bedab86d68199449ddf75c7347049a97163301c6279f1c41886ad46c647991c5ca074e695a6e2e0731e0c5e35a8498a2772ff3216
th|64|2f3903498223bb478a07a42513773da1826c3309cc98f5a9d5ff176d98753068f17954e80491f5ea2eefee688cbc5a63912533fcc7212b39f6b79ff6ae144d9a
tr|64|46d72006a1096f308e183392fe3faca2fefc725d9910ee3406137d8c8c5edc09ec2b3911fa6581022954107294f863893d353a83eb2438089dfcf6028ec76177
uk|64|8eba8fbd9906ec5f01357111d0d0960fe7f728889d970dfdd5ed17b687f4ccb9567590f90275f572b8cef92812426c5cc81c829fa6b2d5a9892a9cd3988926d6
uz|64|f5a9523ab79c87ce2f6d8f3df7e1feaff5ff6c45a69251f1f6780ee58f1ddf54a1d176b4d74d255a37f6854710d1868533072a425a41182c3561f7e9e390ae07
vi|64|d32fd7f7f655d6d319e4a430fd3fd3bacdf5fe1f5af120953cdc510ea140fae657dfca3a64a0bc0ea546ae9cde0e8dc1ec8fea74b87fec739f22dc21a3ff9958
zh-CN|64|e6cdc7118a1015ba15048d086f1881a01aae9c39d17fe7b0036e27046ce19da1606ef83e4de0cf66b801ec04eaefe69338bfac3f1f72590866627b448b4cb821
zh-TW|64|433cfeb4a8718dd3fe5c09e813128620098402ef02668554a325b5b94ede01459e97a54e4262166d6aef461ed7a0bc09b0ed97fbf66873af3c9139de05f69521

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
Mozilla Thunderbird 115.8.1 27774 Tuesday, March 5, 2024 Approved
Mozilla Thunderbird 115.8.0 27108 Wednesday, February 21, 2024 Approved
Mozilla Thunderbird 115.7.0 36204 Wednesday, January 24, 2024 Approved
Mozilla Thunderbird 115.6.1 27358 Tuesday, January 9, 2024 Approved
Mozilla Thunderbird 115.6.0 29831 Tuesday, December 19, 2023 Approved
Mozilla Thunderbird 115.5.2 22364 Tuesday, December 12, 2023 Approved
Mozilla Thunderbird 115.5.1 27031 Tuesday, November 28, 2023 Approved
Mozilla Thunderbird 115.5.0 18695 Wednesday, November 22, 2023 Approved
Mozilla Thunderbird 115.4.3 20166 Wednesday, November 15, 2023 Approved
Mozilla Thunderbird 115.4.2 22742 Wednesday, November 8, 2023 Approved
Mozilla Thunderbird 115.4.1 25973 Thursday, October 26, 2023 Approved
Mozilla Thunderbird 115.3.3 20804 Wednesday, October 18, 2023 Approved
Mozilla Thunderbird 115.3.2 22129 Wednesday, October 11, 2023 Approved
Mozilla Thunderbird 115.3.1 24330 Friday, September 29, 2023 Approved
Mozilla Thunderbird 115.3.0 12345 Wednesday, September 27, 2023 Approved
Mozilla Thunderbird 115.2.3 19519 Thursday, September 21, 2023 Approved
Mozilla Thunderbird 115.2.2 21630 Wednesday, September 13, 2023 Approved
Mozilla Thunderbird 115.2.1 6743 Tuesday, September 12, 2023 Approved
Mozilla Thunderbird 115.2.0 25409 Wednesday, August 30, 2023 Approved
Mozilla Thunderbird 115.1.1 25975 Wednesday, August 16, 2023 Approved
Mozilla Thunderbird 115.1.0 24911 Wednesday, August 2, 2023 Approved
Mozilla Thunderbird 115.0.1 26986 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23753 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 15988 Saturday, July 8, 2023 Approved
Mozilla Thunderbird 102.12.0 35795 Thursday, June 8, 2023 Approved
Mozilla Thunderbird 102.11.2 24972 Saturday, May 27, 2023 Approved
Mozilla Thunderbird 102.11.1 11219 Thursday, May 25, 2023 Approved
Mozilla Thunderbird 102.11.0 27746 Wednesday, May 10, 2023 Approved
Mozilla Thunderbird 102.10.1 28999 Tuesday, April 25, 2023 Approved
Mozilla Thunderbird 102.10.0 27103 Tuesday, April 11, 2023 Approved
Mozilla Thunderbird 102.9.1 26546 Wednesday, March 29, 2023 Approved
Mozilla Thunderbird 102.9.0 25477 Thursday, March 16, 2023 Approved
Mozilla Thunderbird 102.8.0 35688 Thursday, February 16, 2023 Approved
Mozilla Thunderbird 102.7.2 21414 Wednesday, February 8, 2023 Approved
Mozilla Thunderbird 102.7.1 19912 Wednesday, February 1, 2023 Approved
Mozilla Thunderbird 102.7.0 24091 Friday, January 20, 2023 Approved
Mozilla Thunderbird 102.6.1 36185 Wednesday, December 21, 2022 Approved
Mozilla Thunderbird 102.6.0 20234 Wednesday, December 14, 2022 Approved
Mozilla Thunderbird 102.5.1 25080 Thursday, December 1, 2022 Approved
Mozilla Thunderbird 102.5.0 26019 Wednesday, November 16, 2022 Approved
Mozilla Thunderbird 102.4.2 24254 Friday, November 4, 2022 Approved
Mozilla Thunderbird 102.4.1 20784 Thursday, October 27, 2022 Approved
Mozilla Thunderbird 102.4.0 16157 Thursday, October 20, 2022 Approved
Mozilla Thunderbird 102.3.3 20296 Wednesday, October 12, 2022 Approved
Mozilla Thunderbird 102.3.2 18373 Friday, October 7, 2022 Approved
Mozilla Thunderbird 102.3.1 18882 Thursday, September 29, 2022 Approved
Mozilla Thunderbird 102.3.0 19812 Wednesday, September 21, 2022 Approved
Mozilla Thunderbird 102.2.2 23178 Thursday, September 8, 2022 Approved
Mozilla Thunderbird 102.2.1 17979 Thursday, September 1, 2022 Approved
Mozilla Thunderbird 102.2.0 19357 Tuesday, August 23, 2022 Approved
Mozilla Thunderbird 102.1.2 22226 Tuesday, August 9, 2022 Approved
Mozilla Thunderbird 102.1.1 11471 Saturday, August 6, 2022 Approved
Mozilla Thunderbird 102.1.0 17232 Friday, July 29, 2022 Approved
Mozilla Thunderbird 102.0.3 18718 Wednesday, July 20, 2022 Approved
Mozilla Thunderbird 102.0.2 19772 Tuesday, July 12, 2022 Approved
Mozilla Thunderbird 102.0.1 14109 Thursday, July 7, 2022 Approved
Mozilla Thunderbird 102.0 20681 Wednesday, June 29, 2022 Approved
Mozilla Thunderbird 91.10.0 31580 Wednesday, June 1, 2022 Approved
Mozilla Thunderbird 91.9.1 21170 Friday, May 20, 2022 Approved
Mozilla Thunderbird 91.9.0 26197 Wednesday, May 4, 2022 Approved
Mozilla Thunderbird 91.8.1 24073 Tuesday, April 19, 2022 Approved
Mozilla Thunderbird 91.8.0 22308 Wednesday, April 6, 2022 Approved
Mozilla Thunderbird 91.7.0 30208 Thursday, March 10, 2022 Approved
Mozilla Thunderbird 91.6.2 14306 Sunday, March 6, 2022 Approved
Mozilla Thunderbird 91.6.1 23246 Friday, February 18, 2022 Approved
Mozilla Thunderbird 91.6.0 19925 Wednesday, February 9, 2022 Approved
Mozilla Thunderbird 91.5.1 23605 Tuesday, January 25, 2022 Approved
Mozilla Thunderbird 91.5.0 22085 Wednesday, January 12, 2022 Approved
Mozilla Thunderbird 91.4.1 25558 Monday, December 20, 2021 Approved
Mozilla Thunderbird 91.4.0.20211214 16781 Tuesday, December 14, 2021 Approved
Mozilla Thunderbird 91.4.0 18883 Tuesday, December 7, 2021 Approved
Mozilla Thunderbird 91.3.2 27010 Friday, November 19, 2021 Approved
Mozilla Thunderbird 91.3.1 14270 Tuesday, November 16, 2021 Approved
Mozilla Thunderbird 91.3.0 22529 Wednesday, November 3, 2021 Approved
Mozilla Thunderbird 91.2.1 22514 Friday, October 22, 2021 Approved
Mozilla Thunderbird 91.2.0.20211014 17811 Thursday, October 14, 2021 Approved
Mozilla Thunderbird 91.2.0 19157 Friday, October 8, 2021 Approved
Mozilla Thunderbird 91.1.2 22911 Tuesday, September 28, 2021 Approved
Mozilla Thunderbird 91.1.1 21684 Friday, September 17, 2021 Approved
Mozilla Thunderbird 91.1.0 20823 Tuesday, September 7, 2021 Approved
Mozilla Thunderbird 91.0.3 20662 Thursday, August 26, 2021 Approved
Mozilla Thunderbird 91.0.2 10469 Monday, August 23, 2021 Approved
Mozilla Thunderbird 91.0.1 14191 Tuesday, August 17, 2021 Approved
Mozilla Thunderbird 78.12.0 28781 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31887 Thursday, June 3, 2021 Approved
Mozilla Thunderbird 78.10.2 21024 Tuesday, May 18, 2021 Approved
Mozilla Thunderbird 78.10.1 19257 Wednesday, May 5, 2021 Approved
Mozilla Thunderbird 78.10.0 20990 Monday, April 19, 2021 Approved
Mozilla Thunderbird 78.9.1 18521 Friday, April 9, 2021 Approved
Mozilla Thunderbird 78.9.0 19264 Wednesday, March 24, 2021 Approved
Mozilla Thunderbird 78.8.1 21140 Tuesday, March 9, 2021 Approved
Mozilla Thunderbird 78.8.0 18870 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22956 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17625 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20301 Tuesday, January 12, 2021 Approved
Mozilla Thunderbird 78.6.0 20518 Monday, December 21, 2020 Approved
Mozilla Thunderbird 78.5.1 20562 Friday, December 4, 2020 Approved
Mozilla Thunderbird 78.5.0 18709 Thursday, November 19, 2020 Approved
Mozilla Thunderbird 78.4.3 14890 Wednesday, November 11, 2020 Approved
Mozilla Thunderbird 78.4.2 10858 Tuesday, November 10, 2020 Approved
Mozilla Thunderbird 78.4.1 9261 Friday, November 6, 2020 Approved
Mozilla Thunderbird 78.4.0 20199 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11713 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17160 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16188 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5290 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18564 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16591 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9561 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18422 Saturday, August 8, 2020 Approved
Mozilla Thunderbird 78.1.0 10122 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14034 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10389 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17188 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22044 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14084 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18411 Tuesday, May 5, 2020 Approved
Mozilla Thunderbird 68.7.0 21865 Thursday, April 9, 2020 Approved
Mozilla Thunderbird 68.6.0 19679 Friday, March 13, 2020 Approved
Mozilla Thunderbird 68.5.0 28023 Wednesday, February 12, 2020 Approved
Mozilla Thunderbird 68.4.2 21217 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18622 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18168 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13336 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 34972 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16902 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12465 Wednesday, October 23, 2019 Approved
Mozilla Thunderbird 68.1.2 17501 Thursday, October 10, 2019 Approved
Mozilla Thunderbird 68.1.1 17703 Wednesday, September 25, 2019 Approved
Mozilla Thunderbird 68.1.0 17543 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 25983 Wednesday, August 28, 2019 Approved
Mozilla Thunderbird 60.8.0 34698 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18392 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11124 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20019 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45016 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8109 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11747 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8082 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9101 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4661 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10663 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15302 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9156 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9231 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11038 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10551 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16914 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24432 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15819 Wednesday, July 11, 2018 Approved
Mozilla Thunderbird 52.9.0 7455 Wednesday, July 4, 2018 Approved
Mozilla Thunderbird 52.8.0 18796 Wednesday, May 23, 2018 Approved
Mozilla Thunderbird 52.7.0 20341 Saturday, March 24, 2018 Approved
Mozilla Thunderbird 52.6.0 23725 Friday, January 26, 2018 Approved
Mozilla Thunderbird 52.5.2 16325 Friday, December 22, 2017 Approved
Mozilla Thunderbird 52.5.0 14507 Friday, November 24, 2017 Approved
Mozilla Thunderbird 52.4.0 19506 Monday, October 9, 2017 Approved
Mozilla Thunderbird 52.3.0 17549 Thursday, August 17, 2017 Approved
Mozilla Thunderbird 52.2.1 12708 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 5999 Thursday, June 15, 2017 Approved
Mozilla Thunderbird 52.1.1 9436 Tuesday, May 16, 2017 Approved
Mozilla Thunderbird 52.1.0 6386 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7222 Saturday, April 15, 2017 Approved
Mozilla Thunderbird 52.0 3989 Monday, April 10, 2017 Approved
Mozilla Thunderbird 45.8.0 8808 Tuesday, March 7, 2017 Approved
Mozilla Thunderbird 45.7.1 8728 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5620 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7039 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11789 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2132 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2311 Monday, November 28, 2016 Approved
Mozilla Thunderbird 45.5.0 4821 Monday, November 21, 2016 Approved
Mozilla Thunderbird 45.4.0.20161024 8491 Monday, October 24, 2016 Approved
Mozilla Thunderbird 45.4.0.20161023 2218 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12295 Tuesday, October 4, 2016 Approved
Mozilla Thunderbird 45.3.0 34632 Wednesday, August 31, 2016 Approved
Mozilla Thunderbird 45.2.0 52854 Sunday, July 10, 2016 Approved
Mozilla Thunderbird 45.1.1 549 Monday, May 30, 2016 Approved
Mozilla Thunderbird 45.1.0 457 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 435 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7791 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5829 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6091 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2778 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5536 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5676 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5535 Friday, August 14, 2015 Approved
Mozilla Thunderbird 38.1.0 3972 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3298 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1878 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3652 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 785 Friday, April 3, 2015 Approved
Mozilla Thunderbird 31.5.0 2892 Tuesday, February 24, 2015 Approved
Mozilla Thunderbird 31.4.0 2552 Tuesday, January 13, 2015 Approved
Mozilla Thunderbird 31.3.0 2426 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2432 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1461 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1068 Wednesday, September 10, 2014 Approved
Mozilla Thunderbird 31.1.0 983 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1536 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1504 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1545 Tuesday, April 29, 2014 Approved
Mozilla Thunderbird 24.4.0 1505 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1092 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 508 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 872 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 619 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 627 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 623 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 597 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 662 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 595 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 580 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 17.0.5 552 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 16.0.1.2 686 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 443 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 458 Monday, October 29, 2012 Approved
Discussion for the Mozilla Thunderbird Package

Ground Rules:

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