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,518,189

Downloads of v 91.2.0:

19,157

Last Update:

08 Oct 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.2.0 | Updated: 08 Oct 2021

Downloads:

3,518,189

Downloads of v 91.2.0:

19,157

Software Author(s):

  • Mozilla

Mozilla Thunderbird 91.2.0

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.2.0'" [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.2.0'" 
$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.2.0'
    source: INTERNAL REPO URL
    state: present

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


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

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


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

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


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

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 08 Oct 2021.

Description

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

Notes

  • This package installs Thunderbird in the first language which matches this list:
    1. Install arguments override parameter if present, e.g. choco install Thunderbird -packageParameters "l=en-GB".
    2. If Thunderbird is already installed: the same language as the already installed Thunderbird.
    3. The Windows system language where the Thunderbird package gets installed.
    4. If Thunderbird does not support the system language, it will fallback to en-US.
  • To get a list of all available locales have a look at http://releases.mozilla.org/pub/thunderbird/releases/latest/README.txt.

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.2.0')
if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {
  Write-Host "Thunderbird is already installed. No need to download and re-install."
  return
}

$tbProcess = Get-Process thunderbird -ea 0
if ($tbProcess) {
  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.2.0-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.2.0-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

  $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
  $systemLocaleTwoLetter = (Get-UICulture).TwoLetterISOLanguageName
  Write-Verbose "System locale is: '$systemLocalizeAndCountry'..."
  $Response = Invoke-WebRequest 'https://www.mozilla.org/' -UseBasicParsing -Headers @{'Accept-Language'=$systemLocalizeAndCountry} -MaximumRedirection 0 -ErrorAction Ignore
  $fallbackLocale = $Response.Headers.Location.Trim('/')
  Write-Verbose "Fallback locale is: '$fallbackLocale'..."

  $locales = $localeFromPackageParameters,$localeFromPackageParametersTwoLetter, `
    $alreadyInstalledLocale, $systemLocalizeAndCountry, $systemLocaleTwoLetter, `
    $fallbackLocale

    foreach ($locale in $locales) {
      $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|0688a35c856bde7c4a0463740d619a0ca497e8e2db659153d9bc64d5e66e5a48fa05d67bb0c9e7a56a1c45c4db8ade2d1df020afb211e957ee8a4b219d9d0333
ar|32|d43c3de55a493f3fc962619f10d3383ed97719d5263f6e306c92c41f5b995b9dd13b39485130fdae701436088a45145b5c4dd9ac36d67b2c72fc405862422733
ast|32|c89e439d2ba92ecc986fc5d3017a5ba7ac6d9f24b4bdf7cfdb86f99a8d964f665ea912167b93b40068625fdd46b3221dfd8f2fb2c1174d5d75d3683867c05bff
be|32|4fadb11221ec42c077382bb507176ec9066b44ef2d2dfa3afa93b87250453b6e74307990f14195ebb0802e2c1ac3f4c4fda83de132f5421265e3819e2d4f6ae2
bg|32|dd52427f3fe4593cd8a813d040bee490926f7992a9411aca87be40649476f3abf21dfc41d564b64dcf7bca5f19921ad1e75aeb7938090fad5f83c2f31447e4fb
br|32|a87c121c34d750e2fb4b553b8fd0be4609ee4ca3467d1416163d2f90bfabb5fc6d5cc218b4da402d11d1f8f6a65571b9c886df6c8ebcad13d4db648d80e10118
ca|32|69a996488cee96a50fb6c48be15bde4590fe51187b6cf2a7006995eb73df83c8e182022edb29aabaa521c644b578c14cef569d3d59e195cca0df86bb536da5ec
cak|32|014a66fadc50afae705477353741cc961c4391dc697dbe825327feb37f54ff49b73d3ed252089446a8a0287a0250b2ec07f54af9d29888bf739f9e2ae8002a2c
cs|32|ae9551c16c202b41a1136fadf574cf6f5f3ecb3ab360f1c76cee1c3beed8bdf7969d59e0b50830c4fb2057ddf3a1d7f3dd792348d735b54efaf1e7225a869308
cy|32|81f7c8393cd94bf45ab7adbab75fa29a3b47088b3745bd1560679e81e3740e711081229bfad05b870963bf6fb00989693ed33d73ba2e7ef50cb3ae56a3f8aa05
da|32|ddb709dfd2fe7405647fa01923c72c5f43e7b7fccf0e6f93fa734cd55a5ef1f8fb4b8c595a192a32360a5a1e4b29934706673a1443702ad76794e52d96d1822a
de|32|f2ee0be170f16727c92bdc0e08aa7db3a826ad03211b97eab222a080ab1c25fec725b9bebb8af9a43b7b0e96001d4d8032e13c67696b4ae0976874a1579f18d9
dsb|32|33a6b31ed5f3c7bb1346778d4fc36c2a7582b2c83874a7cbcf80e8c6ae4cd235d34b5b696667a0a0e0bfad3f46ba03eb7357828a8a4f7b02f9707e046a4ddc3d
el|32|af82ba994ac240ff4484f430efbee2f666f827a7d13a7ded1cf0c7b7f3b9523c9ecfb9540985edf79a44bc7f579ba86b5f1248631d24064ca0ee49fb13cfafcd
en-CA|32|e622e8267d4abc3f85eb35ac7aaa9f5cf1dfa57a8f242e280baddba49f40c11e0b51e755cbd8d73ecab5e995600b4e6c854f5fa69c9ae0bebfd79731df5aae24
en-GB|32|39a23ae458e77340b30bd200a9ea13245f7c25767ae0039ecf66ff6a9adc3eafb23b9f400ac542cf10b2d2f7618e6b72534e1381870a80df7a720cfd58591718
en-US|32|8938eb90fbf8f5af81c6dee4c742f016a60ab014672b63fe4940f4a0dd1912c83d928adee5ef19221e73f3af4896719887048cec214b44e7c3ff673af5c30f2d
es-AR|32|926c47821db31cbed3f2f2e12a349eaa55f40ce22f2e482f1b5caf43592834a41ee7ccf441d2eccb4282988af2c83d23c8e05357910ee69884557f4eb7bd3970
es-ES|32|9caef9fbe1d87d2fed1bf233850ce3bdce1d7ed9153d5b1ed069127fa0d7986e360b1822727fda66248840c22bd0c05249aea40fb8385603a9103664e5de342d
et|32|8fe4dac6abe422da6f3286360af0d6c73a2580075f0e4739d75472e0d081f1ba0c36fdcb80b956484e53333b22c9741730a4285d1e867ba705b429c612ca3649
eu|32|43796abe2ca30cdee97fc96cc162275d590de4949e0c6e9eceb948170d195f343332f80cb57f7fb4c7e6e7e4167900015b7e16627e28b90859e13427f1668062
fi|32|2b3216dd6c649147667564c94d1f77de2d6072327a9fb49023f436046001308964605a7b501f61f13241c8643ba06c1b14cd4c30c5f06e24e8cf59373b0274f2
fr|32|4a7026aac52bfcce07176f50c29aa5337a5984f29a5cd2fc44f577484de4d7ba384116dadc4a445ee1b44876c774345fef8b76a2317fef10c484f57fda434594
fy-NL|32|f15ea23f0dfd28889f4bcd2fec149ea298ef0bb22fe25849f24b30f5c1c21000214057175cbc427ac19159503cc5e18b782c3272853d3fe0c4b83147528412c3
ga-IE|32|56b66c71dc7046c484c913bb7d4b8ae666522c8728b6155fc472d115ee1edd46908193e2f76d9ec3c0ccea5ee25258450e5fd0d4e4202739344cb55408cd3c37
gd|32|d5de026a104a8e8766cc673da37ec03b6d8be00009f80acea754078c5d3df8492d557a975dcf5ad01a0e83d6182761e0da1062f8930a7c3ddf249e0d72d06281
gl|32|9fcc661e375dd8636d75791fe3dcbb940b50a2e5123d91dc7a2963df390189772cbe221fe2ebeeee7d2c5824c500185470ae750a355637307f70dc1be9e2c1d9
he|32|f5d9036cf66ea728c9b17fcbb355f9242829b2fe1fa622754e960064342ef721873385b4d6e2723de693a478f374ff996ceee3c40809e856daad8bb8713bdf92
hr|32|8b4c1c5cffa61c41ddbc2c12bb7e1b4d3aff693deac287f03296761e0ed14eca91b07366173f5d1f169b7a719a0c756ba6b244f8f14d10b10370081c1ed301b5
hsb|32|3a8dd587106f070f68ccf4cc0dfbfecf28314a2ad2aaa2d381e31b0e5e89551929a35bdc952fe982242248d37d8111141d1b95c3e3f93b4d6194c520f6f58daa
hu|32|1fbd7b74a5a11620f0c1037ffd7848761ca9aa98cc12a01aa525bfdcc40357c10495dd179b4e4ee13c5cf4e45b5d8fe551814f58f6bb62c6105b4468bd7747ac
hy-AM|32|ca90ae4566fce31c4474304af58484ed84d3d1d39fe9d034f87cccee47cba4807d196dadf7477e7e01c2654e1ab3aa164897cb72f27a6ee79c02ce54573f4efd
id|32|ff9b6c5ea85c2347eab2ea845da75bb65f9ab814f4c521b06ad1a8e3f090118dd0cd124a25089dd6f13837d380293a58df6767188f3fda78f1e0d4a5f01e1739
is|32|ac2d6cad90e76caf6283cd5867faf430c6ef7312d0eeabf1831c5c3caee120b6edf54ed241850262f9e4628154054ee43af1eaf4362a8d64e1d37da92d19250d
it|32|a76a21455a200ec6eb855405facb267286cd9d905d39a465f6d848b96ea39ec32c83e01c731edb630f2a77b542e6bf04efae695dcfd8f89a957220732e54204a
ja|32|065b5cd2d65bf2677d8985f0ab63011f984cb745d8929f542a7973c33a22c81710f7cb8e402fca7a3e073d86acbe4fc0b0fe0fc63c44a0137a2d8a60cf7e26ec
ka|32|967b92263875d4111e122804c0cba33af675c39ba9e8246dceb58fe0153166ea8a34991792f812bebbd1f405d0e617cd73c08c98ab8d0e51c8ee7c43e356d37a
kab|32|b7d6b45b1d860d26d7b3dbeb3ed2e324c3a860c39ce831ec5a7ecc23c7473de3da45bb9b3c2bbf7a1cab1ad71a22c0c8512272fb6e889e1246df08f9bc3b85ee
kk|32|e6a7639641d378d5ecb5a9cd171dc46c61b19fa7426f3a8bf54ab6982426b0525b3cf73185a0afe6f0d2e074f15c5e69eb97a982ddeecd4d50e6b5d3552623d0
ko|32|ff37cdf5152957d69963a660a7fe0e03e37b6b5a31bf805cafc428446b33632913894967c36b7e2a5f5fe7324d9c366765e2a4cdb35947d9a51ad486723351f5
lt|32|212feff7ea130dc631b2568aef1a60f7c6916588ae3398fb26eb2b19e519abcacfa8144620c73da261a060f2c9fbb1edbe3b85001bb4a64b155ef9808eff1163
lv|32|2acd7565c4f26e459b296ea51b963f4850c8eb10646d17ea4053cbb89c4a4bcc228c8326906f8296f04fd1e2603952d0daa4fed9646fb5c8c7d47c9890d6d530
ms|32|bdf8c9f0d6c78915a37fd744ae0f45a848f234ed8c45cf027ab4efaf8e13a467d3268fc45b310405f1746467cad4ea41d98cbe3f8dd3d07390f1fc509e4e4636
nb-NO|32|9005bb7e400005b95923fc0d7e3ab921bfb015de75bb2fb13a94013496d9d4da473be6698a3eccca91d0c4a8434c54e877c4e66185b5dfa3edcb21c699f0fde4
nl|32|fda015e9c9873eb7f3cef89fd9848f8a24110a8d7132f64f7a50d8d1de6cd7cae2f501b9527dd141863b24065b2b95422d3862bd10a33125c075abea075b08ed
nn-NO|32|d3812c6a310bb8d0c482781088b518b8b8ca3b110d8d3e5573026e9cc2ad595ce03160c5a19b7bfb51518f3add5b3b7e2ea92d226c93269abe04ca2d2ef246d5
pa-IN|32|98ae3df09124339361823e1032b493d543cbc2870ee179f03a7885210234ec80001ce590b3656b1fe474ecb0bb41181fe0756b76484c32295604efab95ec7e39
pl|32|c9b27d4a78588dd3e8c8d0438826d7bf8803e0be6946e8950c443b80c5d92421429502e8c10a1e754505690b1e863f93e4955f62ccb9216e3374d4f95d486be9
pt-BR|32|05131dc84256c3911d2243c55eb0ec3769898db0057d7a08305bba491a2febb8f4e0a8b3d0b7438a10f8b6ea473d5f577b2798799c5c0c003f3475a5f81f3601
pt-PT|32|db72b45c07d4b53f2971bb70152e7046dd6a3491332b3137386daad8ac62ec17ff1a96c3485f86682b0ca245257be15f4e54abf0c0f485e45a03097172109844
rm|32|83f345e3d19c5c863f78089a1b157d5ca9f74d37588e43b3f6e1739e877b48f13b35dd165ceb4f62b984857dc07b45bfb2287d2f42eae14620b99b6f9905b720
ro|32|7a7089aae6c19747ba462938a3e55a0c76ea8d983f29b144564cb24268dbdce7d9931eefa97b403c38ddcdb1ec66a8cf428a29179a77c067b729d1b3029a9463
ru|32|ab3fe7e6c688cbcb6d2bf40d468fe27674ec5901887d2b330eea0452dc028970b08e84be943f903b6e9ce243e43622fee8a172becb6226b83af083fe675a1074
sk|32|7329acda9c4a297879376aafce8489379f8bbc5d9c48669f7f6f4d941db92c8021c10a3145d72ed1eb2543698ace4366c0f5c2731e97fa7a400c01d980da05d6
sl|32|c163584970a0f00a9f9e4028080ad80d998f84b9dbfa0833ce6a7e9fad4f427e002c0c4986a063e0f1dde7adda96e09b5ba8377852f45d5aa2f45859dd1f8d04
sq|32|2174a833c272bf1c388a0e3c65b86b2216ec9e883ef7c1d92e057e24326adb0d376d6a2cccbc7fed73202ec14108aca5f88bc9c46ec5b5e3ad2b5a3048d73b49
sr|32|39b33e80b128a2aa016c2a234272bd502bdc3826c9049750770fb1a193bfeabe8fa9d256d03dc117107ede27b8167f44286a2a6fc970071efc5b51851bc46896
sv-SE|32|92f2854615c3c3e1f70c76645c32e75911f2612fc60c8b9446c91f7c3676044c6d9432ac319f38feef1fe71241509ba319797a3160d72249c2519e70026d41a0
th|32|ae5c26ab614c64781dcad80c69fc9c18a8b45782297f485dd77cff80683b6d9c3a343649451e0374437383e1d8ec0b391cbf675d47a82932a8f308d81ed400f6
tr|32|47d81d279c8c3f3b0d229d185266407ffbe4922cb8d401c915caa632399ce41edc3ca8374ea7cba8e5a6eada77325210384e1e1bfcd05d120554e7e6f5a30f5b
uk|32|7e9758df60db72aff092cd68c26a721bb5a6ec67a935fc99603ee5d840c1de6f35efb575067d23a3f56b097c3a57e88594bf48acdf3711a4e5f381ed61472073
uz|32|d34400c0100adf41fbd1f7ebeccb44461127e5bc5c597f7ac4bc33335f57c2f613e82490df9c19ec8911a7d2ea31e4e0ae197d201e1ad5be029c90d8947197cb
vi|32|8ef6ac67077a7044461c40a0b92a573257de68cb4ca7728cba9d093bc3aac388c980aeecc952736b0121a9a74b785a3b281c0edffbef417d57b643357b4aaf0c
zh-CN|32|776dc2a983ad3ec1577f728c2e76eb46b240f805b6bb34f3e8684aaca3555d5384904815f19ce5295465c6dbbcd1fd745c0aa00e576ee5b3c49b4f49063c64bd
zh-TW|32|2e0dd0cc853a23f4f1425e4d2abcfd9ba150aa4db7217e59723b3fcdb4f4135f2cb5d90dafe5572b5955865ca9e0f9a10e119b77a3ded731fce5909a9cc83d78
af|64|0d103f45bfeb9e0f504bc6b9b74d97ee99738b3ffe22f3102dc34cbf472f2bf30293b582350a6d0eee9f32ff89d8eeaff2e4331743aeec19bbea1eb8465c9306
ar|64|8c4b340fe50fa1998ad0996967741e993e4072a4fa4e198c3c99084cab3df7b464bc1acbcf203b1a709c365d2ca43042e748c8b7bc15f2b07cb1de5f47454951
ast|64|e98be4a076dd46923b184a89e652fe5cc522b701f50eafdee31b77a2bc22dc19b4fb416f84d68d248790797347a66db16c350fc7551425bc37d5d0d2560d193f
be|64|3ac3b622b169ced17caea2ba752b288d0174a9be9799cb6012503c4178e28043a7cb4bca2dc39a3f3dd6bd850d7d5f02cd0563113435f4d487e624653b137188
bg|64|5052f0845212c36553d5895c0423a9f728669f9159b5fec451d82f1d908d3fd074332bd2e42041848b883c2632d601b4239db65bcff7ca8b123cebddc6cfced7
br|64|3737cab2837c9f7d83d7065d96bb14ed66c021bf6eb35569b17e4ffc71d538c269054a4667d0afc339dfab8af8ee0701601b57c7e1a6915879409e0129adb049
ca|64|811c91fc8903491650a1e6d0cf4be97a6ce17a35fb62e61d223fe56fe03aa61b94ce825af992e0c780fd6ef5dd290b23005ff2aa9ddf488d0e9d599a88addbf1
cak|64|a2d6e688af85ab1b8141f33a445ed9f5bd524402008d6375024642c9477ff78172bf33f3092d72642c981dacf540cb3298f0fdd578254d571ce4e7dd0eef3d22
cs|64|8b108ee2960efb275f16ab734379c4eb60ecbf335926deba89d2d6af77e0ecc1d9bdc020b7f87d9447d03a8caee2de351ceb30d70257f1e5832bd7b0d947b163
cy|64|d91688118044eebab9441dbd9b700f362945ac41c747b1de6dbe7620703affb327362d2c645d133d806bf542f39daceeb603e868477bcf8b6d0b236d908759f7
da|64|db38d290e730f9c8b656b6f2fe57c7a54961a44cccd42006ee6e27ecc4a6df6cf62521f6c8c636ea3745084f944d6f21b9eb13f65f5c58461e42891c1b272bd1
de|64|415e763f0591da06f61fe12932488ff039189e1f4813e1fa28b504cba2cf819639be77c4275f6b0e49eda6b40cf05e0afe647a422d087a1339f229e4051dfbad
dsb|64|dde15aafd37d9dfc1f66305f3f95fd2e698d4c6ffdcb7162668c6fe686bf079df149b0aaba11e14301c6b92dda216a57e78b914e9abf091c691a222328fbd894
el|64|afa559cc4fbd2dd669524b555e0df9dca803d8904d6a7484f4c1e66308b9f873c4b51c58167f8e2f4cd7267699a718f73cbbc05b9a395cfbc6317fade2040329
en-CA|64|7815d070ebcaa8cce62cff0b2325d5c93a031ba4aaeafb348baf6c3f12af681f48d4fccae5db19b1e810bd7cf12dc9c01ecd0dcce0b7aa100fe0ff58238cdfac
en-GB|64|87f9aa79279497dd1883834dd567c0b4125734c38bc89917364216bc67c5ad997b4a10e2a0279e9010e146d543221ee13ec9dddb3ade136a008c1aee615144c3
en-US|64|bc67e776dde72a530a60fbb7eb2efd5d420ec078847a579f4139391791bde5f3d052264e28d777dbe1e72def914429803393e0669c4ed291f264e785b34940c6
es-AR|64|3344c13fbae956be799199569518ce156c5924d4a52620a4026492897191b87cf3f56e9bcf6590272364dbcef2a0e4d14dc5329c545dd7bf385c980d269424f6
es-ES|64|a797c95a8e6531602540d191ab52803530f8fc8797a33e8e8be3db63c5d8f4a6f3464488478d5e59ae825c8fc154cc329d3b175d0454471bcaf8e4424825b254
et|64|9a3cbc5ede7e6764b2ff31e3a12eee4b45454fd10013dd35ec1e5cde8c0c8b093530084883d7a05b6d512e8275277da1a46e59279c652430a0bd4786d12e314b
eu|64|b0bae77299c84c932802f251973d5318697ca2817d88aa440610c351d6fb2ef76397fdabd3bb02f976284a6758d7648d05c6e870fbfe3f09cc74ec61b3533a30
fi|64|784553e193629381c86d65db1af696ed8aa0f98bd6828edb38d2c43d0a102896d7530b0dd484041deea283048b1e71f83d7b4f810267b5a6b9489e92862cc5e4
fr|64|7f7917e37eac1b17f6da2a5575e1a59f54fc36c4e794fcf967a3fb4d4ae257bd3d9f4ea714624d80099735948e65d47d0b54a5bf2d9090fcc363d7e28a03a1dd
fy-NL|64|941ca5f2a059a799b927f6a5fb1b121eb7a2f6822f7286d9e1c3ec18a27379d5bc6ef99d4f50ea898c1532ba08b94009737a725c995438de9a6e300d0bdd63c5
ga-IE|64|6400ceb0f7d8042a99205d3b36ca3a4c94166c2929eba997403029be732c151d383f2a75e660a0762128c26a635f24c40cb53259171ae9466f9979118c7fc9a8
gd|64|318ebf7c4ffbfcb634b3f8385fe443e58b9b07aab02b56757e0e2ab2eb7660d8ea3398b203f93091b796d9a873782f2c1c570dbf404707086998fe3abbdb5cc9
gl|64|75cfbb63ce31f2c14c70789c8529f9d4ca12c46efa6605cb3406df0d97a7a1cf7bdc637ab8d22ab9618adc9f860d399004b07c6dd811b7e2ec83a16cec198cd8
he|64|9bdfce8128689a8d319f3842ddfe581046e18153dd0006f2b5bcd87d82f7d451840fa6351faed97173aa5d8edf573009858d79f96cce7813178a9968e23791fd
hr|64|13c2489a678bb45a5c7265d6ee9881e10b3f5e4f2f6ae1c7fdbe7d08da8716269dcbc7037fedf9ea868e5f50c409c019eb10808dd1b2977cf0cd574eabe191f8
hsb|64|6fad7ff02a2588466ad7694e15c342a4651cda1a5f7f6dc88f78faa78a7d29e96d1a7435d87413caf51848760c1409bac31c96ffeffce778c935a6c662ce375b
hu|64|9d1b92eeb2b4e238c5a3762ca2f9b0dfc82e322f155ecd8fef7e46f4efecabbb0a4b4ae78df529c95c6ec14efc5fe161e9ec9e5673fd0ac8a60faf90f84e210d
hy-AM|64|02b30914229c474b93d088f95a3c78ebe10daa4f49335c6979480329b11a9d3a40dc462e77bed80622e8fa8fee1610eaa7efd9d387aa566a253b63dcf3dea931
id|64|b7b7e85aeb69a5acd35dd4e087ab356cd79bb6ada78d79822b61b9680cbaf8b895200bdab84666ec590ccfdc0ae03bc7608f3d65669f25f6489944e0d6c41a2f
is|64|04f80d1aae7fb559f8702e6fd2fc35aafbadf214838a90fb4c028a6b08268a066451e0520922aa94b4ddea081c6aa358782894344c076af02f44ffa5c89c0125
it|64|8b31556f17b8275b34b445da3c884164f5c1344d1bb56646450b3d7f4cd3bcd6786168c241efe17d1f739674f4020884319cca0f329603ffafc92d071da03784
ja|64|0ec2cc49bc855d77061a2bf7358e1f10f49ee72545a60e253b3a52f7301939d5448f3d4fb3913315cc076a25fa628e0b562d1a6b61d660cff950ce33075c8757
ka|64|86d9bdad9e5595d9d9cd107f310545e8e87c625691b2e30c5b39c66a0b534611bb763d2e2614d88be0161b389bfefe6298b75048c71b67355fce12167abaf114
kab|64|2b8e94c085e897d701d48271b2bd2531fe3f4011e54286d52e4b012bd535c6b675210556498b73d09f98b953e9e355df356116eed47c12d8c1741f70576d7aa6
kk|64|8917a0ab1f411f6fb73811092bcde2acafdcad00d7b6ee07bf8c5a8069116b8708ad9d768b55f5ed95578c0f8d96168b7c9b33a684c65c560f4cc4526fa3955b
ko|64|3fc73693a5c9294bc755d3904c514ee232c8229ce4191fdb361c40dd030c2276a74b42c26e2178abdf3ac15e8b37c5890560f74caf325fbde76328ebcc0b25a9
lt|64|4cce44cffd1d200168159a9ee298d4668c8eb019f3b2afa86dbde4ac62dde49b86933a695ceea4f52c6076bf3af8be2e2c53388bb8d13c98dbeb34617106d2f6
lv|64|8af5d39732774efd79e2e7f0bc5e712cf571d9b9e7939371ace0bf5d0d06312fa95797bbb77819a961e89c75234669915be177ff4240222e464bcb3d2ebfc297
ms|64|f97d319bb42fb7f4d19c054b055ae4d2dcca7c7d7ba1875d61c77f84b81e2268cc69b9ac02aa7435782ac6946e5a1f5e5450e906c8b4920263ce834bddda22e7
nb-NO|64|a3030e8aa4283543a676d457ba62eb061a8e24a1c432cb7d4308922182e9828d9f482a91dcd9b4abb0991002af831b7a91e0abbac6342ad9c7f8544363bdb5d0
nl|64|d7cf5cebd6d1f5b03f5ca0e0b4b6b8cebfe8cc592d25c28a33674030d1ce8c091053c65521b2cf55cb55d67408ba0c101c2d6987b0f73c0f384590c0e80680cf
nn-NO|64|597a888779663b279b560d44a30da14c0a7b33da9306920151ce3f668291e142f2a164ee70b6734a6ddb97c1d103ce22db5d75b46cd547d5f3c7ccd1108216b7
pa-IN|64|80eedf5f5ee67b8aa4903533d9eddf0bf4b4a2b407a12480ab13e97a51415f8ff94e51a253c2215a09bf2d142e1c0a851e6791ab374dffb3dcbb990dcd0b953d
pl|64|3896c22db3e57a2d2b37530832dd74287bf762d65bc30ce753d7d1d9d9dfaeb165b5ad8be3974968208518369f6f91ed0088f5efd7a09230e577cf9848d901e1
pt-BR|64|92fc53b0df5ac4fd978cea44e4110f2ed75a3963ebd5e43cb9257937540a2afd59f8d0fe388828b085ef95774fa4bd7ae9c3794ae0876ebf09edb064c3b76dd3
pt-PT|64|fa41241f045b04bf3cf807f5170b038fb50eacf3cd4931bee3d86dce1f5a827d8941158692b317e16d0c0c3ae330847d1b3cad42a7f83052c210e477055bf1c3
rm|64|10387bd708e811cb42fc316e83580d9c6956d26d9c4cfbf125ef6dcd5bbff0b470e8894908e867dfdd90102fb5bb1892131201af4b503e3536f9873ef4a13a6d
ro|64|6292b281d64953d089cc7e139bb4062999e0e7b14f2205e7f18be173f3a837ad997e79162fd592021246d683eaca6a348f868afc14b189829d6d225fe11036c4
ru|64|c08c2e0f499273633bb6c30ba2047b45901dccc017b579cd62598ae3d06b4e8f1cfc6d9123879a053cf2121a6e260749086f28672e45ed25a5fb842bec7635f8
sk|64|5c7926dd7cf8016ddde9ce3f8c2a45f7ea33e7ed2f1f10d05adfcdb2b329bb72b5b06b9a5a1f705dca582f5e0da6e5b5d698effb1bb0c74e53ccdcd5619d5177
sl|64|8749838401b5e5e3f7bffb60375dcf18a8194fe802b1d88fa1e8ff9fab68a80dcbe71c934b9c27dd0e134d26eb6f9f2823c90054f2de27eb2c33833ea63580b8
sq|64|2a912724ffbb39726654fdc276ccbc3843f5c7ec7c206750615555746ccc8a7214e50d3f1c2ed7a50eadd163a8d44575c332e66ad354f431e172c34633111eae
sr|64|0befd66814628c8a715225bfd11ed996c07aba6bd258bc578c5c9e4f8bf74b8f88540663d79bf62908172b36bd7d0acce8a8d926fc469b23b48c434cc74ba724
sv-SE|64|a43a9908cb9a7b365eaa0f16c854f5095ecd35863c4a1edb87cc79a65b08d82cef49d96c672576ad7a9d9536f61bf26adcd19f0c5204994084ee0e00efaaffbf
th|64|d797ebc52c03f564b9eac05cd8938dcccc95b7066ac2cb5801841ccdd84cd3f2ad14eac9be8a76139ec66ea5e2217e8e972d568748310669729c180972cb4b98
tr|64|29bdb2b988c791913b404bb1165c07759b1358402d0b6cbf87b2087fc6f767749417f6c115fe362ae5f9037b347b121b72f5cea72e3ed63eeebb0e0a4c028656
uk|64|e7e3eb521c74603ee3396ea9b1f26b4f96ff40d886700f411e4467e496ff0897383f721cc56aade2cf7c9b99408715da2f4d3e1be1c4e6869aa409ad4128e747
uz|64|819820e7e99f0ccb7d0d55413a225636c143cf9959aa59e8c4e8380b01ec0c44487ccdccf98a8a4fb5a025f0b626a9b31b45f741407f1298c970a7399f73fd2c
vi|64|1e2ea283b634727dc9cae72505f3ccf7e825dd509b441adf65de309431598524f0fff869ea75490c977da14a61ab945b70ec31293e145146ddf1d6691ace05ad
zh-CN|64|24db4a80895d4c5f68b0c9f88111d15396ff802ad14f6009b9d7dacd8f3612f8f2b1053d40a6de4f9786e4a91ec2c20b9b7899946ed28108d9efb89241d960e8
zh-TW|64|012445268f37dcc4086702c3f44384afc169e9c459727acbaa551794df844e9cd4be9d701f2582c6ac37da1ebf41a30ebd92afdcc16157c21d833d2abedb4276

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 11890 Wednesday, April 17, 2024 Approved
Mozilla Thunderbird 115.9.0 34012 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 36211 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 25996 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 27001 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23754 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 22089 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 21026 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 17628 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 10862 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 11717 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17164 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16195 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5294 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18571 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16595 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9565 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18425 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 10395 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17193 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22050 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14087 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18418 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 21221 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 13340 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 34981 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 8112 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 9237 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 16919 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24439 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15826 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 6005 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 8815 Tuesday, March 7, 2017 Approved
Mozilla Thunderbird 45.7.1 8735 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5625 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7045 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 12298 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 556 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 5682 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 2431 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2439 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1467 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1074 Wednesday, September 10, 2014 Approved
Mozilla Thunderbird 31.1.0 987 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1544 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1508 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 1097 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 514 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 876 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 627 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 631 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 627 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 602 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 672 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 692 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 446 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 464 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