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,089

Downloads of v 91.1.1:

21,684

Last Update:

17 Sep 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.1.1 | Updated: 17 Sep 2021

Downloads:

3,518,089

Downloads of v 91.1.1:

21,684

Software Author(s):

  • Mozilla

Mozilla Thunderbird 91.1.1

This is not the latest version of Mozilla Thunderbird available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

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

>

Deployment Method:

NOTE

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

1. Enter Your Internal Repository Url

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


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

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

3. Copy Your Script

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

See options you can pass to upgrade.

See best practices for scripting.

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

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


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

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

Exit $exitCode

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

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


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

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


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

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


package { 'thunderbird':
  ensure   => '91.1.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 17 Sep 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.1.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-91.1.1-SSL&os=win&lang=${locale}"

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

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

Install-ChocolateyPackage @packageArgs
if ($tbProcess) {
  Write-Host "Restarting thunderbird process"
  Start-Process $tbProcess
}
tools\chocolateyUninstall.ps1
$ErrorActionPreference = 'Stop';

$packageName = 'thunderbird'

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName 'Mozilla Thunderbird*'

if ($key.Count -eq 1) {
  $key | ForEach-Object {
    $packageArgs = @{
      packageName = $packageName
      fileType    = 'exe'
      silentArgs  = '-ms'
      validExitCodes= @(0)
      file          = "$($_.UninstallString.Trim('"'))"
    }

    Uninstall-ChocolateyPackage @packageArgs

    Write-Warning "Auto Uninstaller may detect Mozilla Maintenance Service."
    Write-Warning "This should not be uninstalled if any other Mozilla product is installed."
  }
} elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
  Write-Warning "$($key.Count) matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | ForEach-Object {Write-Warning "- $($_.DisplayName)"}
}
tools\helpers.ps1
function GetUninstallPath() {
  param(
    [Parameter(Mandatory = $true)]
    [string]$product
  )
  $regUninstallDir = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\'
  $regUninstallDirWow64 = 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\'

  $uninstallPaths = $(Get-ChildItem $regUninstallDir).Name

  if (Test-Path $regUninstallDirWow64) {
    $uninstallPaths += $(Get-ChildItem $regUninstallDirWow64).Name
  }

  $uninstallPath = $uninstallPaths -match "$product [\d\.]+ \([^\s]+ [a-zA-Z\-]+\)" | Select-Object -first 1
  return $uninstallPath
}

function GetLocale {
  param(
    [Parameter(Mandatory = $true)]
    [string]$localeFile,
    [Parameter(Mandatory = $true)]
    [string]$product
  )
  #$availableLocales = Get-WebContent $localeUrl 2>$null
  $availableLocales = Get-Content $localeFile | ForEach-Object { $_ -split '\|' | Select-Object -first 1 } | Select-Object -Unique

  $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|d276ce619fc62ed45f3964a52ccd14fbc9a1a5bfe06215fa0d9a4cee96277ec5faee94491952b3bd3481f20acf1395a18d8f415f12ee0d310bf7eaef07ccac74
ar|32|6321be82343da6eb02764a3118de4f5ab269d251b9c47eebb203cb8f54705308bb4adf067ab806c4e1ae2918e8892a11d983274a3c4bb8f4ae4c423bd764a8b2
ast|32|2dff9382bb926e714e0486e2b2d3fbc1a25389e0ce85dbdcebf629247a0c3e9e5bf5d40617d57c3b019c7905b8eab44506a4c0487dc04ed585c1abeb68840200
be|32|0eae4a0b487cdd50ddbe3f8ea320cef63b63459aec75a831da28ce83686a7935ab1e3b05db3d3dc379dd1770c2692fd30f496c670eeb90e879e6ef927a96b118
bg|32|60ddb9d1bcf188665698f2b357ef1080bac6c5c89988086e7c17b51542969fd4e70ee16159f2eedf15f4d06793d59e566d77a2fb9c50bce852b6948ec0fc07bf
br|32|bfedbb79731bd3c1d044acbc03eace84de43ddac7a4f628e631ec77a280b36d026f2258ba50ba2082d4f33088c991baaf0336eb459b9593aeb63c5e5d7e795b5
ca|32|959b61fadcb7ad15ec41ba7190801f9a9ef93c73fca89d3d0be2bf85264a061903c5386df275484a07c436f7782271889bcf40fb4a1d42c51035a15318bab13b
cak|32|cc3b7e3073a96e674683afd23033b2b3a763a507b10e70d3ec184fda13bb59e7b7bfc886129dfcce493c552c75e1c16b0b81378b5c795732507c6437cc0df91b
cs|32|4709210896cd1a1ef25958a305d69e2b1cbd446885f2f6694c8cd13c931b969b3c5db236d02f06fdc537043f0753e834e0812638dd53fa799fda4eaded505920
cy|32|ee59da26823b66cc63976a1e48cfe20926e473aab890585de4928e2100a93858ee13a33123c9dc663c5e83855a58023bfa0e7b3376fd30ddcd5dbaccaddeed34
da|32|0c7c9a12ef2b2d9d0911b7a975d7def9b189ab4d900db02fd63fa3224f0aa0fa454f4df03a4e67cfa14be3b86583cdd96683f024df2c40d297ea8aae72db0072
de|32|5010fe709c940d90f8faa5c7b1f642a0d8d817152404c1016d0538aae5a61bcfc526068ebe5eb11b6abfcbdedf712b97efc48fb35bace739cd51294c94f5e97b
dsb|32|2d64cac43c0ab02f74dbaef25d31bdfcc0ef2d8f39149c8fa3cdd3c133a1467bf3b2460599d652c1eada3f55ca4a5b201ca2f015199c094f88aeb66cd76b1749
el|32|54afd78e60bbcab86fc534fa3e8724db7ea45114985f2d325df0f13f2c6928db4c1cc1fa471876363b97e83ed5d8f2e58367543a21e74ff7db661a8989127b57
en-CA|32|5b7a261dd132f9a47e3d8f085fac22243262dfaef2cad934889556de53e127c54bf87bce75561e3c17fc4db5cca6208b327b19de289958b77615f913c2a02137
en-GB|32|1d10f28ca61d73eac47987e30c61a874dc770a372ff86daba90189b44dee25d997bda7fb95ef12f12dbebc439c6abab2ae3c217cdc37f891a2c6281d799ea09b
en-US|32|a62d91381010ed3890c3df24e6e21bfbcb36272e81b2c6d7a644daa88b14c8bd7d75ba6871c3bdc09a0b903afa5d831ec58527d0f26f3c24744fa377bbbb4cb5
es-AR|32|b7131f3a0644a31ac482fe33c1485bf99a03326c7feed98696f4aa3c389257d06355b818f5c81b3a0a1dbc6478b795b29d58b329eda0035d847537622637c210
es-ES|32|6b6315c451363607e2129312cfec582f996eefa673166e06109bb447c640e14a271e48fe60f78620ab92796e90bc940be43735f6774869080c025924a05b7aac
et|32|057300a9e87e5552404e05fb2fd83fa65931eaea8518f547f80907069bd9f07cd0c8a36d0ac0ce6f5bf2c1aae329139ec6019b3230e9285318df5aef844f54f7
eu|32|3a176fa03c225d7827794ac8c8166a833ccc121f76b38073c9216ce73cabc87ac30f078af52d5eadb6ecc9f3c9dc1bfa1e499cda09aa114a1aca9f5b5ecc1ada
fi|32|382903c695c0c4d1c206f2f6a18c18fae00add285efc9645fac35b2192d72b026f860d58c67fff0f1849e9ab795ab7a87ef1758c3149d645e64eaeb2004052e8
fr|32|4127d2f24e755a73bd3a00e976fd0c31b10c7478724ce486d605223ab9109c7afbce2762458f736f00f672599b8797b2dc08dfd07dce2df12c75aa4e548e438a
fy-NL|32|5d5701eb22c0824f35b17286de170c1e07a2f4ad042fe8be6c4b0ff7e83b5fc57a993adebb969ecbbb8ee2a03e39480981640d2be3cb6c6b016cc0f18abdcea3
ga-IE|32|d494931a9cc1d25c310777007911347fb6ab430350d4c7db74853e5a10026747394b85e7794f8b42da124f182722049f9a610c9ba72c29e8e598c9df4a5296af
gd|32|5a01af921ba7c46576a7ea9d4708c92e5fbb62d91f82a13860ead4b2be44848589f6ecf537c84c687762b5ac8d24757fcc36479334687eb19e7d4360361f6d5b
gl|32|94942057030ffdd2d398818fd628bea9a2a506989640a97dbedeb4b8273453db5d9c24c2176328e256bcd380d1872ae40fd84187b8dc164d4c94ca9623f4d89f
he|32|219d836a77434aacb7467b64237e06819f1384265557042a2e06d35892705071fc9533bddd70aedf7683229a83a6a044bbd81f173364dc20aaf163b4e104915f
hr|32|23a6c2844b0978d32941054848f35a8ca84b59778e0b2bbd231421c0fbf99f8b474c4fefe1b9fe4c06ad0f07f0d232844bd95c6cc971954461bee5b212d9a935
hsb|32|7c09782c850e500d77daeac36cf38814bab4fb4974dd416660a70994dfefe56d0856250cf42cab507a36b96f34b857a7f62d2bf9111f2d0cc5df6ac19e3802e1
hu|32|a3382462c19f884e3694845a81b13882a004123bbadd642c6851c9ae7e54d72cd745a026975ca61e5ca0e5d7c4cfea726e1407b3bf57611594af477a70bad4b2
hy-AM|32|1a311b40bc2758fc7c1697b894d3356a2ca6ffad6a1badb24e2b603f53d0ae889ea9b52ba7995b39b2f58090e00cc1ce9ad4bf360ab639012e1ab9d6b77e4e43
id|32|ca0eeff8cd44e765dd32e8c4a2458422104701ede2ca28a2e29a8e0d57f92889a55e39a90814d8271adec3b291cc7720a31f3a7b8d4a47cba0ee16d375c92056
is|32|a60be8d2a5f4ef18049f00a24d221edde0db518a2a30eb39a879bbda6e9e65503162e5158ff1888586a3e1308514f534bf701c173e309c74802470cd33877e45
it|32|7a6d34498ac6fd2639aac750f8d7b01621dd949e7947dcbdfe746b7d2767e76d555bc5d959d5ee5ff62174931aae43cbcbe8af0963f26b43797ed818ed6f583e
ja|32|7abf11328c96ae3a1f31ad0222c4878cfac50d29513ae947f29c3dbfe8ec0589c9c171b25656a41db986510df4e2e79152b8261eecc64306b7ccc97de13e1cb0
ka|32|80e45aed872ae6248b0982431b29ccd3ec0e757a1321eb4bfa620455fe1c38564ba5cb057f5d0c059e756e1c278e01f1e0b7b68e6409adb2bafc2d6d2de22ecd
kab|32|7e09057c715babaf386d4696df29e3ec79c86fd970915b5ece1b3af63af0b1531d465a988369ce3d72f8dfa812d84f0269fe731360352d8bc4c1bd975bc6fb69
kk|32|9ff454bbcad05ae71761b4df5883635e8ae249e53e89be52aaa01bf2bc484e4a0c22ba19a1fab4333fe04bbb64e704dd1f4e4b9418f3ba774bac1a2244df4906
ko|32|2249787d9c2e5ce38d3932f2925f341c6bcd10e3fa7375514cfcc73fd1cc459ee45c705d173e121bd5092d6a6f35ac693465ece847390f09e5eedb3e315ec5b5
lt|32|eac790285e49f3a5164ea40788bb88af8183ca94db0d6aec438237f6739d6cd2dc478d718619e49cb7579747a0ea6a0400b222fb185515e150f7b5b99c1a573b
lv|32|ba1b9cb8d0d27c626d2cd42a7d70202af846fe039c084adca6a60b5eb6243cb586ce2dacb8f8a9642fcc42f73f275ff57232815826e30e6e6b5eaf4f69444687
ms|32|5cdc12faa10fe17d2d8dbb741adaa45e3b18c1bbfb8e7c3078bd111b407518c8d7c74a14ab339cfea0e49d252daeed9c7a08c0af170c8709bbf5290fef609f27
nb-NO|32|a54fba498e60cb6be5e16dcbafe5a730430d154df09cb01986928a4e974f9e15679c17321c2aa196649445cfc150073b28f969222bfdda83419524523dec7c6a
nl|32|ab9a2c7c7d7ecdc878e53d5ece72b1e8647a1054ab96c1248a23635b67872ba202d34abcb952f313550ca72961df749ea3cbc40810b765bdff9c7500430d37a8
nn-NO|32|d7b4f9c7e8a9a629332fa00e2f150015e9981b7381f09f421c4c6a9790c6897f8549fe765fd59eead677977ec07877bc3d99208f7d844c3360657f7f8ee280eb
pa-IN|32|d788424d923c9ff3045b840d0e4bc2ab82bd2e0beb00a46811ff95a7f82c8342ff6a34ec598bc41ca98745a37480f8cf204745721c3d349ca4c450a609edb821
pl|32|1719e22348ef0922a96107b5869c4ca41dbf99a3f23f73e50952e3c44808493656d9dbdc181dfd126ca6ae85cd969a8306e66cbb367da51f6f9ac1b626449d1b
pt-BR|32|ec9780c9be3bf7a57adc1d14ea7d355d4c184f93d61fe2a1bc0e8e01ca67d513c7e0b051df660a3789313873110cae8ab08a2b2b3d4ad35c9a191d381f31f75a
pt-PT|32|898d2cb5611036e5be7ff767c6eb556dfff21f1f63c2918d684de2ccec5ea40d6dab62128f4fefb9486c7cc08e754bcefd30596c453761940470f1e9f98dec64
rm|32|041133f1e41ba90eaa5e85d565bca3ec0affe4570d95baf7ec4a22f8ac6e0084d2ce032ebf3e20f5b52de97fc2930c4b70131cc5e7c59fbf78be1ca3996e4f61
ro|32|f8eaadf7e4f7dc67c6f03840dada8c7c09ac3a35c5c17bf000b22810a5f437d84b469428a626c73cf43736d8b59de0db905a401b8bf7249caf84b4fa3d2713c7
ru|32|8d586a97a0153c073d3eb3a510625a3c5edc36e4d7f58cff5ad5125c0750215e4af50281c361a355e02d9f17af0aad65dc382177fb2b21f165ba38ea354c8d0e
sk|32|49a5bd3c2f49b869c9373244b72e84e4032aa6ed52aa8e01891df1bc51aab0caffd48302dfde20f7f72f1e9aeb8a85f20fcca2e704f2f071bd60559d202edd79
sl|32|3e1d4cdc6fbbab4996c0092af5c297db54dedbd190ae72377de4bf0b7241d1f3f9408f615ba3b8f50b7eaa044652f31c1f1c4c2067521a57cb45737ebb614e83
sq|32|e9f0539b77033dac9964f4da1b6e0de0b77d5aba25dafd42253dc5d6ba983b69d7f8fa05dedc9f574eebf4c5e400bf5b7ccc433c8395c7fe4921c911f9f4d3fd
sr|32|ad7ac673c4efaede66183f890b09df291a7b91973886cef94e13efb7a2edd16bd2545f4ef056a915e3c7f24738029c1dabf2920e5e8e0e653baf12395266e0fb
sv-SE|32|95f648165f18bb07d9098415c50624d22667e1c3f6373518bea3a9a43dda7e234ad1a08d68ae70ebaa4aa9bdced1c7445e367c5bdeef157683306f1f063ce12b
th|32|ef2324c23939dbca924dc212cffbab5972cea04e67e8441adb158fa6a369e0d0712d1e40965e231be3e66c84e350bcb17848feee6257b2cfb9637df9d0821c54
tr|32|70e3b7308ebc99d0c5fd2caaf9e1a2901503dae5107f1b941c9f40d6284152cde6c9560305eafdc8cac4355eb375053080747ecb8e7a06d2df623ce86fd029bd
uk|32|c1fbad7b91b8cd51c551ad7ee0ae2bf76325dbf001b2fae179597082b3aadb925f0f94a05d510dc10d0b5ee1d7866bad671a92688cfdc7c8a057977e7cfeea38
uz|32|64baa4e1fd89437084bcbd5aab76313ab690256905fa3bc4a270fbfee683c11fe4b0bdeec1e54aed86d7b785721700c9380009a425fabd48dd79d99655a514f7
vi|32|0aa8d9b9fd3eef189ea1cacf9931e7b436188239bb2a8b5e81b98af44aeb6dc576490b9a2232d543e6edf93270794232af2fa0d9cab60e4a9c369d7837b63cd5
zh-CN|32|a7fd462c23a41d13771994fb6284a48a75ef93893afb35c0d35e046e24ff19a0286dbde86a11de2131a497277cb35fd18f719573028ee175aedc9959b138f3c2
zh-TW|32|99186a44380e2aa37b41acca2c836344296d1b0d4951b287aeaf5219815f2453e91734ad0381876798aee1c18806da62a7079be41b8e8654c79e9f728b544778
af|64|c8facd9fe3a6ce8bb16215295c762b899778ab41e862d2d6a8d0a0a6485e11c1db4b3eda99c46fb22ea1dd76ce8f40c7290600adb76132cf341b5ac2841dc238
ar|64|4c6015004de22e59e0daee5c2579904af6a5af2e555b9c84c2725144865604ad8708ae9fa1523750f25929223cd1619538507c6df4aff0acb82f01e047e141cf
ast|64|59536e5ae601f1cbc88fd95b5d281abc7eb1ade7d22a6a31cad4c34db82f505a9fb9a7b4999ac173cab605b26dd94891f4e73e03757eb2c31f447253abebbddd
be|64|ac20ae491af4a9b06ea7c64cbd29204e92f7eedcc58828e8a21aeb37268578ffb909d2ea6aa7c690399ab3e355847a3faeafcdbee198ca084c5517e1213d3d5f
bg|64|a50e9408a3ab80d644d61fba948e10b947a67e088785c8be8834a619f223e4afb5975c732b945ba9ba14912c4bd3fe4c157afb89e727cf347dc5918664f7dfa6
br|64|7899a10978027c2bc6dd42a9ea6a4769f95409e13e883d37a79780c13939c5e115b0fa516a4aab754fc6137e225fd9eddd92a961a4106531e0c5e9bff2bb9ed1
ca|64|8548a883ec3fe0b1cb9d43f793d6bcf2f14176b57226fb084d4e9cbe6efacd0ac4777f61536a9abd35245437a8174af28944dc6d4e03a9411eb231e2c7569f16
cak|64|468c59b627ed3b6ecaa777c9a277da2d9a68375d024c83dcec8495ad77ecfc6e9573d801c6913ef4dc33c0e61d3b6f333a06d3078eab84475dcc999212143379
cs|64|2672766ac5c4d8ba42db249dcb853368358ea0f5a5eb143b297fd4ed607bb444d471e357acf7d0f665efe74f0937cfaf1eb87d99ccbb0f73b28e2e300df588c5
cy|64|7ff20689dd1c83b7c2f2d3e25440ec2e15b38ad2bb679fe6ccb123cb226775bf95e899c4cd6b153b8b32b7e9762df7de09fbe14d25fa9cfb4ff8b113ff1c2ddb
da|64|3b011c3b2d164b988a883d3a1b3598c374c63815924732418bda27ae7b449e4bd3f7a60ff91e1b72f42799663941edb5c23ee8aee8da788801ca5b4f4b421b43
de|64|651c27094b4252810309892fb69a81223585088b95f941d30f89f50e1f3ac97013064880d8c56506466d4670d23419b612d20beadc19161ac7a38a5574fa3618
dsb|64|7b23a86a207fcf6f96bf3eaed74dcc16b3d9c7866a3de7055ddc9f4cee4591afed6a9d051e98d93c0751ec80e0f910737badeb1301da78975709923cc381845c
el|64|df1e602f97db02a4971c506cd1dae7d6d110388d9b936955edf152769e541c0821c67cbaf4e63f3cc08418bd87f3e3282b0a1bc24995eb66f3be6de6bf0ed191
en-CA|64|6734a3c711774020461c588df98462389f6d7586ea1f20042ebd9dc108bc6b62cd6bbc90c6020921bca0529037f67ae57a3b083629b3748ce51e3adfb8c5dea9
en-GB|64|935d18e115647a0c81e39114fc75aa230b970f2ae53b53faa57243a8c441b273d71b89657e3078dceab95525eba434f336327401591d53b64a2fc3314fe03946
en-US|64|2fed965bf346424d1ee70ad748013d3c60b28b42ece0e568627c46a409410bedec871fe6ed68f6f0907d4f2b8ff5a3b267c64faeeac192b9df0e4a61caa26793
es-AR|64|5ca392587f3c50492cc07c8a36137396bff4fa644d28e95448777fc42782568e033cacf908ee91ccc529ce01c39f23c960b9c123f65ab5833b23938d356f32d8
es-ES|64|b3074dd50d9db67d58f05b825219e4f7b9e87ac2fb8bcd335787f4bf550b5ec34c8ca960c28ed61d9638947e7cd7defe3106e5d45c5f761513edb442bfe84745
et|64|774dd9a70c148cba7f53e4c6a3b15cc166a68a0ed1b50d262ea7da680b94458e7a36ed2395bbc1d93c7b0150c78ed68ca5d76720f9dd2f6b6142cc7f5d656e8e
eu|64|9140a1cd54b991739bc151be6a4dbb871df5c4e1baf126f71cb0c1aba0820e015cc4b58047d11691b0cb17dc8041ca71b335280b50cd845e082b25d6c5ffafc8
fi|64|a36bb916b26d9e80edfb298d71348ac6be124bfaf23bbcf91c79456082d69ed56557ded7a4aad7d6aa2f62db627015d612638f5379828558e66dd96e845363cc
fr|64|c3ebba6a8bb8b7def404944e03860f3b5b2717bce3d867ddc7fce1d4468bc0ca1738c41d4d702adbb11b6a4593cf4ae3a7b48effa5ed688724daa2f3514e1640
fy-NL|64|423a16479951682802b42b6499c1ccad61db0468a5583de9f7ca895cf517c3b692b67ecc78ae2ac35a0b8a212d772750b193f63cc5a95e1200ad5fc7c688cbdc
ga-IE|64|ccf963141e6b27e16408af2a9ce603eaa134d35e89f609a487bae919e2f4bbe8219c7135ba9e316b55ffe7d2e21c8b147da360c5ddc7073dbe56373f6b342dee
gd|64|34ee36cc40056bf1550a6819dcf1fb1bfe46c769a3132994c9305a65e0ce34480744f144639d76214b93651fa00e408c8f8fe39da14787bf3f6e2641b6808c5e
gl|64|e72a33941decd4a7db2d09ce9ef1152563e9e870e1edf053bee35ba68938a86b7681f1643744d95d365f375caaa692acb7842b96e9971978101b28de5df70515
he|64|57cee72ea6d71afeec4f19d51c31bdba4acc424f58366ce77ae57823c7a1f034decc48a89903669b220333d6d77038d2fb8819e239a58f86d8c5d4470299e8b7
hr|64|27be35ff9cbbb9e9dd13bd26b7235c141d035575650e55b4326f4a6e60a7811516b201e24e2e733fceb840c460142d1eeaa70c0c16479943539cdd4f4f25c6eb
hsb|64|b6889ebaf8cc8c1d84b6e69b5de643911bc38fd1e688af14858912380e6d35ff2ef8c5e94abf37a5b281887f1aaf55b028af3d3864cb159b6f9e8751d2d83358
hu|64|c633a4fef14b6e907b028032aa3f96656438beb55021b18f545bf9829d5b264ece503ce0d7ef335c51634f8286e7f0db9c5520ad08b7336e924fe3855a3d89d0
hy-AM|64|55bfba8013ecb9f1c091838ff49f4790a9691fb8a37db0c10e5a5080680de0768d87b3b2372fd1a80063ecaa08373bf6d475a3e5bdd0eadb349bce071f439efd
id|64|cad1e85a063e98dcd22ae15a7b278146d52ab0bebbabc88f7ab17f412a35a8f23e1befdc728c992f13f986decb41ac91c060533d7312ff9707df030ebcc0ac3f
is|64|5b302ab738406159d6661171e510ee08bab400672631a66d6826c0f22959fc0e73fa418a895f1e3db1f9f2415f6838a0cf2783ee469fff1ee3fddd91847b9b04
it|64|7cfb395f2a6646ef73ab1dc9886d2990f5803dece217e6bf1d1467b3bf2414a75b6cc5c481dffa8bc175b737e1e6b0a24ac43fe7ee90cde4022554fcb8b0cac1
ja|64|adf01ae21cddb9297795bbac96b27333a7c5a3a9b4b859f0ba062b9b4aecf68d9fd70864af1266f0daee93c09d529e71c85ee0f202e24bf5267b49f979ffd97c
ka|64|a74d89b30aa7b3059dd59f56b6f08161907587b56bfb8dd56ed51ee664f1da75bb7f85f6da826b0673ebc5668e7da0028d11dd03c5a4faf0b50f8f789f3f3315
kab|64|8976bde614207fd7b5362089090d69b3aa7d3007a4369be2cc3a6cc8d76e65e6e1c2237e387aba46670cf54a0aa76e917d5ba4a481a126542a6a14b41e8a8fe1
kk|64|9b8aee23d7f9c72a93cfcc73b98d047237c099e7c302af045cc9cd1c78103554e7940ad77f003d84c5908e427dfcef4822c3a651fec64e5c0a8d9d606f8dd6b0
ko|64|47a45b62bf9a2e2730596cc7a321ca880e2b24348208e5262e13b4ca2f31903c145d958774bbe6d5593df1cab293ccedd983e6f719cfb0a946c57acca6f43e9c
lt|64|113531cd2c774b0aa724211d329e9b1d505ab44775090aaa10e591438ddec2ec32abb276757987c17ee15d9115bf714c43224b3fd1242e4032044d6d208f8227
lv|64|f26365796d8eb6238724c58d36664abda1b5c3ceefe2c0debe6bcd70c6831346ad808f3594049b5164a5ee9ca3f389efff08a141d253297fcf09f88f0e4efc10
ms|64|177b99a9eec523ec6b8bfaf78e09ebfea1c40ac412805e3ac49465377f5d62e781a897c04eb4c6bb6fc2099b7a28913f4d7002475ae3812a1c819e13e6067036
nb-NO|64|a5863218b83ff397c2dea9e8b19a26c9c3ab33937453830f77bb1885d127ac58065175102768a5ad84ac553c51e05e716f9825872941148b2ac294320612d908
nl|64|09f01cf29df3aa8a0aa446adf1beeea9311b541cb2862e76ac9a85cacd52d605a011488a9d6490001c6170a38a0031ea23d3989b5cbe2febfb8cface023999b8
nn-NO|64|af8a9c1ad1701d888566c972748b46990afaf8a4c6dbf80ae8e65f2eca973412e6ef1afff184f5594d5a2f8e1d6af349797884146fd8d95ec38ed9b027fa0716
pa-IN|64|aaf8be2d7915a5f012673055cabd2580bccff807b3f61b8aa1a1aa9532d0001646ecc586d0f4f17ee90c421af9c44cff04027da18ff2c5709a7ce555abddfbc9
pl|64|370099bbd2396bb3dae3fd7e1dc0be753100b28f9922cf7c36d9e164ea71e8dcc46ca9b27d3b53f45910610a32441afe5458afe8a9940d27ff2496652ccb8c30
pt-BR|64|36053b8506948be559afaaead5f7b65fe508896479e0bab741a5d2d9484c856cc26bfb9ab8da6bd5ed63189ddc162cadc8dd88fbe8c3a915bae78a783fcf76f8
pt-PT|64|203a816a56b60ce0b80aa389ebf133dfe4e655725d93bfd58d4810cccaa0d0028aae9d937feabe6864e6338af5255ca1cd2e7557f11973d7fa7fc3a042a484df
rm|64|2d4d8211b17a39e907c4804852700a64fee6baf019483a768a18cf4fb45b6114d60faabf6630a2437ab9389fbac508763ced27123579333238a89a6b2410a9aa
ro|64|49336900af556aba8cf71ebf25818bdae8d2161a9b7530232330d3a71c308b86c7825a5c268e290ae9ac57dd9084aa61e01287ebf662cfb8856d66ac555edb31
ru|64|3ed41c8c13c8c76b6eb2359d4fcf1b2d6035f45453d81e744a734baf75d22bd69af27abd999081a5600c2191075a18d86511b1ebed048707c156e0aa9e8399b9
sk|64|80fa93f33d5e15cef2a39d9ff4e07ecce2b568b84788feb5f06c0126f7f9b5c5ebcfb5c71725b421a77dbc8a584afca333892392ab72913f85e9e5df098672c2
sl|64|1466134ab3ef14104b4bb9c19047eb051b6e1fc7b9063a6f4eb961aa25c2cc678888a7a0085e9d6d2aeb98a59854d73e34626ac7a551c10c16806c73e0f53e5e
sq|64|2cc6ea935927185dab4ae4b9ded9bbdebcab5eaf0b2533d08e577d13ad4fa7fc3f1011848ee37a142e5941675be407669fc204e71d59242cc7db23d0e72a8148
sr|64|a48b0ce26cf0c6381debf7acf325409af390b4985b999ea2e0ddd459479999c6a392e4fcc056e128a4bd59bc306a41ef26fc5d7b98d79b234168010327de1fe7
sv-SE|64|7e2b51c0e79868a4f5bdd237baf6e1b345347bb84a0e2a52f513af2aed0efe569b4bad9a5d713ee74fd7cfb3491e446404558f2f5dc3855cae12fa70afd38617
th|64|f7fbeadfa76949393af184a7cbfc98550186898b914d104b9e2094eb99a3c69d6989f144d9345a2745c8f7826b56120268e8a124b0ab62b81ffdf6088ea0fd92
tr|64|b96d1175a759f471d6543e8b0e7818b7154a3588bf1ab2f2459ad5773aeb21b37b0041753724ecd4f4d9a886d09049f95633d6e56f24b7f7c2b50c052db10ec3
uk|64|664be50c460de821f06125c347801b688ef8576b4b2f7f63d8f8abbd1e3245742d6a581a1c3ba2354bed454fd19fd6ebc6e2e788cf4c4246d0da884734ef911b
uz|64|0082729555c4519bdd2f751a9a6014b0016ee7a4a7b7975cb1035c94ecef1602fd2e4c2a2cd000d6ed5dc81468ce1000ee1850c38363d67ab037c2672aeb24e7
vi|64|e72f735df13f1d68ae3455f586ce6c97510cda27fb60dcbdb5025c8bcb8eff444b52e78d6bb8dd3e21c8743d6ce0a07e7649dadf8d0f0fe4298413e2d3050246
zh-CN|64|421f8aaa73619030fb20bbaca1018e264a6e65575efbc3c519784712d559171ddc0d77ec8d949ad254d21a8252fda13b18a27d32020d3a2db8b7734d88318498
zh-TW|64|3685caa663c77a7344d8810dbbb28aba64ecb0bff05a240c347c590a21a40e9bf9c434afcbe3d9d165e430db969aac4cab3f5ad0d1eb880d3ddb183577477595

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