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,516,174

Downloads of v 78.5.1:

20,567

Last Update:

04 Dec 2020

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

78.5.1 | Updated: 04 Dec 2020

Downloads:

3,516,174

Downloads of v 78.5.1:

20,567

Software Author(s):

  • Mozilla

Mozilla Thunderbird 78.5.1

This is not the latest version of Mozilla Thunderbird available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

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

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade thunderbird -y --source="'INTERNAL REPO URL'" --version="'78.5.1'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

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

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


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

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

Exit $exitCode

- name: Install thunderbird
  win_chocolatey:
    name: thunderbird
    version: '78.5.1'
    source: INTERNAL REPO URL
    state: present

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


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

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


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

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


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

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 04 Dec 2020.

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

$tbProcess = Get-Process thunderbird -ea 0
if ($tbProcess) {
  Write-Host "Stopping running thunderbird process"
  Stop-Process $tbProcess
  $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-78.5.1-SSL&os=win&lang=${locale}"

  silentArgs = '-ms'
  validExitCodes = @(0)
}

if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
  $packageArgs.Checksum64 = $checksums.Win64
  $packageArgs.ChecksumType64 = 'sha512'
  $packageArgs.Url64 = "https://download.mozilla.org/?product=thunderbird-78.5.1-SSL&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
if ($tbProcess) {
  Write-Host "Stopping running 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: '$locale'..."
  $fallbackLocale = 'en-US'

  $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-Verbose "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|9912995e2cb8047cfa99e4ffa747897a8a1eeb66376c47da3c3d65bf473261aaa5a30a03104a5dccb537f851a693e392f03fb5a751a686d2a7a7a67699a1d1bf
ar|32|74381c796f85ec0a0eee7f5bf8e92e9e9959739718c96656c662fc0bc7247f2a823a3480877e5118e331e2e77c777ccc0dd4f2a29395a6313de142ca1f2dabcf
ast|32|6276cdd1ad5228e9e841bbf972b0afe806502cb330fa7e055d7b8d867c60cfaa2a5ba5b39558373feb297b8c3d6d8e37a64c2bf209b5f0c1ebba2a481f8679a6
be|32|4e52c927bf65f9ee3a513c8322eb6147a90f1795e576c7c7028ad834336014e2e812a47d218e268d0d5e4d4b126a77c959dbfac509bd38871a2a51e4a214ed8b
bg|32|5bb72ecdcc27cb8ec5ab67641b42eccffe7cf759eb588cbd29ee28dc41b1438b9f6e77a01af570881fb20a232d674d70290c9d8e6c5f72aec0fe9ec760c87f84
br|32|d908987d2468f6cfdf1bda48e424f5899b0ca5779695dc3a668c3e2b7311888d10c83d2e8908efa1ce1311ac96c7cbd2fdee4f500e48a07c42a7e0fd3606170b
ca|32|c1aaf6b8a1cd02a0472135ece219c5bd31e033e9af5691b1bd848aff9ac7a39612f1dd01e493de4cf67aab07569b7db0570628ba2bdb7e2f294d883154e6a44d
cak|32|4a3610f495c2b8793c9b2103033bc4636dafb91e9b6ee359373bca24cc333a2e4e02afa4fb1aaf6fae4615a3f6fbf17740d1c82100aa235aba2fad275476b151
cs|32|988e5db1797fc710179f8c56f13d57e92f8f7d3260c391c04ed6a29e7353dc1bdaa53f5660589320a9d237e9b68104e08d1f223f21e0ebe957d649cad80907ca
cy|32|522da3fa804c8a481312998dc2e42cd03d50e2da51095a4ee674fded42627e8cee4075ca66f6334ee98b1df26bc710c3ddac36bb282892bacc6a5779b8ca48f9
da|32|26a853550d443a1f046698ae973d4d62514c4a140679e4f2f3eb46524f6416473ccf3892267f5c03cac2966d4049b9440e342d236c5140ceee410e51861fc647
de|32|52e6c068e1c6152f10c103379ace09c911b039bb6ba2212204023cfcb8555f19cdf5780c389e76a34bfbaf41049549b436c6eee363fb131f5b7f7fba6d7ff810
dsb|32|6bff09195652721390c84b84a0b759f4c82ed23c39078fc19225a5d0ef1718339135b09118eeab8f8ec883e1fc86c7636ef9e0b45bf5f6bfc6161dc50f43eefe
el|32|df510439935980e02951995c18123984b795605d3a1f9880e7fbd2305b866eb6128cc9cf833ab2979284d13bd5bcb5f81164df60dd5acf34a7ab8c57b87ccfe3
en-CA|32|1230b08f030f4cd9752af9919d7313493564b0d65668440ad101df3604fbfb073f2f5cbf5662c7cda20eedf858763f7e1bfd4a9e5746e8d9e7c363923aa8eec4
en-GB|32|8f091e5a06ced42189df642c3f4ece78157d1271c6e02eb1a6b0dac164b01e18836cd9e068c715b29f0600cb378f17fb289863ac5f8fd667c97dc44f30ae4446
en-US|32|1474872dd8ab682c0753027605b2e6c87a1f45c5721306f282d023b87f6219377e75788b4e43d249d627092f8c6f814300a1b852b8e4c748b5abb6895cbfe66c
es-AR|32|335c3af5b32fe9ae21e3052f7dda8f307b7a67408dfaef719b155b3de2e6a4160fdcd725dd19421cdd6016890bc910ab42f4f9033b8ae0335ed8d1d45a853cd1
es-ES|32|48fd7b1134b94c8eab05a4c0aba564f1a359908f66638324c66ed4ad018e0c6f2839e334898c7f00bb6fe3d82dbec4b4b55dd7cf31e80c77262698aee83f0ed7
et|32|0bcbf140a1434e69a3f0360041a007ac94c97b4b569f9ea52ecd482e4957b7a85cd4722d3293a2ad09112a72ae67a173eb20270e9ab6f6a9a704733e4b4d6875
eu|32|bdf5ad1b4d0b23468c609acc90a272531d5bd5d878816aa3dd3f7202c2633d9ad49f5b7f46c4a9fc94e312f933c122a4e4a9fbe7fca20bea6c9969bfca6af7ae
fa|32|003dde9dc7b713f1423be956251551e3256e63997f132f66fd4ec5530ddbecd39602691e818b10fdb02adcfc12f7eb985819c5fc6e3166a0908059ea08855a12
fi|32|510f92b0db4618ea9d3164bdb7c971b7e25f7ea39d589c4a6f7bc334a9afbd474e0ab37113d8a43a2d00c606a8fd33a03fbc2ec9be2f42272d4db64a210be111
fr|32|71cf2372076b40e744717816267122831ee255a6c070e6f778761b8c6fd13c6e7f96376b2f5527a615e47af065a4d419add1246b83d61a198b1cd065fa56f41f
fy-NL|32|9558eb449ebf6fd75f2e8c1cc3d286313f22531f765210be7db94018f5e9e746db2706ecdb7fe70e6e7998983ae7eab799d203f209833d794213faa6a2d32d25
ga-IE|32|34e3204a7ac21a44b7f333297a2ec32f19a9353dd75f98fe4943b15cc3f784cec3aa9b090f266f9a06e1b6747d3d359eb12fa5dcf6900a755904c826184752b8
gd|32|fac7cac297c7adab3f19121a4baa33c52babe73e9f4501ab06a4419bc842ce4dd7683dae880fb188797e249d23d662eacfe8bde9885e5843973f57cfc92db16e
gl|32|6f2ee64affdc7bdeace852621331ad4dda8716391749ff8c0a25383db8809fb25ae62d72f9da5728dc6585ad5cb920fa452a77b5ea11b6f95dbf792c6f44a4fd
he|32|933ac9f87b9ac71f25db4afaf4bd6f82e69753c3cdabc484dc855908032a257fd50350e3f86d9e7dab39e702a58e0577958c7aae1228c6d2297b2a1829479936
hr|32|c2153c424c6a1200e2c69cb0e830d715128317e14fa0caeea2e9a0330676cc6c2afc7c2f565cce9689fb0b1909cb006b0875d912098d95e9ab57dc0f2f6348d1
hsb|32|b25b5f9859a33d6a620913826c08ceeeb7a1ccc026b5651819e2a8cb087e24d313fd1afa94b3c3e59fbe707eb465cbdfb20b366b3eccf6a52449b8da601113c2
hu|32|d4c3c182e6149c3f09e67594ba09805ef3197cbe82d1d392b1308f9cd4baeb858cde0435ca8428c62d107227509eb7181c2e65068c84685d0e22697f73683b56
hy-AM|32|1e71651089272a2a338ad2f0c6e96b93d6f43837a63aa7db138d1b03563a13f0d8bc6eedd4221e801cb102aad7ab9d1b03262d55e0b9bfc511050d9de4419ba5
id|32|af0f8b1ebe9dc3825dacc9f01c47f52e1e6215e43dd9abd86fa2e4b488a652796c4d100ae2ed489f73b6728ad6c30d915316578c4889983e52a3cb7dfba81246
is|32|01bc97e82e8c218cc2091a4ee60c7edc1ac46b38c71451920c49b948f1fce2c4b0a384f9c41bbdb1d856f78a5dc1e36a59b13085f4ca15003199fb55b5426afe
it|32|a9a4610d032804e4218b854af3be5535c9bceb410d02a0394ee06ac3e67b0e1768a5916f563dd8c7dcc6b9d5132ffc1140c8f4cdd7aa4a439363263f442ab8cb
ja|32|6163388b9bcc4f336fca4ba1f3db12dfccac64c67d2f34d11a7ed7cbcf4e572f4514eebc21242ca1eb94ba31551aae72fa1488ee2de411b09775939125000b03
ka|32|2b4274d548b71653c7737568f89f7f01c226d7cd5eafa84bc056ff49f03fdbc655ac6642cf5bd82ab9e1a26778e44f145736e4d2243bfa2f3499a9dcd899958a
kab|32|1be49217bec30dcce8a1cbd1bb81189d0bfe9a7bc15f9ff9752062196f74b42efb16e0a5b7a4f2ff7e3e5461d31f54e52b452f65da50af03fe40387fe7802522
kk|32|b2042af2646b294f8112c1ef057ebedcdff20ca4fbf17986309cd895d9dda4d18c0b8b6a54b0f78a5b91850fefa27bfd319f607ab0cda78c68620c54ebc9ef36
ko|32|3d1bfa32643880eaff4e6bb32132ad0d07cbfabeaa70383bb7c1a2f2a4a567df200521615777eed8547baec19e8642141becb2f1e5bf3c398843bb1f3b6ff068
lt|32|f5c1a0a333bb5ea0979f33e3575467166907a2b0a62214e54215f2d95e3945272e6356f9319e111b183dc621b281e3f65ee18a70348dca1d6a410165e1a7b004
ms|32|ab21e36647e03356d79bc7682b584715022f290ce296954371036fcad63692a86f64c97540bf89dd62e1b04ac22954a55f2c60a7b3216de5dce8fd7b880b3e6b
nb-NO|32|84d3aeb346628a19dd87c7799037fb1583729844e1bf86122a00982b90942d16db65d2a0ff18388ee4bb4165a73c66096db5ca6c2da2054c4e622bf5a6d8df2d
nl|32|f24db7dd2962d6ec357ee28ffc69617783badef87fd6ac0982d7a03021507b5b01ce1351921493009531db9530fdc5eecd4ece16fcc91b231b98365dd9000278
nn-NO|32|7f16e8bdbc9c8fb0dab5d488289fa6799c2fe09894c13f2cfee7b781bcc847279ae46383cd6fc9984f2884d271910df2e00ea0e66835ed5b931730688116e348
pa-IN|32|ac7e22079ce900c4d41f4fc21b3194fde0ad0523137aea75d12bdf6466574432e3aa02926aee64bfb35088a262be0b634e427cd64ab87a4ee46ee659269ba526
pl|32|4ab84cc29fd294a962e80d32bc311694b0bc24991bea0a2e113aeed807daf061523d77b8414e3d1a7225599346e2adcdd21875dbfdd6d4b26aebec6ebbac0722
pt-BR|32|fc0419e84fdde78c48a1db3569ffbb68e7091d3c32243627237e144397f6335a64775e76fba5d224627a3c527248f828ba0572f78b90a0db189fe8e7643cc9f8
pt-PT|32|1a9ac22ceffc80e2878fc303a2a02045deb6879e44e7e096f2bfe039bea981b1a7d62d0c885d7f02e328bdd35488eb70db1364c9525ea3199d6d2104cc286f92
rm|32|3fb92e075b0b5ac043aa77fa6963bd3c15480ca8772fcdbb792bb3637013fbb163a1a302cf31e0abd33f24f258677101c8c51c9b3d7b7cf54c1a60cb28eb6256
ro|32|b259fb9352bbafd0855c19782e96b54bcccdb362fc21500615e3577c69c14ee3c25b72e04cab7636baa80eb3cffa5ad0c94fa5e0508105836669951b1af5b0b6
ru|32|e18514117a0a92bb2c3579b529f9d8bb317f76199bf30557feea4c7373c9e7aa83b933c4c4a984ba1c5578af89aac29ec584bab891adb060fbe9a63a0e3746bc
si|32|0d976b2609b1ac18dede33b2c53a81e6c906c5535dd0b88cb91165e3aefca987ffef96338b328a85e804d90af7944ae8992d32f802940a24f0cc5d099dbf9bd5
sk|32|f92eedb3b1ef816b6b325e6efa98a489e1bfdfb304dec697f3c5f0f804c3ca0111c9866fc20107ebf5e6ef5bc5a07fd69f31365b2a3b81be655ae0190d991959
sl|32|5611fb0a0ade690ddb2bde8a2fad7ec9bd0f971328659785f28eb24629b8e3a07e3afbc54779ecf4f46bfbfd7a432d9bb3adea06777347dc7ddd1cf199dc1e29
sq|32|9ce77d0c4a2e0c51fc804d32d4a7f0afcf777f45d99c8f071eebcb1d9f39791d2c2f7d26f1c636f43bbe9d08239bbad3d7e916f4960f6410ba10d113134d3d9e
sr|32|6b96674a1705a0f111e7431a925ba1d5f2e8ee69e194e7caf68933959aa2067c80f8450deac9faf6b1e7d9590f52267d5e31d5338e54f48808b409320293e5c6
sv-SE|32|f1f133caf45cedaede914c28fed0e04d26032de8fd4bd5c8e723f20f06eb7c45bc2a6e76ad4734e448426b9cfe1046eff0ac5e70f74751d4bf55bd25fe076a46
th|32|cd7cdaa9c88092a2508d0172d85ee10b70313e1c87ac107e3ea9104f2efc003c48e9a16ec208b70532ef5c139d578eca84ce20487e4f0eefa41a163ecd68efcb
tr|32|bddea8d5ed291cdb928f3164cf9f0aa0de693b5d09e2e859f259e40bb31220dcbab65e65b8e6e4d81db53451e11adbf42d1a647731011512764989da3983216e
uk|32|4195d2796d9eac9dd71d9773e37c116f0b9aecefda61b6ce429c22365112f4fe60054ee816dd2c914b6b087220c257294170e124ee86bfb5c3111d6cfd1d96e3
uz|32|da1ff8011f57ec2bf2bb7e9a79ce86e516f491b8216c9f0e81f1293ce386a9a120b45ca4b0ed3a7ffe6c099ace42043c76e69790ef53c6f7a450925934d22040
vi|32|e56ed8cc43838f32347d0ce98ab5bc3df862e2e21cf31a05b23f25b8e8f19249c79937cef3186170b1f524afe9ac361e4e784e51e0dee30e73abe6248c329733
zh-CN|32|006d0ce087754dbadc62c2e2a7518fc548bd12aa0b6773ddf9acbe5018cbe7362794cedcf115851725626023e433f9daaaa0c0d893a3f54918b0d623bfde6e96
zh-TW|32|97bbd7befc49fcbbd795c810bdcdc9e25d9267b5781687fc69e3720eb62e955e2820dbe3a8fd8f490e9dcbba18d5af251d991590a0c4f9b8125ec15fd0dfb2b8
af|64|6b91fc141935992897263b89dcee4a3b172bcf4d3895f3cab5ce871a29db84a637337daeba21757b2ee5843e72e5f1fa68b9bdf8ef87dbd86988ddea4515ab00
ar|64|2b3375bb0541b2c54fbfae535e7bc094a2f2277053672617b4fee6c7e411adc1766391b2f312dc39ac945b487f96277e0248ca12f478451d474f72fbc5feccaf
ast|64|5f6c69271c4589fec803154fe6cabb41b63ed47dab7de1897b015266827f489a32509370b3f38f0b787e7c65ed543ac329049f52834666b8b3ebe65d91227bb8
be|64|b399b8fc776f78ee3d6fa0fb90adbe1bcbdc88a11955fc0e896f1b9efc05a7d1b77a360769fabcdd108c1476b6145de379a7b80c854f3ddc46a30f64b82b6d9c
bg|64|eb793b0d934d2af084b837db155586bcc2708a9fc7314091b04e9deb0d20df68f119e0565d973b7a358a98bd2745041fd6264340f1a36d2b3c1812a06264e7f0
br|64|e06a765c7522e585b05ce9605c34204e3574c50009e51839185f5e330a3216a4d9c812dfc1ca651b5292766c0392fc6ae3caad341941713be7b13b264b87d709
ca|64|14cb9ce221fc727771520a3abac201eb461828487e3c1399d4b1dcab7e02c816180226aa424b5602525e88dab8c81207241b73cb499029afd2a62ef5825b5354
cak|64|c5883efd8443811045828e1e4b75355a186f3b123c2304abff4392b702acca7536c5abfeabb19ea7b69826b483b7038a1ad545c67c1211f749aceef69b2a99e3
cs|64|744f1c97bb7e811545a18a869a7e3752043c9b4a68c99e5f977875afdf969f84b20a3470462f53431df202bbf8c164c69171cfe8aba36391c2554cd13712206b
cy|64|1ae6649ff59011bc3ab68386e57639ce86a9b693d9eced6e3b7fee76da7931235a0ea8a967c18ddd6d07678f9106a68ac23160da3f3751cdc335e04894ede507
da|64|b802abfef3a48fe35fc6a31dc0848683e50593a2b922824944067948e7270dd5c1d4cfb7369ac9ee647a7e22e6fdae150ba0a427fa34027194a75d484eadaa0f
de|64|068889cb0f305a8c0b27d8ba5cecfa7a841411d4722d9c57bcb7fce407f8dd9d03637fe6d24b35c8d7df7247813e948e1bde88cf1ab2614974e70bc39826b579
dsb|64|2f798029146db99de38296aab7d67a33e8c70e75a0642c760947471a47fc83362442a653806c0b472e6647403a604e103f67a7017dbde0915e447e45c0bcfecf
el|64|857508fe446d03402d89847a07d216ac09d03a19aa7d1dbfe693be79b42997951a0dc9202f6b5854844006b3e224927927159f9a8ab92658ac8785827657fda3
en-CA|64|9eaf03269a589790d439b22cbefb6d1687ad7d3140175f8483e86d47677e790121bd6d75c1b518c4d460f4fa5880db7bc53ff5d890f144615b78f7f1880c9eea
en-GB|64|e71561c698caf778f0d890122481e4d1634dd91b84eaa96c11016a4d38b56cdbe335cd007451f814a5ccfe4097df072cc8a23d57babd9d32c72c9cf05abe5b5e
en-US|64|5a54215fb1d0bfd87037271f4b2290447efc4289d883de36caaefd912198fc9d029297cf674529d93fd50ff739be6b2c17c5e5fd43da8bf4557554ed72beeb8a
es-AR|64|f1a923e071d9f2b5846dbc1cc7b57f8c4aca086eb1044be564f91f2cfbbf534635c4d80e52c96a42474f7226d78929b4228c63796ce978428969ea282e32a3bc
es-ES|64|bf1b41b107aa4b1d051021de546b99fa305a63e560044513248347cb9a9b2da017077b8e1ab6b3189bcecc06e70637c4a6a85a5cbfa34ffa9ffc62312ba0cbca
et|64|01060ad668b555efb6921e848a8cfa9cebe829d01fd9b0c6ba18e96bfb3c288dc83f8e1f498d9588bb506f2efcd321d8f949da7a215399b6f55f9a1d7950c68c
eu|64|303431bcc41f05cf8c0c08d7423cb85ff051e3de7213dccd96b027415538315f79afacb323c11fe41e6f4feee62d724eb540664212676af6ab6572f93f69feb7
fa|64|fe861cf8e139a4c777e909db0feee741058b7cc2c8fe6cf8d86825a3f4a6b96d571cfc697acefe85a645c196ae6e11a8e614cb714c7ddbbe141c15ace50ff640
fi|64|7e25ae68e3bec52affd5e7178f2e85c874d63bd5d9e59d1c90fbf93b86ad69c523d7c4313d0062845a071e52962ae9e08733b1a8dbf07e77617dc7d06d94f320
fr|64|04e9b2120a32f8c4218a49310720b46f3707443ed73c12303ed1bed2c09c7cec6a64f6dbb145cd1e3a39bc8a7831797d66cef7d936c562fa24444dff6264dbfa
fy-NL|64|f9271bdaa5a3088279835237cf770b555d08ee00a5c9801b2cb2ceb4d26a333dad123539eb622d4edf0a8cc3262d316815c3c6c17fab2a329283a5fbec0aa39c
ga-IE|64|9de5c4c3ce8fe87da80a2b02b3d5dc1af064bc15dfe40b2a11d8625988887cf29907a8c0b19119edba7668ae8360fdfdbb86b3fd8bc3531d0d6bfa6d528917d5
gd|64|f8ca0f4d40cfe843fd9f5e42a8f50ebfc324ce3a95838379b836549a5c83d79fc337749c02da903c07f9791c534520c37f38ba0808ef3de34677f7c324d1a6b6
gl|64|b3ed161902c8f8e7712698a3f58cce81c4ac7f7a4a8210fe65b11b982c8312f3d8977de80ae212b8090e9ea36f5b8f3e73128d5297ace98f4dfea2c2c1171660
he|64|48ba9db2b9594f9affb4eeb00534801844662bb151d8431e32fbce03231a73aeaa242721fbfb69da4151a190e9dccd01985318d3259c86ccdd0e5ad41449f5bb
hr|64|e8a14cda302b2d01a5d4987d8d92b9ace0071aacaae3cfe6bd4fa47d0fffce252fab96e63fe943c831854d6ebd665ff0a951cb57708a9d197b1ef461a6bb9af7
hsb|64|47cfd31c696081812bd6de4a3d1a05a3f5d39d1f185dbff674f3ac7890a77773ea8a53d0ecda6744b0a86718c5106aeabe7830e7640922c5906691416d645c3b
hu|64|a18a8d33d3697eac3a12c06f0f9a637546456e00bc24acdc61ac1bacde55f12fc3cee2693a6ecaa3a89dbc92b63eaf6c90deb31c78192e825ec190143abf071f
hy-AM|64|6325b1f38db76e17ff518b18861c7b87b2de01a22c9d7e8bff5a478bfba53c3d6f7a97f84e15809c49c5e026c57fd28205a7d2ae479ae41ed89f6ea1fb5a777c
id|64|cfeb216bab614ada26a7b55d2b364acda7a883d82b9f3771d99c696b6166accfebc99ef3c8cd9334f7f76e06495576e0c7ab3b392885fddaa5da21f4ed4b5f18
is|64|999d97435f1e73ba86af0ea3880b639a75eb8d870277cd162ba2e5e5384b8f05ff1501469115efe54a9c104180869c17d6b20f3de171bc90ff6c16ddef58a9a9
it|64|064d29dba31709c7e02aa2c3b959803fde4b25a001e72be4b61cf18c8577b999e8a051466feba817df19655b5bd5946263287ed75bec8719947545fc03343558
ja|64|20659a128b8c7fc46019f4862912f3eccc9b29eaaaf505d7e9fd894bd68c15b6048549c4a2603924432f5adc73f2b8e8c270eda367bd15e0ddcbf6612a5a886b
ka|64|4bd4da2dbaeca945f3468ceb2920a1eedb26a3fb922dcb5d51eb72e3d095763e84ee099d01b3912e41a17b0f7be180a2c05e222c4e57888360efd5329cbdc3f5
kab|64|e657f288f84539ded2bf0c61c2b66c73ab4844d7047c0d7b8b87cd9fee442a64c5a0dba01d1c3838ab4e3fa1cbc495982767957f3b967b3ddaff7217e2a6e6e8
kk|64|1c9acab320bd539743a43740b0afbf34d810777586cac7de04067cb3f7bf8eb54d8154cf27abc203499a4d870d0725ac683e254938179bcd7f6dacf7aabf4c4f
ko|64|111bb92aeb5b155821c09ffddc5e057d31ab3f183062dade0a90b916d8bde030bd71501438a638dabfc75b3fd1bd764fca2f49accb7fa16836acccde49a4ca99
lt|64|d5041dc4c4b9b7221018e90ff88750f71df7725410d0b345c331f22dc45919565106d613716beba011de2a766df9deecc6169f1c31c8a0d7b4167ff00ef8cfad
ms|64|6ca0163b90fab77e32abfc379ffd7fd0d3b57d854dfaf17e31ee88ce212cd15932379e9b902b090dda1da2b00d2d9d57fcc933a4e62a4abdd07c2f052d983a09
nb-NO|64|8dce13c09d24ffb441352a8f62a195cd2a47f780e8f6be3ba2230916240fa32bb9c6c918bb7890295ed03d849b37403103b401cd405d13671439ffda0b167ed2
nl|64|d88639254f3331931a0e90da4aff3a21706a678cfc509fbe2e0e41aac854e58a2a20727b6c6c3effd855bf8ace2843dd3008356ede028aa393b8e47a79596c03
nn-NO|64|394d6cec306c814789d4c67d2c5fdecf7e05e212c51b59f5becaef2c1dddeadd8d1a5a9b6ca7d5feae970913b214396436a37a39739d86e4ba4343c4db1357af
pa-IN|64|5ca48e1d685bae6f077ace61529afd84338b4b23bd68ae65b601fae2ce8ee1e094e09160990d053eaf8ebd1f8b0532bb731df60fe3520beabdb14fe597d2186c
pl|64|751d4e1e1808190e4c26799d01c62a25a4e86e36e8deda8fd4700eb87fd5b975f092275fac19a75c6faabab23dbb0a021078414705d006b6237a8002eec8d306
pt-BR|64|42f2e3b686ba65b2289b8330835dd0de44e7cfbe13a77a485647f79b582d91c8b77398c600a13d61edafa7c42f60aadccc9b6c73f0cb454fbb6238090dbd822d
pt-PT|64|fd2ea6c8d9afeb04178ed3312d4e813383afe305246048a7b6c8691081282806e6ecd841584ca93c0b7b4fc33f66a8db59120cda519f1ee7ca3e900de14fa6ce
rm|64|a80420965083890b38d801c4deb71afabc17b61426222b4cdc1b644b2ff235f1f54208bfd8ded136bdaa8e81135310e7311447179e97b1da2d1a582c95479ca1
ro|64|16489385c58a1f771fd04da58666e8046eef8bffaf7924dbc4d1ced35bcf2b703b768807eefd84c79ee3a98258d9abcd75021c77e90106530690538a3a83077a
ru|64|42e41b211991a65d930d9e88a747b63649c5c2397c0e45a6b375bc1b20c45689ce27bff67171f05c8abf907fddbd3b80fae91656933155a56384ae9709fb8567
si|64|07362cf10366085a71c410ab25f6592740dd776cc32237293aad545cd4948923a204fa3942934d61e9b1127f499740f992932caaf73f38911d1d00a195cde6e0
sk|64|bcc44f96f5b3315ce87be44e6c269eaa2c10681023b88be12012e44ac8e5fabdc5ef2fe63597da49f5f3424aebce54b10c02103085af12fb9ee06163c1f86828
sl|64|d01d1b16917177d390af25ff57b89dad34cfef8d3a9fb5f475af7fc6a140b7f1a3c83e1c0ee9052aa69f52701e9e69a2af9ab27437627ca0d615166f637cc879
sq|64|eba42f385349d6ea24b05b9c362f61b1a35e6e45c93c9a0699c7d70548feeef2d55b7ed328d32e976e833cfffa83947c89481c03f3bb8e20bdf13ee4d7d6eb0e
sr|64|26e360dbaefcc75038e5fc8f283486768153ded0c1aa9cad082d9aa1c75fd85fd947b269c82e511adbab85b66ae3a0870cdb3f603abe364aa8617b6a22e9cca1
sv-SE|64|0af963adf7c7bf60b5c505a045a8e6680328517ae8a6ccf9fc7b76d1ad6c78d7bd4b86d935f24ef6f8e16a76939510968504fc26ba58ed2853ab8416de67fbcc
th|64|ed5bc8027b220ab3d5e8ffe7dc137fcdaa0aab942fbb0176343ab789483762523d862bd35a8fa20df39925445909045e5835ea64fbe45a09ed7fcc771728e5cf
tr|64|7c967b781e7ff90ee28195a506b04645fe424d62147cb188bea4499421f2f798796a1083d9ba88e104cae8071342f57f9bf9eb07f16d3f33ce1e10eaa3164c5b
uk|64|dfbc24cd7dadbc6969db80b1802c93d3fe3e9dec91c735d2f47fd51d2f95c4a69b651e59fdcabaf1c763492a25142d28f7a1702ca59e81fb8faf337e1703b6e5
uz|64|d7ab6b190eb29acff559bf0cec492e104ad47014769af469f5f7e4893e9a2ab03d774f8caaea97db3ced53f74ec9efc1a7bcb608b0f094b2a15e7cb8cbe3860f
vi|64|8113954a78e085e3491c996704e5078dafc1684452377433cea9a262b2d4ef091374e81525fb1832f49fdea3cda4dbe5a5e4cd54b0aebd1bdb2adb181f40a662
zh-CN|64|8c9eb500198f19a27cc4dd1d0be12355b4f10367e9c849ded979ba4f2fd7cefcd41627bcd6c624881be13b56d637be4930d337e97de75dd90f99bc63dc5d2acd
zh-TW|64|14603f45e946f8f213b262aa3568591d035d2ec4f92ca122d505ff219e1852e617c649bd66b4a75f2bc9b53e6888f0965de1e8e9558e5a74ab0caede10a96fde

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 11887 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 19520 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 26997 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23753 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 15989 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 21416 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 11472 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 14109 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 21171 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 20991 Monday, April 19, 2021 Approved
Mozilla Thunderbird 78.9.1 18523 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 18874 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 18714 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 10125 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14037 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 14085 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 21219 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18626 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18170 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 34703 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18396 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11127 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 9104 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4667 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10666 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 11042 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 16329 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 12712 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 2315 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 2220 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 52858 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 437 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7795 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5838 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6097 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2780 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5541 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5680 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5540 Friday, August 14, 2015 Approved
Mozilla Thunderbird 38.1.0 3976 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3299 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1882 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3655 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 2437 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1465 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 1548 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 629 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 599 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 461 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