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,517,360

Downloads of v 91.3.2:

27,011

Last Update:

19 Nov 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.3.2 | Updated: 19 Nov 2021

Downloads:

3,517,360

Downloads of v 91.3.2:

27,011

Software Author(s):

  • Mozilla

Mozilla Thunderbird 91.3.2

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.3.2'" [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.3.2'" 
$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.3.2'
    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.3.2'
end

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


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

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


package { 'thunderbird':
  ensure   => '91.3.2',
  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 19 Nov 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.3.2')
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
  $tbProcess = $tbProcess.Path
}

$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.3.2-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.3.2-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|344c5162090da00a3d0aff96ea6475639e54898faa689214ff7890002fe27c9349663174afe6f72b4881b1e99685353a044070e23720e8d6e8b5b2f1ce110a44
ar|32|740edb341202f6fa85037ad7bdd7b587fa03186ae575933d6b2f5b589602f20e6c709cd8b273c0e23032675ad3249b4da27c1e463b4c6a47c23b318cac04aaa4
ast|32|343cdae3094e225524122830b97cc944722328c4ec928aa7b7229755f6d45a477b2466ca889b6986d88f774fdae6cdd0ee65cf2437e52f05704a27b1217a2407
be|32|b38b0703df5117b581bd914f3fa8391bbddb3a8bb2b9b73272967b59968704b059a2ed2bd9f6f9407744262bb478200be0a8505466781808a44e95ccfc8b7bed
bg|32|dffe1c6a2bc0ce5810d2c62fbd34f2e9ee1123c9c309eae9f37706188d54b781838a912abc003252f8178e030f91ece31e53e925eb18dadbef9ee6bb5fbcf938
br|32|2b080ad70832f866265ab40dd0d29f12f7913ccb109d15eb0be7c1b2e570a129328368bc84f60825a94f7bc4642bf6dd767825a801fa6c067d600536740f4244
ca|32|070158b5b1515c5f503618d33dbe96353e1a02e6876c8b08e5e1ced4e3cf153aea402ef426b896ae0618487c4daa61d401bbc7d0671f8cfa07f4674660a10ea7
cak|32|e6ff34c01438b930429f657f1cf0e79ed488f91588541f705b4b5e596a15380b21ecda4d1487ccfe4e1a4a21c54ccf26503a7de6aeaedf5b2400e19c92fbdf4a
cs|32|36dc320b683572ae3ec28653b476cd2e55de524c79810abba8718f8a242d1deb116bd6c35ebc0e743d0040beff7c97c67c67149eb338fd38977ed83b00c06b20
cy|32|8b93fd3c377780e17db3324ecf77ee6f0f6a78b201e94cb0e96450e2666aeaa89a41c6a35336491bef5967d772011bd4478b2d0a3b6b7720de682b74db9da42e
da|32|7d9a4c9fdca9811ec9cdcc9de4a065e4ae7f85175acb16285678b00075863441235ba3332ab487baa5ac7a468598abfec1e36d6b58d43851dc2942ee7cab0a99
de|32|84b212d22f0504be76dd4ffe1989d9e0bbcea5adbe884940a870221f9b9ba465973f93948b3b6176eb415df5ebaf26aa4eb77c2c6fe83964ee2936a634c8b3ec
dsb|32|0a50f6b10c99461fc06618a8c7b40391e6da7174218ad688c40f28cbef7dd5cb651dca40777c0f754b97e50d10ba39a1f002a26f64892454ce0721725f58c441
el|32|d8e7150aeed00d93c4a1de8fd30eabf062ef4c70897d54b86bc5fba7fa12a2a1b38194f3038fec6fd745f48ae44c23739138457c5f29e5a71a94144092680fbe
en-CA|32|393ff988559ec177447860af5b61560de0f76949f3148f18fadae0e40171db98480adad241a9d955800f5524caabd0d8b32a33f9a86d39a4276b88e2d76912a6
en-GB|32|2722261cf3aa9cada8ab63886d2d370e4949b8c1a66a75b0ea61218fc9881fd937086778d5e71167b806e2176b5b4dc9bdcdd2a8d24914239880e6a8efe899a5
en-US|32|265f7be32cf0c205dd41beed1d3c7a33dd27dbc72710f64b0af0bae9799a83a3aaed8c004f98a52e25baeedd4cb6053e8771c2432305df5822a45a369e32c123
es-AR|32|4b2a04ada4511207616133469aa793bce40396e67be31a1c0c0867c6c7af40aa206b47234efc921598a06ed990323d5ce6040181ec8f5c5a74dc4aa5cd6e0231
es-ES|32|ab273cdcfef462904434c51a6be40c23315a729f5169bcbe0330c534a19f2b153095508902cfd32cb41b8bfce8e8d950a78a2c3291c905e0e4fbef33eef04fe3
et|32|9755f5cc90641b3651adc49b6b85b4c2417fead0998d2d28bb87760ebd5729424b247bd11cff1e65d13d7ab945d6414559d2f48935a956e02f195d57c14361fd
eu|32|33df49a1aa7c6d75378a9355bdf6cf5dca4e6f9dc0c9dbf30f99b49e3170ee1f389d1c8aa0764325734252ff14de25c43cbb57d1d9090815831a4c32cddc49b3
fi|32|c9a5cd4e304296412526753018e87790901c3f07c813326dd36e6f2acc8eb7901b76ed8c837c2d11047b99ff31883984fe01cc2d7fb4328ebcb55e79fee0cbb0
fr|32|b05a785f196e0739fab73f1be2c1c3c08a9e6de799b4e7db9d437b846253bd590ca364a6579d4d488e8c42d2553deb7784cdba1555cae36a607013200e5edbd1
fy-NL|32|0acadc3f6d9920d5cf0d9148e0d1c119d80c0e212e3c92051115b1dea0db500ff1acf86220d0981929aa14cd684eaa16396066d2a20f56578090f5f212135cc4
ga-IE|32|bed5de3dd1b5ead2d6edb3363ad45de2a8c37c5efd1c276641559502498079c6b39b4a2292386cac40f68360364622a3a6d9dce7f497dee40fad80f6da93c455
gd|32|362a09ec06b5a11a0c0073d2cd4623891ecec3a21d267adec4f66ee85631e1332d2f26ea8ba59470abe6696e347069634ae82aad4cd6212336e203f8fbe70f34
gl|32|a9d39d8937fc69ecfd32ab4212dc7489cde3ed5945e3499dd7c0543715997d07727b2ef358a24952e4f4f4202b554b344348c590aba40e543145c69a900b9a6e
he|32|27a9f315d26bc8a926fd051f1e528643498cae388c4af435fb4f6d2f0ee62e01c3237cb5db5af632622595c627b2ed0e29e30a21627203806b4df1bb4105f525
hr|32|d04a7e419c34ebf6fa3773ec7a87b073628b6b97d86e8fde206faf0185dc23a866243bbaf31d4943e5a7a9bf1bea638bc6a89ec62b8038bd0c7eab2a5c746b15
hsb|32|8739db56748c9579def017851a6cb13d868e81328c486d88a3d7a14627e3bdaef3a907beb7ec8dfe0b82c4ad80c5f1944e2a18e9b6cad08ddbd604959c05a979
hu|32|331c40082ba2fb2c2748eecfbf9f3a8bc3f6b575aa75b66679d43fc63b8387b38425670620b7bb1d904be3d9e9ce92b3ffb144633264f968ca73b7709f7d6a85
hy-AM|32|86109101b4ec8975270b00f57e6f77944b1ac81c9d524ca512998f568dfb427ead9ef1d2dc5adda8845555a579a030d2a433541c35be65a921787d312945aa38
id|32|05b558db7fc6d6f85bad4976f622c1725697f42b160f3f8548bc86650b7238a413d21e77255d8555600e1373bbb862f3080b6a111b167b109adf27a9552e2f59
is|32|c469c44e33e7c0e7dfc01e70bd2b9e818a8c429728a90624909b67d53e3b9250115808a38cf52694d039ae8c83224417380b0b54981565b9ce93890fee2bda8c
it|32|374ebcf44cd35a97d2c11eac8bdcffb9ca5741454b17b411f7aad0cf8a23da8f4b933f0b9d6a9073e6d114aae8c395f205d44d1bab39b12b1d853f858b00b310
ja|32|1b230afccf05ff7d7e0febdcbe32353aabd4d43a658564b13730323b2db3628b0ef8aabf4c8f039c66587eecc80f7b3a081af62de96e457b2cd98bc23d23c67f
ka|32|cfabbf85dd07535ca7921233742b2239238bf4cdc4cd859176253657a105e41bda8effe5151c3987f3328ff7a20e2400fcf912ab6045ed52caa60aefc4fde19f
kab|32|78e57fa53b02a178b3a1bf4e5f894122019bb710fba4bce5e370b39ad17643bf9380db057353263e1ee653793ae1d03e2f76d12027d6ae2a52f0ac68486ac913
kk|32|d54b13282a7134b28066337d80aea5fd256d9ae57c6ddd20d59f3d3466ddc0087f4590bcb57718a3cd7ed745915c3e7fec08419082c3bdbd1b50695c7afe259e
ko|32|5c7dbb84a6d0f5c7e8a20e7399cec9da00b64a8b466333ebf0a90677cdf6bc97f8d2382233fa48f6026b32a34ce4a20eb0ee0cd02a8bc11576406a0838e5318e
lt|32|0e413ed50bd53dc03ee6195f9422bb7adab805325f2162c4a44e17c50fa891593e427a9e4cc293879c32009c5a16ac11c05f28fe03708006fcc0570d42cd2897
lv|32|bcbde35929bba33851884a3e9d5386e215b744f2bdc08a85be9506232ccbd32cc09847acfe30c1c283e0addcfee923d5a5e8bebf6c7746a6ac30aae8bdb750b2
ms|32|9de5bd6eab4469c2c12a6ac86b2cdb33831b62cf3df72c12f1cfa306397fd615688bbe780147d9d03df301dc7be55aa0480ea0f134cf72666097f69ce77f27b4
nb-NO|32|38c112036c986d54649b063e810fcdc4ee79af7964a7458e7cb7b9e90e6f408b645c448652418b87f7b80ebdddeb7b6cf5097e6b17bd32ff7b94a3524f41eee6
nl|32|62b6cd1a7ee1770977623abd3445e32745b610f2309d501b3b875d2bae836a5ff9205a1e4143fd3e4090db201080f0b1fe24623f1d6151afc1cce6e439cc4779
nn-NO|32|d126d4d3aebd7e46b647f84ad46bc65ff715b8273b7c17ad83f35c29a596da1b068079e540ff3d2eee057b19e41568d36a70693199ede8834fff2febbccd886b
pa-IN|32|47dc9c13c0ee8ff9eb35a99969b67c8b041e4349fc772f5daf415e00c8a50824563ff2823eb2f7af7ce1dc1c24743bbfac5eb756d37edac37368b53e000c8b88
pl|32|645f89d319ca298c7bce93ec917a4278e6a6fbd8946a5e6349013508cf52b470d5b1e94516a9ccbffba866c6766f798974fade8136616ec2b414f1a448f39476
pt-BR|32|eadd4758cf320e11226c4c5bef7011f901ae6c4b5e1f163fea056374cae2ffb198baaae56966c0098b761df1899f5fccbc58db79ddeb86e16abeef1d3d7e594b
pt-PT|32|563117225a813dd83b9dc83fa813349248aeda3121159e13fd10dca234f02799a1c894ba2a1c35e24bf77b0e1586f3402163a45398424c18e7a28e3498977f2f
rm|32|f94a77a6eec0e817b651a1e2e87d92de565f91a9bbb9f350c023e1353f9e297ee9b00ac09a0e5f2480d9b497f9b6dd4bdb04768259a820e4b37c87e4735846b7
ro|32|c91fa1604ac56b7af5954f1733f7404cc924bfd3703ee8da772e12ba2f55a199ff0f8b40e9b059a1959500cafc80d9e2c2d61f27beb16cb8f681ef86bec1946e
ru|32|8b3e4cd5ab0b9a5957511bf707c4c3f50750fae250f95c1287508f88ea4f79a2be344cfa990d898d7497b9be83311d347454f703bf2e7368860bad88a8f6423b
sk|32|2b6a958dcc85829c776d4485a738912adbe843783d2ffab90da0526fa6e840e9f100b57f4b4027d9d69bcc56f1326e6c60d7bd8aac002e3333a99a07079ea7cc
sl|32|d03c4accd06ab6a1f33c58f0969214588457775c4f6b0f074edc961398a58f589f72525e730ff6494bceec63a49de7a128a033f944e0acaa1a37c6ecfb6f3b9b
sq|32|269117bcf49e97aa185ff92b217376da6e551a5fb3ea30bce1526d12629d97cb4f677dc1f75ca219a2ad9fc1669d6ba1e65eafab70ed33a7c221f692112a47ba
sr|32|d9a1b394f2e7f46f7b022c17bd201689758a5eac642f6be71c8e48d9725b6ee40606390a2dd6597e539bafc3993db5bc456465351bfe7ad2f94d1aaec922232d
sv-SE|32|1c783cb03d1c4d5afe36e340fca02269f1383a7b3b69cbc6907b4aaf493fbf010109fa0a00c7fc3810da8de9180d4ac3cd689f19955358b9413c7cd9e758214b
th|32|d5a82d1c6c1dd91669593cebad8655c24208ffb0e015bd00edf6a0ef8e4c31923e5413a27ead649c33b07e8886bb3d241fd57628615f4b02a86d718acf992f0e
tr|32|9e168538ee7c300e7c618db2875937483354dff628f595b179b2b40f27b0f66412c709b49146c0f57b4b997c515c1cd550a6b75be7ac861023638c9a58427823
uk|32|053216fde1f0a1dca258a7160b016d276e089844676fb2bcd93cbdbade7ab82749a08cb160ee9e89c7f2bd93981f5503349b21b05915f276771b32542807b1f2
uz|32|5b0532786a708217072a706d806a4840bcdd9ba7a584984924bb652bc823c3b5c15ee125182256a54c01b50b8bb642f09d5fc5cbc066f852c11b45d4707e26d2
vi|32|8dfda052d0a1041f77b6f0bd0e39a14c25debb2d0339376b6e5e218183f7517520ad19db25a845ee582c62bec7451f8cac2d7d9a9e5cd58131e0ffe624093c4b
zh-CN|32|9d30566640d01b440a25dea5dc000f47f6e279a59ede2ac9ebee87f43965a27a7caa2d5e352fe072f4d9551744acfece275cb689dcf9fd0124edbf06509d54c0
zh-TW|32|758edceb608cf5c7518ea734cafe76245c9b6e7cefe6b138e7a36e08d3e63d110b560e9a5ce25f73fc6ddc0efc9603c23a80d6bca4a27ddfd7461d47e5a328ac
af|64|4891f48ba341d6229cedaccb3e6cc02a5b7622e6e91f5757a7f61a566d423a4d580fe86c14a199187679b02c4b9fee400845e291103fc7925bcf61dbf5a70c4b
ar|64|ac1acad347742fbbd5b88b0fc8f4ecc163ab0c03a6fbdf76b6d43837f819bf259f46779abf86fb435070e64da2ac40c71691a04c44768420f1b2f8984a205e5f
ast|64|0acbaef29b2b7ea50f28ef7d555ca2add661aa5cb801082f1d12259fd0c369e468422a0dd6c95b2943910c39bc8c4506c361abc56f803a0070346711efebc0be
be|64|0e9da607c6409eb5c0494677dfa544af948bf66d4c9eada33d011bc8fb32e1c852bc4fa9b6098e91d029f887d7828aa3e0126d4e33f760c38894b65457759d76
bg|64|cab511996d80f2bdcde24daf65a484ad13d8d249990c8612bd247289e76228d384a2c7feaf18578235a4e6861c7af3847b5679d91ad76b1c802655a0d5d2dd9e
br|64|f159e3c01f15df0f467396a35601f9e6c34da405532ac0f620432d09b9953e264226bc2dc3462847941ef88e2bf62edf8ec1bfc27eacca957e4777d31b6b88cc
ca|64|52e51725f7944e8fe4684eaff14d36b01ec1d654eef6eedf8c9cc9b9e738cff0b711ffc518ca741708880933e53fd7a18cc99032260e4942b53184f1bc85a108
cak|64|2b7ffb8bfcc98195e9033ed2928966a8bbf1d848fdbb966db29938e2af4cf5ee4dd83bf397a41c9315343437d8e8c0c270873c8d82072e8fad8ec1035e54ca45
cs|64|6d13ba85b0cd84e3c13674821f9e8cb8f3d09cefc8fc2171d74d3568fa3667043003cec6cef3461f449b78a28db6f03349ed3d66f57447276c491aed6e9859fe
cy|64|8aa9305495a1fb1c68ae9a2aed80d25242e0d92e479a3c04fc81910efac04446a06851048451a46da0ee39335c0a3d898806ebcac63893a59683d21fa260879b
da|64|2d30dc45de15319954ba46326bc0a763871a9f4f2ef5541e49dd287a020f36e8654950d12314055fb7bc49f16d0de82653e8444ab1ea077e4246bab5ced81396
de|64|c87cb4e490f34c3fbbe4038f284079007933ec39292fe555ea752fe4220d11be406e00accb20fe84c5d43eed02988a14c7a31cdee97ae4b3b2e4665026dd4e4b
dsb|64|c453d4dfcfe60c69e76751538ebb9e65b99123b12f2704e1fb9ff25c062bdaeb2e35254c50be8b2f39eb134f7a53008106aafe6129ce9577743bbce605a5631a
el|64|23e6b4b55f6eaa2fcce0f943c5eb1f611a2578594394771b2072cd80aca20878e0483cb5e2c80ac509351d4d299199c3d4e307de8e995869919d6c676b5b4e06
en-CA|64|17217a40fb98e1af2b853d1d89c64a6198522a13b7f536dbe2e70aa41db77f6a0276b9c7f91884d9688294331835ba5167ab385959faeb98c2e941e494a737b1
en-GB|64|158d937764b4fb1f678c195944d4c5e7fa4942ee03127aff45ca9dca0b066272ae0cae7d7876284c13d6eb8f0a2b2f3da3d71804a84a547471b3c6dec4c2fb52
en-US|64|ec45d6c0745af927c5e07d25e8e5a6b8d56c4a5f6dc64127028b561bf56a44846ddeb257f9d15739a8170d0557a86b7b9a40c0ded8fd2780722882159ac19f2e
es-AR|64|f8bef0fe19aedeb9d10fc7416670b3f12361d5a5d25e62882735223cd21f10c12151561dcdd75c43c5726fe525f548d1003ba6fef0e5a095d3d704a916d9ee51
es-ES|64|dc079da82ecbdfdd15cb264cbbecdf61d30defc998ca2e95b300cda69a458cf3b779f947786b8316781b083bbd9ecbe574311d277bbd03a6093b5da01ba5a4c0
et|64|d2296da75c9af544287420b95a1e60789850ddd6543e3c18b6363b2672aacfc1acf7897e37762579206467725ac53a20a791af72b6560127a44d9e012e321832
eu|64|d61012aa1a20583b361871e0d885f1bfef2032ded2ba9ee50069b8c9d7bb6dc84ecfad523dd216bcb91aac22330cf27018d9305f787c1251fa50d7f915fd2839
fi|64|bc62357c17f96b43b415528eaa314b3558fcda02fc8bde0c26b1f1b809cc5945d1ca739d02df31d31d94b9297fb7b83a501579c1a43301ef56be61cd9eb15138
fr|64|04eaec3bfe30ce32fa6e89992b2a1e564523c916fa1a298ecaea18541aab84400c8cebb2dbd0d06668d2d21bab9a6e5e7dad2a43c8130fda020352e7e437abf9
fy-NL|64|5b6e300fbd54949ecc5cd2f5afdb719561d55133e792e6fc4acdf7ff91d82b8b6bbfdb8c5dfd2488d3a1e0df56714edfa554ee193cbb4ec29a10eb9bff90f1ae
ga-IE|64|9a1ee4e7259b56a6b35da812baf75a3f5fdc920cb1081312f7cedd16c326a77ec2c8ca34b77022d3ee3445617908a7067aa4ea8d1ca47225e45075b38fc3cabc
gd|64|213254fdaddfba19f041d30be87bee5cbdbc536ff0c46dacfb7a745fd3ff1ff019f6431d44777ab70eb672b7dd3f9181fbab8bd3a95ae324383de3548f9c6aa6
gl|64|a6ff2a1478da537b4568f27cabbdbf4ba9e096fceab9f680879f9ae0ce23f5a081488e9a5b4a1c6e86263b9215f4571aa5d4654b5cf01e3eb2c7feaee8407a29
he|64|7ce9400eb99f5a9d6287fd0422a6fce923672117b56509ade2e3a37b896f41024890aec28f154d262e9d11463e459d966fc8347775b848421561d48bad6d214e
hr|64|927110e039a73c804870c3295b10758967cd6045169e9c9861664429f0a43ef1b4382a066183d263783478a4a7331bcd4e76a4ce09fd64ebd7766097ecc62248
hsb|64|49cf1faabb5d0b43baa8945362d71a13b161e57dcd1cab34f4cb52483874c033737a8df3be746b091b0d9ca6f4a441fa62940e7b0f9780a2b77e74704889fa6c
hu|64|8636e2a6c9523e161b7dd88a1e5ce04fb7cc4bc451a61bb91dd5d2eb6ed50d973544df0ace777735a566c493bce55fe787c839d1cb4e6980268da91873fd0ad6
hy-AM|64|2e3ca2f840ec7c4cd1f679e964719a541295aebdc3bed5f28e3f62edccc7872320ce32d057e8bd4a453b37ef19c12c6ac5893179b8c58983cf389b0e7e273538
id|64|259c65344028453ffc3a81793a3796d8802e8357c7c4a828308ba51270f34265ffb420199826bd419c04f32d447a7796f188225078af0222f688d36bbb43bafe
is|64|29aecb32a5e210a5e16b2087094a1a02528499fb5bb12dc5894b7cdff44985d97a10e92de2c9b3a66601f90bfe340ea698128ef5191334339a04664941fd9607
it|64|7dab8e154066e366be85eed14683194dc6f50c94c38c8af56cfd214ae20c4f327f59bd8eb7d96cc88f72ecb4762b5fb48e497bfdbd46015ee8c59375d33f2d18
ja|64|4d5bab72b617ec1396338220ca3865638332e335e8af758847ab218022799c3b31bb65163b16b71f70e76c15de56aa721e68fba9d22bc5e1f5f475666636c442
ka|64|f70b838958e4ca7070d8d55b8df1fdf960002687e5bd5a6a34f6588b587560930b94ffc0e946f439465848aad0b925830dfb34098bff45be8bf68c7af3cedcb8
kab|64|939255375b7d377834c4775e0ca59caadb39532dd0fb28e95af5cbc06b74eac58c7cf8cd1d22b463b0ea18a4cc0e6fbd02b6c6625db50e9af232e2390c13b310
kk|64|232551c152d91b3f3919654ebe6d383edee701d51a824f004c4efda787c4412ee596bbe36900bb1815f2b0a77ccdaa3c6b41a50cf4f784bbac915b3aca658aa1
ko|64|b6edbdd67e8cb7a610c535a99a4afe162bd2a18fcee4d29e12717fe77f8d3ef31d963d82eac94ee7f79e64d40b2d8c9da70445871df7074608124a156066936a
lt|64|cf82f36b618934d0e8c0cd13260eb408db7a793959d219b234162f7a4d11d61601734e1939850bdd299279bc7f01dbf7712ca8126b5cbb917bd5c50cb4f50397
lv|64|b5028baa3defc65ff5af115ad9a8cdc96785a83aa1813f2e57b5911ff556a4e50ee2f55beefce774e585f943ce7468f0a9aef575786345a3bb1f751488f49d60
ms|64|38ecf6b3bb06e29799edd30923f96951b285857f9bd39bbd0e9ce533fc44b5180f6689f473bf8c9ca8cc8e79cb0b3541f41278ab92dfd8ec8bed470d710736b3
nb-NO|64|4648265efca853ed057c768954c0e9ecc5ac775e95b761ae7e3d758af874c5ef48f46936c3c8591feb8b8cd1373e458fa9a1a4dd51d074aae02f0d44e17deca6
nl|64|2ba6d0c613143eb4f825e2b5023535816f591d0e74197fa8919cc5550915cc09e361ee23f5c8369963c5ec753d7e83e948c1f878ba7368caa6b765c3f799ff42
nn-NO|64|1d162818fe0ec39960cc4eefc6082fbb2271bcb2f154bbab27fc726afaf3e2dec7acdc9915daf5d9a49ecc2495d084c1893dd15d702211aa176a5344dfba3711
pa-IN|64|251799898096882770005007b42807e19c209fc3fd4b69ddee047ad9f12eb1440d08482cc91c7dc9ec92cf2cb890b9259ec157fc9384b148c5bb24aea496d78b
pl|64|0da6c71e47ada18fb8916ddcc247fa6b6b1e7aeea5c962d94b2592db06c987c9db7da2ad6929f69b88db9911b21059733c578ae3022af088ee26baeaf4fcdd96
pt-BR|64|e5fe6178c0a5d181ba72789bdf5f3661b5e6dc8b1650d7e6fd5044c6ccdf03e96c0af436676ad798f7fa1b7e3e9c7df94235daaaa0595cebba3289e240b9f559
pt-PT|64|44dbe77901f6097cf7da08057bb1db22b2ebd58631a34942c8df91566fa4a8d6503b041d4e1e535f195a77ca9eed4a43d62526e45e0260615ec0522e96ecb55b
rm|64|05d863960827fb413cf18960586b62eee9f73f127c5ccade4a478f04d5ed5b0edf715011dc041482d182a6a54a10d4e2dff8fba00b8fe2b06b22bdd5001878b0
ro|64|e281aa4177febf3776f6fafb71ee90ea73da81cd58459f11483a725ea87bd3017e09ca9600265169e9551877f0c659fceb9ca9b703d92ed5a59f8bee76b1000d
ru|64|fa766cfddfaab17499c7fd1b12630703309ea62cfbee0a397b276c96c266dfb87dbf3834a40edcd76176689b1d0e6bf866d9d1e81647c497e786c67076077799
sk|64|7f47d7177194f03b1827aab66dc2a0d2ef32277cfa1d5b25dd2bc1bfbb971d0ecba43e4df9bd23f9bc5fabb411fd895af156787dc27f693bccf4e55ae3283bb4
sl|64|6cdeb570f1781a9679f3d8741026fe20a8c2d4545c60221f669365a2e6db9ad6c9aae81c55e0530992cef9644f40af17a8555e37260793ca06a3204e1292c0c0
sq|64|19ff50dc6b9151effe67818ed9a77d0d89671c8311f8a8552ceb0139cb029c284d0320277d25276173218e9bcd939bd168c0f2de5f182355986ab2e77306599a
sr|64|bc926d2e72ca201b3270764cda13c3fb2feae86fd92c09601890a96b124bb8f9229f3bed9e96c784ace44062e9241b09805511aee4a68be0ddd192e23c4f187d
sv-SE|64|0bfb939081b2539fdb6623a063e4a6424c677d68e297c7e8e38ae77b309921491bb1163942b848c5da9f44f612e644ff57643287f5c72f50ce9ce2ff7e56e8ff
th|64|1a6184df686fb2af427f0e80b535ba01e423fdc3900b9adbb3ff5976d76c99f9ffdca71ee96a77d0a108a38e2c1f6bc3d87b0bf16387875993cd2ed8eae69ec8
tr|64|d625e655dd9393bbe3a5006ca00d1c8571d8f67388117053d35914fa65d55bb5f514cbb1f472e1e3c54620fd673d4a802e24c344d77240b752f9f4a676a3341b
uk|64|f35f35969228a294d3c5d3fbad110a7cf2a2bce1c8f99cbb5f5a9e60837cd80dd16579156253cbd335d82d25b244a376ff5035901207bab918f8fe5ed70ca84b
uz|64|607a70d5e5375eba3d7de7bc318738182cacdbcf41e55148193e8ce32ab7602d71a97f834358efd40e974772fb80abecab6ad896d787bd6a97d5d6554a2421ff
vi|64|d3ca1b3b6a636ee12489542fa77c7fb441ea9aa9a948d2a35aaaf2274d8a78225d9fbc6f944f32fb47afb86b17d34fe5409de99c3cd077402ed2382331ec46ae
zh-CN|64|31144019bad303a4465f312ed85cacecdc330be409c91af4c6a8e85a2a0e71abfb5503c16bdcae5decd14ca6ab867995694229d42756c91a7c907bccdd4af728
zh-TW|64|d8dea29eb95f4a69e0cbdfc3592b86eede5cff57d4f6e2aa03d3ab8f86202f8abd3e9fb599f9cfb8249d13e2d85bb8e890ddec9162b56af8248481f3aac22707

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.10.0 11888 Wednesday, April 17, 2024 Approved
Mozilla Thunderbird 115.9.0 34011 Tuesday, March 19, 2024 Approved
Mozilla Thunderbird 115.8.1 27793 Tuesday, March 5, 2024 Approved
Mozilla Thunderbird 115.8.0 27116 Wednesday, February 21, 2024 Approved
Mozilla Thunderbird 115.7.0 36210 Wednesday, January 24, 2024 Approved
Mozilla Thunderbird 115.6.1 27361 Tuesday, January 9, 2024 Approved
Mozilla Thunderbird 115.6.0 29836 Tuesday, December 19, 2023 Approved
Mozilla Thunderbird 115.5.2 22365 Tuesday, December 12, 2023 Approved
Mozilla Thunderbird 115.5.1 27032 Tuesday, November 28, 2023 Approved
Mozilla Thunderbird 115.5.0 18696 Wednesday, November 22, 2023 Approved
Mozilla Thunderbird 115.4.3 20176 Wednesday, November 15, 2023 Approved
Mozilla Thunderbird 115.4.2 22744 Wednesday, November 8, 2023 Approved
Mozilla Thunderbird 115.4.1 25994 Thursday, October 26, 2023 Approved
Mozilla Thunderbird 115.3.3 20805 Wednesday, October 18, 2023 Approved
Mozilla Thunderbird 115.3.2 22130 Wednesday, October 11, 2023 Approved
Mozilla Thunderbird 115.3.1 24333 Friday, September 29, 2023 Approved
Mozilla Thunderbird 115.3.0 12347 Wednesday, September 27, 2023 Approved
Mozilla Thunderbird 115.2.3 19521 Thursday, September 21, 2023 Approved
Mozilla Thunderbird 115.2.2 21641 Wednesday, September 13, 2023 Approved
Mozilla Thunderbird 115.2.1 6744 Tuesday, September 12, 2023 Approved
Mozilla Thunderbird 115.2.0 25410 Wednesday, August 30, 2023 Approved
Mozilla Thunderbird 115.1.1 25976 Wednesday, August 16, 2023 Approved
Mozilla Thunderbird 115.1.0 24913 Wednesday, August 2, 2023 Approved
Mozilla Thunderbird 115.0.1 27000 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23753 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 15990 Saturday, July 8, 2023 Approved
Mozilla Thunderbird 102.12.0 35797 Thursday, June 8, 2023 Approved
Mozilla Thunderbird 102.11.2 24972 Saturday, May 27, 2023 Approved
Mozilla Thunderbird 102.11.1 11220 Thursday, May 25, 2023 Approved
Mozilla Thunderbird 102.11.0 27747 Wednesday, May 10, 2023 Approved
Mozilla Thunderbird 102.10.1 29000 Tuesday, April 25, 2023 Approved
Mozilla Thunderbird 102.10.0 27105 Tuesday, April 11, 2023 Approved
Mozilla Thunderbird 102.9.1 26547 Wednesday, March 29, 2023 Approved
Mozilla Thunderbird 102.9.0 25477 Thursday, March 16, 2023 Approved
Mozilla Thunderbird 102.8.0 35689 Thursday, February 16, 2023 Approved
Mozilla Thunderbird 102.7.2 21417 Wednesday, February 8, 2023 Approved
Mozilla Thunderbird 102.7.1 19913 Wednesday, February 1, 2023 Approved
Mozilla Thunderbird 102.7.0 24091 Friday, January 20, 2023 Approved
Mozilla Thunderbird 102.6.1 36187 Wednesday, December 21, 2022 Approved
Mozilla Thunderbird 102.6.0 20234 Wednesday, December 14, 2022 Approved
Mozilla Thunderbird 102.5.1 25085 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 16158 Thursday, October 20, 2022 Approved
Mozilla Thunderbird 102.3.3 20297 Wednesday, October 12, 2022 Approved
Mozilla Thunderbird 102.3.2 18374 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 23179 Thursday, September 8, 2022 Approved
Mozilla Thunderbird 102.2.1 17981 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 11473 Saturday, August 6, 2022 Approved
Mozilla Thunderbird 102.1.0 17233 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 14110 Thursday, July 7, 2022 Approved
Mozilla Thunderbird 102.0 20681 Wednesday, June 29, 2022 Approved
Mozilla Thunderbird 91.10.0 31586 Wednesday, June 1, 2022 Approved
Mozilla Thunderbird 91.9.1 21173 Friday, May 20, 2022 Approved
Mozilla Thunderbird 91.9.0 26199 Wednesday, May 4, 2022 Approved
Mozilla Thunderbird 91.8.1 24073 Tuesday, April 19, 2022 Approved
Mozilla Thunderbird 91.8.0 22309 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 19926 Wednesday, February 9, 2022 Approved
Mozilla Thunderbird 91.5.1 23607 Tuesday, January 25, 2022 Approved
Mozilla Thunderbird 91.5.0 22087 Wednesday, January 12, 2022 Approved
Mozilla Thunderbird 91.4.1 25558 Monday, December 20, 2021 Approved
Mozilla Thunderbird 91.4.0.20211214 16784 Tuesday, December 14, 2021 Approved
Mozilla Thunderbird 91.4.0 18883 Tuesday, December 7, 2021 Approved
Mozilla Thunderbird 91.3.2 27011 Friday, November 19, 2021 Approved
Mozilla Thunderbird 91.3.1 14271 Tuesday, November 16, 2021 Approved
Mozilla Thunderbird 91.3.0 22530 Wednesday, November 3, 2021 Approved
Mozilla Thunderbird 91.2.1 22514 Friday, October 22, 2021 Approved
Mozilla Thunderbird 91.2.0.20211014 17812 Thursday, October 14, 2021 Approved
Mozilla Thunderbird 91.2.0 19157 Friday, October 8, 2021 Approved
Mozilla Thunderbird 91.1.2 22912 Tuesday, September 28, 2021 Approved
Mozilla Thunderbird 91.1.1 21684 Friday, September 17, 2021 Approved
Mozilla Thunderbird 91.1.0 20824 Tuesday, September 7, 2021 Approved
Mozilla Thunderbird 91.0.3 20663 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 28782 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31889 Thursday, June 3, 2021 Approved
Mozilla Thunderbird 78.10.2 21025 Tuesday, May 18, 2021 Approved
Mozilla Thunderbird 78.10.1 19258 Wednesday, May 5, 2021 Approved
Mozilla Thunderbird 78.10.0 20992 Monday, April 19, 2021 Approved
Mozilla Thunderbird 78.9.1 18524 Friday, April 9, 2021 Approved
Mozilla Thunderbird 78.9.0 19266 Wednesday, March 24, 2021 Approved
Mozilla Thunderbird 78.8.1 21142 Tuesday, March 9, 2021 Approved
Mozilla Thunderbird 78.8.0 18875 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22957 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17627 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20305 Tuesday, January 12, 2021 Approved
Mozilla Thunderbird 78.6.0 20520 Monday, December 21, 2020 Approved
Mozilla Thunderbird 78.5.1 20567 Friday, December 4, 2020 Approved
Mozilla Thunderbird 78.5.0 18715 Thursday, November 19, 2020 Approved
Mozilla Thunderbird 78.4.3 14893 Wednesday, November 11, 2020 Approved
Mozilla Thunderbird 78.4.2 10861 Tuesday, November 10, 2020 Approved
Mozilla Thunderbird 78.4.1 9264 Friday, November 6, 2020 Approved
Mozilla Thunderbird 78.4.0 20206 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11716 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17163 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16193 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5293 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18570 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16594 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9564 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18424 Saturday, August 8, 2020 Approved
Mozilla Thunderbird 78.1.0 10126 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14038 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10394 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17193 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22049 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14086 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18415 Tuesday, May 5, 2020 Approved
Mozilla Thunderbird 68.7.0 21870 Thursday, April 9, 2020 Approved
Mozilla Thunderbird 68.6.0 19684 Friday, March 13, 2020 Approved
Mozilla Thunderbird 68.5.0 28028 Wednesday, February 12, 2020 Approved
Mozilla Thunderbird 68.4.2 21220 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18626 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18171 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13339 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 34979 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16906 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12472 Wednesday, October 23, 2019 Approved
Mozilla Thunderbird 68.1.2 17507 Thursday, October 10, 2019 Approved
Mozilla Thunderbird 68.1.1 17708 Wednesday, September 25, 2019 Approved
Mozilla Thunderbird 68.1.0 17547 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 25988 Wednesday, August 28, 2019 Approved
Mozilla Thunderbird 60.8.0 34704 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18396 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11128 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20025 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45023 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8111 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11753 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8087 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9105 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4667 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10667 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15308 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9161 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9235 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11043 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10555 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16918 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24438 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15825 Wednesday, July 11, 2018 Approved
Mozilla Thunderbird 52.9.0 7459 Wednesday, July 4, 2018 Approved
Mozilla Thunderbird 52.8.0 18801 Wednesday, May 23, 2018 Approved
Mozilla Thunderbird 52.7.0 20347 Saturday, March 24, 2018 Approved
Mozilla Thunderbird 52.6.0 23730 Friday, January 26, 2018 Approved
Mozilla Thunderbird 52.5.2 16330 Friday, December 22, 2017 Approved
Mozilla Thunderbird 52.5.0 14512 Friday, November 24, 2017 Approved
Mozilla Thunderbird 52.4.0 19508 Monday, October 9, 2017 Approved
Mozilla Thunderbird 52.3.0 17551 Thursday, August 17, 2017 Approved
Mozilla Thunderbird 52.2.1 12713 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 6004 Thursday, June 15, 2017 Approved
Mozilla Thunderbird 52.1.1 9439 Tuesday, May 16, 2017 Approved
Mozilla Thunderbird 52.1.0 6390 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7228 Saturday, April 15, 2017 Approved
Mozilla Thunderbird 52.0 3994 Monday, April 10, 2017 Approved
Mozilla Thunderbird 45.8.0 8814 Tuesday, March 7, 2017 Approved
Mozilla Thunderbird 45.7.1 8733 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5625 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7044 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11794 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2138 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2316 Monday, November 28, 2016 Approved
Mozilla Thunderbird 45.5.0 4824 Monday, November 21, 2016 Approved
Mozilla Thunderbird 45.4.0.20161024 8494 Monday, October 24, 2016 Approved
Mozilla Thunderbird 45.4.0.20161023 2221 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12297 Tuesday, October 4, 2016 Approved
Mozilla Thunderbird 45.3.0 34635 Wednesday, August 31, 2016 Approved
Mozilla Thunderbird 45.2.0 52859 Sunday, July 10, 2016 Approved
Mozilla Thunderbird 45.1.1 555 Monday, May 30, 2016 Approved
Mozilla Thunderbird 45.1.0 463 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 438 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7795 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5839 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6098 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2781 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5542 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5681 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5540 Friday, August 14, 2015 Approved
Mozilla Thunderbird 38.1.0 3977 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3301 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1883 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3657 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 789 Friday, April 3, 2015 Approved
Mozilla Thunderbird 31.5.0 2896 Tuesday, February 24, 2015 Approved
Mozilla Thunderbird 31.4.0 2556 Tuesday, January 13, 2015 Approved
Mozilla Thunderbird 31.3.0 2430 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2438 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1466 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1074 Wednesday, September 10, 2014 Approved
Mozilla Thunderbird 31.1.0 986 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1543 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1507 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1550 Tuesday, April 29, 2014 Approved
Mozilla Thunderbird 24.4.0 1511 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1096 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 512 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 875 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 627 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 630 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 626 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 602 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 670 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 600 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 586 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 17.0.5 556 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 16.0.1.2 690 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 446 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 462 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