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,474,161

Downloads of v 78.1.1:

18,422

Last Update:

08 Aug 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.1.1 | Updated: 08 Aug 2020

Downloads:

3,474,161

Downloads of v 78.1.1:

18,422

Software Author(s):

  • Mozilla

Mozilla Thunderbird 78.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="'78.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="'78.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: '78.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  '78.1.1'
end

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


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

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


package { 'thunderbird':
  ensure   => '78.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 08 Aug 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
$ErrorActionPreference = 'Stop'
# 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.
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$packageName = 'thunderbird'
$softwareName = 'Mozilla Thunderbird'

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '78.1.1')

if (Get-32bitOnlyInstalled -product $softwareName) {
  Write-Output $(
    '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.'
  )
}

if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {
  Write-Output $(
    "Thunderbird is already installed. " +
    'No need to download and re-install.'
  )
} else {
  $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.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-78.1.1-SSL&os=win64&lang=${locale}"
  }

  Install-ChocolateyPackage @packageArgs
}
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|6222ace6fc4b1324181807142194d29d625fc0e69267168cea29320f86232b8bc37ee493c0cd1e801c8d58825317e5a17a6ae9d3be15342516338a9240cc36fe
ar|32|f428100645fad012a11600ba52866a4fe630ce604342f7d0c7ca753d05b67287d76738729a783c8c1e1fad4980f0aa7e208843f0604ad518c484c1c2d799f77a
ast|32|e55337871c27742565b678b0dd170edad39e61f0fde79deb4e4179c0121e18bf4d15bd2fa91c81bc1fde0531153702ef04ef740dd3da564fe515e905caef2014
be|32|78d330415f4dc3ffec985dd915e921839ca9d9d88f161298b5a97b0fe9f7d104aa470915edabb5e0ec7fcc997b603b96f49da8e3688e328fe4e87e97e32adcfe
bg|32|ffe3cf8157dddf5eda9794b3f090e4ccf74ea76496cb6556bf69b9f601d4e2cbc816b01a5d40074e6344ecd73594476605e0ed4b6f7d35d3f28ab94abbae96e1
br|32|34a023a3e19628b959e0edba62f0db8dbd73a9a530521c9d89dcbd2eea5a9158702f9d7e49b90cf8879f6dc71ce0291cfa923c18eb2e9c189f2f21298c0d80a2
ca|32|480d18b0b5bddb7687a41451233f6900f7fa8e674766a1e4ce79c799a135bd4699eb9f00e02abbbbe769dd18f9d84ef5d8da8b0accde80fcf419b0c2c40b2005
cak|32|74da5428c07f6d2e3fdfce1f30c29270f53003150cab7f3d1d171c137f6cccb8cb41e991e095cab982ac8c3997361e0b7d81eaf9928f4812fc52e3c6a9756cae
cs|32|234f15dc1f6036cc527d2057d1650f25c7ba8d2881c7cfecacf22443cab58983476ae8a92991ae0db166a3d80d8828d7557758438100a22c9535c56ce777c777
cy|32|3712d81a012646eabdbd40098ee3b7caa8d2c6dd900e7ac0c36c4fd1d18ba5149393d8e09abc3451a685eb4cde9195513a91f4d0c2dd001c1aa56ef58943d9bb
da|32|b9f3418cb15395501a4f37aaacd4bc3d4d940085928b03fa3c2636ee43b05149d7ca0d0495fcbd21b316bed8cffdb000ef9b015e147ee7aa182c0e9c0c0505da
de|32|ca7965a39a32ef0ac28f0889815b0b2b9013342dd96c9dc93d5de85021af9b1b7da2c4b6cd39525eb57a712c8b4576c3fee900e0f693468cb97fb0dd78f2d048
dsb|32|9bf2ce420a026709d89581901dd322b243b7d696ebaaaaacb01dafecb30075e89d8742816f7b20b42a510dcc29dedc9688d286391d571d5ee8b4c8594d61b74b
el|32|dfdb1866bb3f96aaf44d1a13f8e56fa1daac22da9780d18c78af16304f00f3141a0572549efcfde2df6a93cb84fcc9b55bea7ea3212212cb429850c3eea707e3
en-CA|32|1ed9363cb859789464fa77a488e31db172fe17d471770efad340205a2a41e852ced3d1da884c5bf3a64d8c438448e449b5bf5f6d7d5030678665f9fb94fb6ec6
en-GB|32|ca0ca533e7ef7b6dbf09cf2194482d75c976264d86a921a49f847f406e2810cb72ce553392da1c9359fba4a4f13ac3b53f496bbad44dc45ca4eac4c2e9418250
en-US|32|3a7ced50b525a90df3425d53d5f3dce9996b025299a2ba9484f708b9b7accac4e4126fc85686894953341c20426c35b81825eeb989785e4b06fe174eb78e5d66
es-AR|32|506829b3d222d5af69383adcc34d128b93fb80f8366736b1d4a3af0e13c7d38e58a586b28ecb41c37e1bc4d874b4b215ad89291df36ce45529d0e4f77a2d4d9f
es-ES|32|b1b7232965f6ef7d01f0f05a269ecd788319d9f5b5365f284335743ea128272d9c037073c9b41ab7e86914d31186272fa4b53b2cc31c4eee031f0cf364aee0be
et|32|693401bbe5dbe92b4de8d758dd2c287e714abd61a0e24c1857c0287f02c007acb83a26000bc83f67f57cee75fb688a1601ab3adf77c2192fb8b9157cb306f8c6
eu|32|f0933af9c075cdc5bced3df27ff0967f87d6decc47967859e7a3b9b76a0bf7829eba2d0165a889b1c32aa32a417c3f6c8d9ead8e706f85840bea97be7d53735b
fa|32|d49f127ede91a3a312d98c86997d7fa4a17628fc4110d5ddfcca602a257c50f39fe5329506fc5f6f1d80a2556f24faf889ded1aa6f5ea179ae8cb2dc125b868e
fi|32|5729d5aabd174cd6a8c5ca605dba1d6662bbf5e26f97dd1871c9aad35508ed24c084aa21395b2adb7a24537d15cd9dad3500b7e20fc1df0a708f5cd80e410a4d
fr|32|310034a9627a7fdf94fdf37e08045a2865a640223e09b47df35c6b6bab294ee0d3e17d20fb019789f62cd2af5dbe53b0ff597e369b54014997e0814b19a211e5
fy-NL|32|73b98de0160488cc362245ff93ca8dae188094a76a0b6ec4d8d4476587aa68120e575c4e1fd3f99c5df51523fb41b3358702673638a0a49a9363afe390b0cbf0
ga-IE|32|4837613558bd99386c10bb8874bfe8866318a360b285b2e102c224bdcac2cc9fcfcb152024b4ead0aec59806c3e599c8b812af4f03e4e8cba7da43507eefaf31
gd|32|f55b39ac0af98077548e08b90057a1cd959f5e495928f7530356e486f8207c59efa91bbf631ddf53c6fd7381d6e3bd5d1e7db39211fcd79c5f6fa3c35483922a
gl|32|72b9b62b75c47c8c23bfd77c0c7d762a3cf2ce497b719f4ebbc422fe0238e11eff65210ca3699e45130bb6abb49efd3b3b27ed74d4160219ea17d803bf9cdc1e
he|32|b0331b1c6387e7513784a91f9d8a62373bc264931a0d01b8f33877015ee3d23ed0af074b5ef9408253c25e26926e1be0f97777c8e03c3fd1e929470d8897ff25
hr|32|992710a1eb329612b8716097ddc17d13951442289552c60220a3aa94d3866c3a52ed26835cd2db61cf9871cc6ca24b9af377e794918128bf3ca36a6c5005ae82
hsb|32|d9c205e00f4ee93d505d2a5edc62ab8f6a63e84f062b0ed82606348d2e742915683b226051b38cfe73fae4a3fdf83b6a68d117fdb645291ef81e1d640a4e8e38
hu|32|6fa242c2886142cb3833d50c80a93d09141987002c24a0e6adba1a1a4a8e5e214ce3264dbf11fa1ec919fedb90b2ab10119f8396ac822fa51c125f8a26b3cc1c
hy-AM|32|b534760eec9cad0a72b55caeb152aa636108a0cb741c748bf4387982cd25d8ec49a440eba7691c23e21d24a2d861d591a2e375a199481f0b8eb259da14e06da2
id|32|f886551e395e2d3ba4bd1718667e164bf9c9ea99a010c624f2602d4ae9769e5ba6e22477798dac96436462d8b98cc1633c20f1a4d4f68981032bed77ba3b94dd
is|32|c34c6c4e541c9025c4577c5f609054f0ce36a73d5360b7493501c704df5898f5581b32b9cd8c582ef920a0e713d2b1a896ac3c3e538bbcfadeb8f2d8c9954ba4
it|32|0fb34c6b2db8224a120e493afd61cf17ac0d1031a6cf0e7f3aeac5c2787e0a71512cabab88c851d9cfa019cd30693a65d893a8718b937c243712916db123518e
ja|32|aa70876eb48c54e795496974c68d6b462193efc08802fe0f34e1d7236acb2e85be9ef5c8c2be088a2b5b1ea0d7ecd3a72d51fb414dfc12d279e866a4fd78c072
ka|32|7a10d77d76f34e57c6a5c43ee544669346dbe96bc90c29f2bbbebf2aa93737c024be816879bc5c0007b4975fc7e8b8b2b27a3939ecaefaea54a2a2c98a2212b7
kab|32|6590e3b3febea3ed07e9c4410c7f3b1b72c7dc6206fb2338186e1bef92af74e6866329275156fc85ecd8ff5e06c3c48afeb9e21a844e68f5b5a3e5dd25783ccb
kk|32|414f1296a1e6890c18bbc3a72b998dc53116bb88e94b7fe8ce6bccebc599d359c1d38fdf8bb09d1bfc94a1acf871c82b61174c85f638837939305ad1c972f3cb
ko|32|7a0cd2a452712cad6d5587d1154d961a9ffc0f31062b11b30ff2140188f5a6d35a8f0323e3b3a3ab245d74a0d512f737d10c3beb14ff62e1e46bb859824963ea
lt|32|565789d69a2ff99034fe9b71f1ae3a947f746cad273771751c70a0e4d4cb04323e62f8cc17cebe6d38355f14270da613e52b8a3a4b78dda1a506106315249047
ms|32|7d39a6575bfec0743a6c9bb3b25aeda8b32ae033113c97f2cff81dc27a4d0d4e2ff29b2a24ee98d57dc373e9bc53d45e209c7a66f4de3d3b26016af35490f555
nb-NO|32|15902e1cd0794ac96101a9e6d66bb9b4f55aa069bd88ab6917501050da2dbfd70bf24b65e2251347daf1904665959d2c89247cd637373c550df08352456017e2
nl|32|796dc48e926fdddc5ae70068ec5ecdc9cd87f892a1d203a86ad2485cca3a177e77e486102c5b44bcf335b3403c7cf394e4452004cd658539252e3cb246296934
nn-NO|32|916d5ac291e5392a1966d1045643cfb566db7ff2908e56872d4bbb9f0247bcf39b4ca4d9ccc37bd74012bedd3154b9f7acb4df56d98782505e920d4a1f82689b
pa-IN|32|31c1169ff78691bd3545d58115de16a9a016312b93c17f6481e10e11866e35d9a28af52453c8b7715f33b1521d6fe38aa5a2cf5b74f4d5bcb8cc785118c149f0
pl|32|97aa4e90493e1f77a7e10032881b6229a09019192270f08efc02bbc1e1dc4490edfbe69267eac9b21a0a9404b491f0bfc32ec09b6d56f74dc5b6b5e14a4a33f7
pt-BR|32|37173e6cd268693a94a5b0739d0d1c4782f53e250095f4c2f5180ad0364ac5a25f93b78d83d54c73b01205e42af670fbc45dafd6d68f9003f9dfe0b1ce31287b
pt-PT|32|e1c58c4a71a2587d883c93749a2aeca763f0436210eafb1a8f92792b10181e7d393bfded536a308fa8fdb8eb7d3b07e85af915240d0f4b34dbb23265bc0ce162
rm|32|257a08ee0c34c2d1b016a2a4b04ed9ace68b53ef54661c33a5c37501da8863d3476a07ee99cfcffb79cc558d13a73b936d98ecfa1bd18921ec8ce100971f236c
ro|32|f5b091b86fab5b11a15b4619fea0fd7542b52510e4abffe18407553b28a2577b516b6085d1d65411d7434f8b34fbcc5c822ea3379504a6d7f579a145dbcaff17
ru|32|d6c65e1ce089fd0ef1ab29806a915579ab9daaca1618686d9f4212c0773120c174dd424cd232022a391bf38273cf1ffa104b3c46f4067579382e5d275a8a83c6
si|32|3c41e2f2fc183ebfb1b54dc4d55cb40a5d98ac6934f2a8a4ff43d7fcdbae37444f072d7acc3f92ac256d2e602016377365674e1a4f558ef4b8ba92d99fe64a2e
sk|32|69b1f68e028374cc7b84e9c7234d75fd6adf92adc8fc74330fa61a00b8778f200afd207a0597800f00466b4c8040e057cd9210b0537b99773ca502be18156368
sl|32|876f4cf21880bba1462bf5315089fb625b46a1ad37a0a7e3435b4e40c0a013d5714a241cc4612d7246d4445061b3deece8410b1a8b92a16bc7f8827cab63793f
sq|32|ef88730a4f4d535e83746f40d4dbc6999248a039469e7ae3d5213064d77edc33d18fd633684c82c1a75c4a86ae7ca8ff4737d18604bb2b55b46984418371250c
sr|32|21ac96e4b5382535ab64fdbacbde4892fd5ec60379e77b69a8057be748e24444e29c62bd2272a44b13c34103d970fd2ada937efca6b1513b3b594302d8b1a398
sv-SE|32|0408279444901ae9f195c0c36acdc1426db6bba1b4a1b7a05a9db6ea5de6fcb00f194d0dfb0dc3f5d38b746edbc89aeb7882ea4c35580a0259c3a500ec64e9ff
th|32|32094c150d35c61a6c53392968d2957c74ddad14af1adcc77b4ee3ba53cf821769225470f16449dc48a55b29c0e1fa2a4c2a3053807a5621e5c6bfe4d80d775f
tr|32|adc10ffde9963f24abfde2ad75e5afc42b673360db9c74198b37205bbdad49f9395be248ddd69db7272567c4c19ba3a2e5418f0ff001dcac1d5f031a9334dfc8
uk|32|32a08f884db244a5d9f6b779ba4d1c08b964f9544966786f43e1ab48a901077885dc86fc2828d3f6efcabcc8550bc469d70b413749f2c615afd47ac433932c7f
uz|32|0f80885d03d03eb03000e758aa83550adf9ff6c8facda64cf8fd91ce35ec20da80cb33f0f68b8dfa5d1d0141fb0cd08ebc127dca2dda5d8b0876fa97ea7f0e5b
vi|32|5d34fa958a6e88b2e9588c746e57640370f602efe2373e0dac11f0fe828a00263c27daf90f76b8e40f636ea56435b40b40eaa5acac9708c8976de82945c925b1
zh-CN|32|4df79c95f8623d15b384a5347bb9c1572e9540e5e1934c283ff7d8286c39299131eeae19184559d753ea04b767e0622fb635bd495892a3593e5cc377cebe22e3
zh-TW|32|c9919795818afe0c02103c9d253f0c83d931e58ebbbff53352f98166c5b27c9b525fef38f06998857ee616206a6df4f081acfe794ac3670ecb658769db03b39c
af|64|2c90eaa8cbea91e71ec47aede4afda0d99b1699caaf9cec4e64261ae5d402ed18dd1ace1a226d627641abe1a0bb5963c8c55a4f4170a5922e718a9698b2ef277
ar|64|347e1273f4751f0817ecac1f6849a47f9501792e1cb21eb74362ac2f3a44075cc4317fe2712b5418e6a3391111b2c3be3cab9e8a1e8a0e5f81ac512e327fe559
ast|64|c7d1f42aca753e609a72220f067a740d500bcbe24cdb1bc6970bc8b09c363c3243206f09802666fd6f9a849aae06b97f54baf35dfbd55caef2cd9a39921d8aa9
be|64|e7847cebb484b689c5d656b168658c88bc385a8c459cbe6c45fe3794ce1f226b66941123983151789861b45b7ae396342116a769387a2877c229ab8b3a8bfe20
bg|64|3b6212772dc480c14b94c512f94c81cb7720db760e20436fd6af5f096c48910d1ef2373d33320fc1a13854f942beaab4aa52e6e90e1f993aef1914d487d99de4
br|64|36f30e683a6a99f35aeaa8b1421271fb141671924d607ece5d29689774e10d2358302b03fabeb44d9f272d4680a6f2551b412e89980d179dd711304aa5f2a0e4
ca|64|ce491d372a3684fce8b2d7310a59727c1ecdb8eb4164e5c387510f25bdfc43ecdbf0634b337ab86a5ae62a1eb7a26da7849f2d54924d93802fc264eb9bfdeb5f
cak|64|1b2ebc4afd5836898fd50a61e371255b1cde780ae03312b53335ef4b691bdbd93220c0f3bcdd9593a01e66fa231496403e0487a14c878ef55f4bb169216ae1ef
cs|64|b3f2b07202164c9072695ee290b218f4b6ae18b98d285596136027e3c59ca649e84652242198de3ed868e91e6d94e03963ec02c1dac77761f285119a01069152
cy|64|b8a6f2be199482d221cd9ac801718d4a926017402d4bcf63b677dfb7df9b4562c74c982384d0a228b6f732b74e12ff38b77d10c099f90ddc46acd4affba51b56
da|64|f2a90a67d8b097534d9cfadd2bc355b94e334e65f9fa8a816c2dd26b87ed648c9dcf155be9d5896b662752db3e850405f12a80d8ecaabc2dcec501ee322b8df1
de|64|229b4458b3e1daddae07dcd02dce730d88f778f640038a2080e5593d8035c27400ff46d8a2dd29bd7c617246a033fc6ecc8e26afd0c0fd55e7408f30c296adae
dsb|64|bd85593eed02630a1c41cbbc07c42cc2a356f23c93feea4b8beebc5508b5e0b8fa3855ccec0ef3ac56bf89322a4d2bd286cf289b30c9af5a30285ad084679c92
el|64|de83ad3b898b43a34b4bf80926d16f3ada99ec3926b4de17df2265b46135b6451e21728431acaed0301f046fc533b72ed5b2261f1c9064977d23928b00202249
en-CA|64|e6287f78f94a2b6f3ab95e3d2ff045f0e410ed5671f3ed971e5aba37ca27ba16c8b822f357fe5e9f707a671f30abdc4cd29eda217c3084727e147642d5b4e863
en-GB|64|252f4e51cb03102b58c09e764cb74b5b343333d04e0c1511cc332e74e97cf631e253a9c5589ccfc6c30e61b0dc4a4fb22373d122f05031eaca00c195cbe41e37
en-US|64|8b9787c69a4278dec4aeb4e4d66b081e17973f393785f037d949ae2e8963695c912a37a88ded1669e09f9658aa7e48db2bb37124d7dd48408285a7935922855a
es-AR|64|add41b8497127004f0d4a28308420a7174bb528e585f0a41957e9cb0148c17dda36f2d3be71987ea4a5676998c3ad96b39ced7a5098517459b0a332b74227013
es-ES|64|969dd60ea49267b30a17ac3310bc2fb6d18e58a56ea608223a37c490e53d3e3f305b24e2b4db84118c20f5858d20900f2c4da5dcdfae57a1a4fc2b7746f0b0c1
et|64|3a73a9f27c9beef9ecc21d9464f2421633ce999430daf2e6403b4489eced90ff72090f803f430f5bc533a19627ac32156177b16fb663b8b9eca1db8af3bcc0e6
eu|64|5afa52c5ddffa18143e2818a2400debfa49e69cfa5a56092ed2b2be154505fd5622871efa42abc1420afcc0574a81806d050c1b3f381891202bd175056a2a55e
fa|64|9aca41beb33038a3d403c7b85149a895d39e5c6b2d397eac95f409bb21bf5d10db2dda1908b4ad339543b09e9e3cfc860a2d77f146a0dddf499ac8c9fa2c4501
fi|64|7f4a5ff3dbf09d792c4e52ec048f2c2daba0e0dab49bb8e3bd6562cb60963c40404219abfa8e36b518d5cf41ffa1eeef54edef24929465e16d2bca3f3772da00
fr|64|3b2896490b87327877897a73f8ea2b0ece8070a1be336a7f0c7d0245b15eae83d88ace67b45275f62abd3b04c9d48928b9ec7f85d6c515c058b8d24cd67e7f37
fy-NL|64|5a59e6fe18eb47c2c7f067123795f70189592560901ebca07b578c9c3cb09d2e8d7def0df4f456849c09c14b6f102af54a733a6bfe3a6fb827ff5e55aece7899
ga-IE|64|46f7ea648f2fe56e1fb788ec7a36fe42df0bf1acbfa9efa0591d226cd541fbf25c1bb34a08a06d4d6e214fb2d478de57af2e8a788c83476d1ea77cbb5701472e
gd|64|34637ccde4e7d300dc835d4a994f2a5a773153d2805704833408e125dfdbc6b18d7cb06629077768e8cb2b7cd8e0d5aaf3559fcd46b1fc1cfd7b85349a7b170c
gl|64|739070a994d5307f031fe98f87df783e2d069e221980bfbbb07f28305f9737663c9e13d159591c2247a97abcc243f9d1db5073263f45d4875cb6ff27a9870ee3
he|64|315829d51f8036af61e0e91c29d9dbd1de3c19f4b917b72eb1bb9028820e39f95fc5e829694cc0cdde244d25fcdea95616254c5a28a8a15e0c5cf54d6c22ed1c
hr|64|1429f7d330167dab95161c8e1b072dd65b58e0e1a4d04b5933923ac24e92bcce13590c93b06c31f6c432e1284e0574a62595e1553e03479795a6ca8d4f0ab0d6
hsb|64|25c5bf9fe178fe4b9bbc60125c5f117a23431cda7456de2c86fcf5f972b0241983b3bc7d6c3c7b27b06a1b69e5ec8ea2f8dd2fb3f013b541c9c1e91a677554fe
hu|64|7a33d578215de6f3d5590c7e1b1f404176df55e7d04787046e1edb4920456f682f309b8cb6790c55c932d8eefea39283d059d00372ffc49e37581ede8c142544
hy-AM|64|2f45b0638aca4ca77e42ea577ee15932ce156d55f65a850d51fe1acd3e4f9ebe6b54aadbb5dd01bb029dec3e3725d96970d593fe3d5ef1a7437e995883b34cd0
id|64|6e3d54a141a81c27220191d28e96a0ea4456608e8d20d84e1d068746511bc7ba1e23707078d79fb289f007b7ef6c698de2bcdf1e1eb7d3795a1c964a9a33109c
is|64|0349eeedbe96c825aa5f42f4213e29bcea71f88bfbd5498aa0bf73737442f03482830149271dde1b60ced2581a843c071cd09d4aaf4ab6214153ef60a6f9a9dd
it|64|51edc6f96a549a8650113ee36ee1784f868dcd2e8b967bce412cfa16ebc4fff98acb673223f7142dbad553726b0018da88c4ac513dcf73186b20da8da1b008ee
ja|64|153be23fb46f7cbd81fc15c905dcb3bd8638ead852a1160b52ff846398d0db9a2eaf62f74564d479bd3d4f59eee0673fa5a7e9a4e94596889b1472d7d1abdf96
ka|64|7fac75dd1b1206c2d5d77959377af78819d5c6f5b804641a08d19c9d1b455f20fc795d3f332733900d5acbfd0c6dd87026b6447b81560aa4dc4f2e64c044479c
kab|64|cec4c6b6758cd1e13f065525682feedcb6cb91e5d88593efcf50ca90b056d3a608e87a09d718db3516b93bf1981d179565d71ecd5d0fa49317f96ce50a943efd
kk|64|e300bcac515ae73bd6947ee0122e751ff6cb402dd45366684e219477f980044cf989b26b864b1dc4fb8f061b634afbbe5df450c582bc13dcaf8b1ec1b0abadf6
ko|64|adb77af22720bc397899301e31b2d7e9153aebd499d8bdbc1ec87d7f62c69c2cad9e1e1d0678b090ca2924b4043a3fcb5f000f414cd6c734ee0e14d170ed2ef5
lt|64|a5b755bc125460ff3f055d91f16bb193c7e86b4299f2f35cffd6780459812f8f0f35d06323e12b6053909018dd4d2dca6458486fc5a09e458e894018fc13af75
ms|64|2c5c971304cd32007a4793811c9d7ecff439092c250677798a649b9e5c0967d892c105b62b86b7be9e27a410a325825227256d3a3a53485c0225082a139b92f2
nb-NO|64|2d3cfa06337f4adfd21803cc428b1132048051de0982e2d520beebb3236d2a63f37ebe20b383e9a72fc65670c6814e789cfb5cc7c3a5948ca45e8a3ceec98b6d
nl|64|37f87f240ee20a15f5e165269743854b1eb8c2deac044a123c9e9230dd31364d52423660c2aab7eede39599ff337bd9e3887c66b0c931961d482484901a01cb3
nn-NO|64|a446a351c906b23b7d0207542b07e4ed3f83ea9fa63b15ef74be79c16c242fe1bef84d860a9e4b68d6a51ae3ec5f2a42aa1db3dacb58a8da48b6ad0d5980ab22
pa-IN|64|a3f3f1f1032b17eecb4950ae956c1b452564d825437555fa9f5b540374334aade0644bc6bab61750d220b1a811db1bb3bbc79fd7403d2667d5029dd0a7ea8171
pl|64|53816553aae5c53044d43587e9d21f9ecf0b75f77c02a667d2dd1dfa5b17bdfdb92b29110ab698e5b2450ddd2aee05fed323625a25150c65dbb5dd58e58e88db
pt-BR|64|c614d17e14414974ae8b8e1a8621f352ccb5064334dc5a4f044bf9a652f1c8324bf3fbd20ad0838b8cef4ccd6f5f23dcf7571d4910f41f57174049f49d669c2b
pt-PT|64|095e36a9ecb9836f979cf965b46f6abe396bbd7a4497202903bb4f1f1bc0ef7ff516540d93dfed7ae4ae0136bbd2c2adadf2f34856c6bf542f591a724e3e5bdb
rm|64|6c0d31927707c2b82003d386ba7fe17218f1cfe2d9f764bef531b81a1b4be62612e0e6e472ce7036c50ebde72aca03390bd52fb88d1364a3a1cdf554e9a23dc9
ro|64|290a9f4b95ba39b187cebe14f02fc9e1d305a3c33ae54ed3df6243faf4beffbe01d8bd5d7f3faff821d9874fe5b794704a05e9375bf2d240e75bff48544bd6bf
ru|64|cfe210ab084c7d9ff21cfa166a1472e68373fc523f4c38e7699a8d86df4f950eb4b83cda63845861b436500dca143699c87afdc9e900a5f3149b320c55b272da
si|64|9b05ef83a826c1634e69a6c7f9aa3bb9ab2655015c8d7dc5c207dc6e446fa7c82a101295d11d945282ad541bbfaec23c3c72bf0d870339e0257de2a61c3411e0
sk|64|c1e228e23e4a1152b6831826d42778a258583ed00caa3dc8e20db1475ded9ee5d17f33e1c33e5138a38fd0bf20b79fbe90f6e4fb32a9e16b27477450637b9166
sl|64|6780fd13f7cb08053628d42f8c7a4a81069a9263719f889d870ca71de920ac2baca29758bb1fb61878d4351f120b48b1a6572fc78ab4c9075f7b13360c23ff81
sq|64|8893426d3d6345a359190efc040494f8edbc12b9fb6b588b1da9fd7b824ce69ecd02289ca977d894bdf9b0ccb13f65848c73379c49eff4b3aa16ca8099528d75
sr|64|9f16ec9aa458ee4f44d0cef89f1400e5fd73dc036e8dc53dde81791cd025390004375e78fd96b4d8bf6c2f59d1e1ed7e7f11a0037a08d95cd613af9f67b100ff
sv-SE|64|b60a3543824089dd7a794ace9d6cc23e65cd018dee7e52df26792351468b5eafea1d7aa921f6c35c8da24d4c45903abe60a195b4e6ac6384be0930668ec70f08
th|64|9ed0143841df3ff7f533f3486f0473d1e2b22e631a9ad5a60e80ee5ccf24db62b268b1eda47ec3c45a525e2738f9afa413a0cb81cef173d60c620b91a6d19b7b
tr|64|8223f6c990b92dce82fcee35604469d619bb9d582b3da06b630d058462a18a6a3900f4e604f0b0f7554d80ef630a57aea36ba1065e052240f5e3ad04e4560d23
uk|64|9094760ad242a0b67f3df5146a5c2194091430a8550a0c6d0b5fdc5567ae4812714c2838d6e062248134c2410afc143355b53c5b89beed3b271026538442931b
uz|64|efab25187f9a27bcd2cff9deaa6b1e18679c933b59bc7789d4be222b2c62dff1971324765634491176b46014c95941f5a2cb3573b71b9512b3d251b660f90582
vi|64|6af2df04cfc92b09ca8a38c80b915ffbe4b728f9e3726bfef59d55e2c8c76b64741105826a76f64e3bd3768b83e7bfe6114f142baa7f9180d1ccc2a593dbf00e
zh-CN|64|aac6f3058f0d1e54ef41faa2164bbc7aabfed54feedc1b480f90c63d87b0ea4cc3b53accee1c569c657f2728c8e09bf01d330bf1a57f600abb0ab5523c64f419
zh-TW|64|ff383c1a4975177da1cd6e104b78c5a7b776080d6919aabce8a3607f5288a59f3d325f9656a999212c1b7511e564cf2d99485b53e989b7e739e3b39d3bec3bf5

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

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

Ground Rules:

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