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,473,409

Downloads of v 68.5.0:

28,023

Last Update:

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

68.5.0 | Updated: 12 Feb 2020

Downloads:

3,473,409

Downloads of v 68.5.0:

28,023

Software Author(s):

  • Mozilla

Mozilla Thunderbird 68.5.0

This is not the latest version of Mozilla Thunderbird available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

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="'68.5.0'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

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

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


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

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

Exit $exitCode

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

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


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

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


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

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


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

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 12 Feb 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 '68.5.0')

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-68.5.0-SSL&os=win&lang=${locale}"

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

  if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
    $packageArgs.Checksum64 = $checksums.Win64
    $packageArgs.ChecksumType64 = 'sha512'
    $packageArgs.Url64 = "https://download.mozilla.org/?product=thunderbird-68.5.0-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 = $env:chocolateyPackageParameters

  $packageParameters = if ($packageParameters -ne $null) { $packageParameters } else { "" }

  $argumentMap = ConvertFrom-StringData $packageParameters
  $localeFromPackageParameters = $argumentMap.Item('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
ar|32|83f5da2cc27efdd6cd12657bbecb04dc7a234b8ce5a85fd01aad130c7f8ced4d7e48e64b83a29dad6424113ee951c520fc3c25d67a612bf2c32cc45366991ca5
ast|32|5f9901ee54639189e5a8fd2916bc3d3cf79a7b0c13364dfb0500648f924b93bb7a7307aa769d8af36e33ad2dce7c9c8d0955df65acacfa9885c0c60c6a353fdb
be|32|1bb6681b874c434ebfd6157c85f946ab317520758b65c06880c8090830ee91ad6b00bf45870f227edc4a3be5372f9cfc20a0fc25f30d5d73c3eb1442af23c057
bg|32|9c24e53ce093e6f7a31573b76fd2e1200bcca7405084a01cebea47c29fbdc972c7c2efe0e6a456a081461784b4b68690bc9648745f783242e0a2d7e253850419
br|32|81bbb2fef402923ac6a2048c8b40e15232ec1239d7bc87ba13de90a233802b641c6e43ef2c5bdd8c1ed1d759b98936f457e93c9d1b237e752dbcaa6b77d66b98
ca|32|d6ac732c885a8874f3c32c99bfc1c4e7ac1a21942baa58796f25e70fd7615e550a3520c5993ec114564f4c8757da4fb33995487e23ceb9d9a9dbda177ccaee7a
cak|32|1b42a1a5e4e44d25a2a1069757920426596a76c1e275f8dd8ce945cb2f335ea154a6a9e36b6e9a6b4a694d0e47b2e4778db823afff8b16ff8eca50bdee13ee98
cs|32|569156ad74c7bb6e476f111e9fcba6a96e6d04a89906bd5e6f9960be10b0903493639114117ce192c28c084deb6a8878aa3b14cf3b80878e36ed014ed6f16882
cy|32|deb457488200cfb33a09fe85507fe830ebf9c00a387348e929d6d0b32a44bb53bd223d6109c9c1baa97dc9bf98448ffbee14cd2049c703c081e52b6e3406bd6a
da|32|cb3ec7de59a5c5e405fef558d18ddda6bfa7f728ea23283bba8127f98aa7948baae61c98a7c64bc8a188a2d13f27fb53fc18b6d501e2989e1efc779f744a4da6
de|32|ab9bc8eb1fd3188f56f9a3308f3b7039e3ee493fc90c4125cbea76a4a3f71eb14bb80caa02e97493271d6b5b614a8eeec2cc21b132195999c902fab8713d6df7
dsb|32|141ea49251834183f7f20c057df1b649415522ce3641768fed8dd0c599b640f0a0c7c56bee286d36f5197a671361a89a9ea23bb2e50877ec8b8bd4d5cc97a32d
el|32|0317d3c1ee1e5b758af77a588ab9a1e7235bf485ef8b027eb1fc48e4c361b84a9e8dcd187ea72dbea9e4efb298c8632a94b0fef9b48686b055dbc7ec8f127877
en-GB|32|cb8d4daecee78a82d9bdaa2cc84f322d612ee081fd0423ee021d6086be07b5c7f6e36574850882e9ebd078b5ff37c17c7d850b154a6995555a0c4028c9be8990
en-US|32|2924d74f1d96ad7463a8b0a28014d18acb3b4cf4e3c5edfce5049f9833d35a0935484064eb5801b3c1651cec4a7e6251f297c0427a6012817ee9d9a4b30bef46
es-AR|32|25859f08df64575df8e377658a838c4eed6b2bb0f0f677ce3319e5d9e550bfa9d97b3f469699b4a90fcd610e0bf07aa88fedb784bce0bf0b2e11affc8441d51c
es-ES|32|5eca1a7802e3dd87c4b193c8cbc7e97938ec1f6384694f50116fa7f7d348280365362a2fcfd17ffd140d1360305129176d07262c7ed1cf6af30edd40804d8139
et|32|68973fd02c3410cd1f999832b334c1e7b8420af5cfe030e3ec7b65b4ef4fa843c6f01cb44a0a76c7ed6ad2451bbf79a7c621a2184357adac5cf96724cb4e01bf
eu|32|b28cf435ce6e7e5466de40a619f1fdf422059c3aafdbc61e175edf33ff83f8140c5dc67cac1c4f67ac673c2a13a0244292ae4eb7565db394cbc1c80d61832f73
fi|32|7c4ee37112b879e37cacf416b186a59370ebc3a776eb7b6af7c9b6c5c19cb6db3cb2bf06584287f8113bc98fc448663339a7943a889c45cefe43d917c959e81c
fr|32|5f992498b0a298c072cd3c6b032cd63f3e5dfc106820908879669381755df291de393d04f57211bcbba65bd1a5d35cf757632345837defbb0ef4dd8381c81fbf
fy-NL|32|fc604b850d43fcf2b3f670c6bab6040e7319fb6d537a040fd3ad79865eef800584ed62abd03ad93bc29b1e0121a2cdf106764a13967bb6154e8d0fc162918bc8
ga-IE|32|17ff975a620d9ff7e3a3d2274b52337d5a54a1b1196e205bc803d59b8d83215a3fc4e643c03830278a6b46dc98ceea9deb229c547e9590eec36839cc665bcb68
gd|32|df3a635e4789a54803a1e4100b1f24c7d56887fd128646ca2e06c1f1eca4dc72b4b61d96cf3151fb3836440cd9bc9cb512b6ac1bf5f5de91bd39fa6e17623b17
gl|32|e83281fcb64b1bfb17bdbd4c7b7573876d8140a6eb9d874f0c57bd8485953426c20f3f9a510916d5a9f4c4729a56c961ecbeaaeb9f9564dce0eb10f3b7f85927
he|32|ffe3ca9ba08937b0ad16636087c64156a4bd46ac280b5b6faf4b831e18cdd82dd236a26065e20aa9555d7a8257743e756e886a9243e05fc656d3ea35be0a27e8
hr|32|d7b4d15e02cccc9eed5cc27ce4754a8406a6aeb3fe27b0c5e7f0bdd8320225ba942fc30d377c3955b0830100173d22579deedc1c7d6e948aa20e1905c0279b04
hsb|32|66df6ffbd827d4d8f0f5d2fe48b1ac70473d3b5a46c2c270ea0fc5f61151767455ee189ab447ceafb5711a22c30a62910eced68a127fe05b545c32d0d0b59087
hu|32|a5e61eb9747f823582013c66b3b4aee8703de9e8ee5eb616267b040d3d22d6503aefdd35a72a185b64444c2d6d774a01743ac791ba29fc13868be82a2684e181
hy-AM|32|fe40709bac762e1d9f5289016739cb7e7604c5061c8190b7bec43ce734c1a0d501e4f7c6350ee30c87be0d0ef27806a2e2c145a62c533b57e83aa2445ec76e49
id|32|f5a1b0ac0173150b65985c1aa57624ae5539591901aaceea15adec816e146c56ea84c46295e4090dc02df35972fb4d53b14e4c1e9433db95756655994ea2dcc7
is|32|e271b110f34b636882b60a0efe21e085a5e6d862ba5525b0dcca41988eb7f5ffb0289bf9d483c2442e624b26839123d97a073a1280d4d68c2d44f2469dabaee0
it|32|99b997af0a0af280b10772c1310b88d012e9addb0586e602dfb86b30957cff030b4e8995cce766e4cb781845e7b0053cc1d8e465f3897369635eb39690461894
ja|32|460629a46945a74379073391805ccec3ab772f27aa1ec93863ebefc89674bd67918f2ed95584652219201f7b51411c7a5bc179e35ea77e6b8acddeaf75bd770a
ka|32|520073b1a3708ab1b445ab1cfb7d3264c4c9aaa656a68023aa31a339f38a36709d7178742be18af97a65aee73486f2dc285fdd830ffdd7c630db191e9e813555
kab|32|8f56abe2658aa748262924246107f1df8433067d1dcfbf5fd235210a92c116fca8deee6a6a2abafa5487a842e9b0918c34a18398d749807c2d6fd73fd334a82d
kk|32|035127725b07751032d47847185d57fee16defd950ca3a68657604222836598c05d34d33fe96bdb61156ffb5451f69e174ea2f141ddf5f59c51fe9858b62b7ea
ko|32|8c5a2e201fa2b3464c3936023099ca15de47ba32001a7143f13d73c7ea302acc98152ac188b1fb7de423315a1d7bb991505037df0d5c28b61809406e23dd9168
lt|32|8cf68310078a744291c18c2137dc510fb9d7f989f06b4d30e21c405b2d7720756e9f629bab4ed21d0f626033e1baed66c992fed5a6a0cf4f0b0141640dc5cfa3
ms|32|b45522cdc0143e439b0740a8559976c23b2f4507eae64bf2771dda4a200c5384a0c25795117b6ff872a649bb5adb17830a616991ab444e0026eaebbe45adeb5f
nb-NO|32|77fc56379c4632a3ff8a619bfca52f360f7c55d17abab68993cd91750c02a00047f2614810717a120d0ac58d78d27ba3b157d9b72608a6f4314c3de7d78d6aaf
nl|32|6d1e01c14dc659c8d2f254c0b5c466eb031bcad9b89a97e93d907049cc24b7b43bbc669f1a24e9954b56aa69e56db24f9584584447697bb30e519f0940ef3c1e
nn-NO|32|f2040a3172f7b2a3577a396fae21b4a51f3a43223b369845d0d1866a2317eaa9a9622e6a621c3592bacee8afcbb15e524e9c8a8f1d69fe10d307bf668b521109
pl|32|9e393cc29838207d00973fa08cec4c8b3f57050341a8dde1296c1329d67681e1df43cb15bd3dc9ce18f94c413b3148768635d8e9c1466ba953ed576fac49fbb6
pt-BR|32|5e044879502e516fd7b0097a8072cd2969c518be22753d411573ba79131f3d52cc6e054772d787289e647857071747fb0fabc2171678c75636f680d6a794ca32
pt-PT|32|8cf2c2cf6ec54d33033c0d5b0e981ead101f16df95dca3eac9114b13db919eafdfecc8d1d7937f0c4e1d38e5fbd5fc6cc4a180e1f5df07f0808c1a9867acd38f
rm|32|6076c99591a8742dd6dea81cfce83d669c5fc2f4eb7b3ecf610a1fe58f84dbec4c2832cd08e2b6ce06768a3264d9dccb03a23648c7e6d21f9a71a7e6721e6317
ro|32|0e271a63fbab6fa325cc096186dea7ffad0b54b27e4829d9a775a4340ccd775503417b1ad2f3a2eeecea8b7dfbbc37b23c78bc049c830b7ae02e3aef0f0535c0
ru|32|c8676ad4102e62a08ad0b487c9af09a9379ebf6310323e503513bd2cc2824204051026f350027f85148507c29e5cf6470d2b1717f1fde78daae74c49012f5cf4
si|32|30e0b423c876501de53f4dd904abf91c33333cd5a01e70306b648e246ed155c0dfff8b41926f88eaf1d8993d8cfe4d23cffb5d575cd75efab7ccea9421795ce2
sk|32|2aadd11fe13c83d146ad9747ec55408435bae4f62727dc9bd5c69d2392c2afe97080efc7272bc21c02ceca15f5ed6e385ee171d035cd3872bcc207d386d80b31
sl|32|7ac94c780ba547261bffa75f0b2f5c72c01f7cc3b366f7cf239e84c8dae59e3e6562c9b2367a862fc522112c899edd12789b919fa81a1ad1c2e2f9c7ba8e81f5
sq|32|5d61497b91916b428f722cecec44503966d5453251ed3625d0b2359766b8ae5026e7cce1f70fc9e0689062d04d1df5834db77c8075ed3850face9f64fd371972
sr|32|98023f6a139ed3aec2b6b7e071993052cb126b998e77317a84b66b628d3fd3e265232937b069d9dc77f35cbdc06ff4d85a96692e65bc8ebdc87259d923ffeb1c
sv-SE|32|36a25fb9fef70cf7f27a5ae6789bbfa121af1423fadac70656fc3b745a416e211610dd7ec1e573a1ccacb71a0a7452019023b3bafe83ff952c0fa7ff3d6de7d7
tr|32|ce8941df45a6755216294da59d7604822933cd3ae9e80f84d441964c69d0e12048ebc4a91cb4e37f6d96a0f3d3777e14d712db70a53b5ff39dd6097ac1983f81
uk|32|d4aec821884eea379d0400b788a1b4b39a517c1a702a0da4409eb5d5b85716b5fc7130a01a02c837656471bc405a4ecb7cd1e4aa299fd850ef52f93592a6662a
uz|32|cda43e54bcd6c0fa0f6cb42684547d1a3bd9dbcd8832e16277a0079bf447703cb796218d0a380c874f34cd76dcc13de4dd0b539a645b8929ef19fa38b4c54627
vi|32|5aa20b1e412fcb5b53a54b80c939445581cf49c587350b5e6fb54e8792607a7bf76851516ed9ecc0515a0a58e86a6dcb1290f38def630a2aa6c197532e534642
zh-CN|32|fbcd45a2b9ff95a322708169f1dc18854ddeb7e275b87d7d392409558fd8abaa554482dfdba14236f1d3cd3aa94851d4d17363cfcbe8fa12464c34993e5d706b
zh-TW|32|8fafa2dc1224dd74bfff2b4bd476c9b645b4d1a0f7405e13ad748ceeb575f03cd0386ecdf4991ea60dc0525b4220f7bb54f89a0841d105e906f90a9b8d241efd
ar|64|e55d7fabe82d33dc5bd5b270e4a74734bd9b47b87272f7a6e8866a7c69c82c9c9f73a8332beeab9f3d279fe1febabd9ccb5237f668ce231e8951facb33266b2a
ast|64|5657908b56d0c8825e4695b371446829173b325fc749d272de868c1151646fb6dcd74ee972013327aef7a34401c6f2a6afc690ca327de619eec327a66534ae80
be|64|72283422832f203f4c9442e64a7d29feff20a635af2620a3d48aa19af50f127cc703dbf69c59bba17cb7a03091bdadf247b803bd5efeace5d2350242e5c0a598
bg|64|65cc14a362b4b8e1382b436ece08d42964abaa2f5e06e6182c07d9d3530391661f5711a6dd7c777ce9024730113f720920cf176d25c0a28667bdaf61a6106a5b
br|64|1987d5b76e74c2bc785fb9141b3a82a87c9cb5181f78c9ae8544adb6cd0563f8557d249020abb9b9f24abe54e37e4eb3a8f923a460782a45f8d890b7818d27fe
ca|64|62b5151036b8f276fd37bca05d92e21e4b213c29aaa61d06c8b70e5b5f4ac1cf6fa6743b4fdef8a9e431ad838e320771cb5fe2fe862c7922379f81938a3a5e03
cak|64|5eea4dc88336a03db60195ef256acc1bc2a349d69a0a0cbde9803470b891181fcdce8c9c80bfda9f949acfd34983a35b00e44610242f94a77e41c2b056f3dccc
cs|64|290b97a4928f7ae13333c3c8eaed427e2dc41d8dc18e21755c6a1ea1df1a82b2567e56c5a74476568ac10c708b7becb794f9ccf3126ae941a6a7fee650ccbe0a
cy|64|9de65b9b7fe184324619f772bb320c5cd170f6bb081f9da79b04e38daecaf1bb49ab7a58b72751bdf84eb65462d5605472f4becaeaf7a6cb2f73f229d3bbd7bd
da|64|a7e0b006c48b5df6e3707c6b67ccef3c1b0c2081a3e37cd593e9ec952c5662d070977bc7f47152ed633a8fa6cc54fce577a35eb194faa602c8498da451daef83
de|64|13c6b0c473fbca3f9cbbe081ab84e4bc69408696f6bcaca712b520147ffd0827de61fdab76b7e3cca9db60c7f5450f0df5b1b5911ddab7bdbae85394fdebd26f
dsb|64|6fe1234412410709d64bf4ff14e1869a17d83077ef7707e330525ba0d8dd5fb385a78c8d8ac3abdff5b8148444217025911d012767859c7bd2db643af4070345
el|64|a4563c8ef3c30e24cbf154ab94b4755fc1f64adb8d27d4842cf245947793e1b3f5d62fd4fe27c28d09a6e251858beea2b9cd192f02bba8a74654597bac1fd8dc
en-GB|64|c0584aff31bd3b27e3c230335038e4b087dc6292be45ed425e5b4c1c437a410048295943e3193f0284660d057faa8c6d6efc2a58f7404423f31a6d52e6ba5418
en-US|64|71b431368b12d01691202b9eaf5095b1dddb3a69cc648a8b5b734107fd02b3b71c809f65363535d3cad3cdb5ec95b16ea32131610b72c611635d04463dcc6c0a
es-AR|64|17f35d658f48002694ca856a538a658e60c7b59d384291a16d283429ef54a89eeab21b32d52cdb9d19d778b596bed447dd38518070f155e29d9ea06f43eca327
es-ES|64|559720d44a53c8f1c4113ba28b6432b2bacc572fa1659387aea97df411102f1e30664a0db6221ac5c966f08835f8f9f4ea076f26b08f5c5aadfd3c02ec502831
et|64|60a8ec07f55ab9601a83f351bed2562635e45cbaf8dcbc27bf4db3ca3ed3129be53ccad64a0f61f52ee0173cab7e6bf79e094ee639f3187f286e8ec26804662f
eu|64|62ad7d03cdb14f312f3e3d10088c2a69618fa1145cfd3276aacb1a18534ecccd760274fd3069e75323723880c035f3341bbc4d95990423b835c12af4a7a16de6
fi|64|588a9d365a9b7062826261db02ffc7d8b1a353623198f6c67e75665d880d9047bc664706e0361efff0db3efc5d77d9fbe76eece428eb72879549198d169b55a6
fr|64|95995d34ffaebf5daa98a180a385d1bbd3e30964ee9facdcb2548883ca8ba0fccaedb181dd3cef825d5edd0de771c40157cadf9c4017ca2cefba8f602fe8af93
fy-NL|64|6875a3f32dc07a974052cd36fd6633a2e4a757435026dda4f0f7554996f2d95e5446154c9432ae9e64169340d403fbba22d09cf08017434f2dfc4da25bcb18f8
ga-IE|64|1a0cf6a235a7dcc160da85bb7ef649409eff770f92f549144b80276c727d02193acac781ce78fa5886bc8289d463240ddcf9f450390980010544b3bf52706ae5
gd|64|a601c25357b70af5c0f76d6997b87463972cbbab2f9e95a1e98ea537776b453cf38f6e9a74f9563b9d924c5be9e230ec51cbf9f15d9fccd338fb7878395fcd9b
gl|64|987eb95b8e8c67afb56bc48e9353b05a6ad12cbfe22ce6d9854d4a3b3a8e64bad2eeea54580fb5ef17841358893ddf58df39b46c21fecc2365ad60ec567a3e5f
he|64|ac2b035607cdf8d8bb0fe3d12620aa0b3e45e73795c4753fc28e971b7718c428f8e7e2cfae222f96ed2546b6994bf85a7fb3c66d4e843d26fcd0b1d1420f4bf5
hr|64|137db903698fe12788b1a8a061f4281df704ca5a5b9bbcc43ab65994bb405d734f71870cf72e3c8688842c49c805d41774eb93f8fa3ab6d74872882a20c38488
hsb|64|68c93ab42e21d2fd57b960bc78f429eaeb5ec74077daa48bcdfdf5b068a13dad236556412478610d8c0af1411f3eae5b4ebc2d6967fbed3576dd68fb7aa39ce6
hu|64|967a0e61ff07035e84ab375a5650971347d83d455e67f2e7af1b9adda21c56cb19540e3562b80abf7afbb57734b28bed54e75e85c4529719c7498cd2409e062f
hy-AM|64|03f26ecd0e2486ac7afca53788fc5e2dd749116f3d78e3cc62edbf3f73c1c1e86d09c79659eda74784fc7c87f4d7dbc240c4a9dd5c3b2f1115717aa4a73be8fc
id|64|f1e957cedf1f61eaa09cea59ae6509dbaa455e2bc75bae47303dc36e7dc4ce19760d85c473d936ce6bc9abe128f80e6039be39184439871641d7e1fcae16d378
is|64|c83adcb9b8df9c46089551aa1982ed12d66ca7d38bf8b67b385272a62a620c956e82cad5e79a20a78b4113050425cd7ceaa600c7f2441f6630a8e89688db43d7
it|64|49be797116acb48934ab897cbf46a0851d3c7f8aceb0c974adc0fa48e6de65cc688c77a7f27ab80de56b9947bb01aaff52872df6e947f0d94de332d8bccbcef4
ja|64|5cbba861be1dc2222a8af5f4d9852f02d19e8f6918e5a1f1428243006140e07e09e3e4ea0ee801c88927f483e72c7476f4b18895a08cc32444feb794ef85cdbe
ka|64|3fd46cb5caec788970d6d89241a1fbb6bd336e4fd4af94886e7e278903f932e2de685a6a7540cf299f2aa79b2cac647e80ab029f530348d43cf59e00a111eadd
kab|64|d9835e5050ec55d702815d96930b3e9dd35b1d3f7c8a0463bbcad0289bf1a7314e0d134bacc0a671b3bf1d375a1d6681649e8d0d18a49d3687db13f5596e1014
kk|64|7220edd1eb263e0921b5c30d752b54703be2e0fe891cdcbd2a26be878f3772f0357fea3a3c7a8bdfd94d3d1e63e3b820ce11c6badfeefee21b18d80029f2bbd6
ko|64|032f01b755ca09e0eabae62d7ffbae346288220bb4f960b3ef4180f8c3b6907059a79828ce886e4c9e51b7686573d22b6e364829c353ea7b719aa490ff7eff48
lt|64|4e609272d2951114acf034bcce89f6d847036758686d6ecd7bcabbf95503c79b68c9a6a3a741998261c3d6da1816ba5a5caab012467795bdb9b40c71a6db75e1
ms|64|fb7dc66a801fe2c2e79994aea6e0bde807ff7c9d5c7d347de19ab51df70d93e3b486f5022b4fb45cfe0dc49353b53dd89fc93831935420a05a79f2c11e8f0221
nb-NO|64|3d12b7014020650727b893e988e57b5b7185d9c92765721619b73ca55eaab2d2c9209afe1e510d681ffca4a17c2bcd6ef5e4a6f9c71022860201c2d6548228e9
nl|64|ff48e662b8ff1e9864d008ce4a95a3735ecb7e69cb5a772763ba9538e4499f08295f91f25e581b4b046a50adddc5af590a0aeac789787a90f84626b09bce5b2d
nn-NO|64|476de98e6d68dfbd15b136ba8b489531bdc186c468b7863553049838179115dc3f7a83f9dfb0d9c9b5f719236df7203d9b3d1572f36469bee71ccce1f9ef72e0
pl|64|dfaaf452cf78de69dc7a2dd8f16ae80cac5dd9a825804e10d3a2571ffa4f546042564d0fa47f573f925f72ab63999e94a86ba0c6399caa46476ff6bc2841e895
pt-BR|64|2c007688343379477421db4642e051ff8c557b678ad5f7f5f6780ab330c562e3beeae553c2c5e8d8491e952982b010249fc9a39d3820a8f83ae459be67fb4595
pt-PT|64|056ae63474e21ae1cbc35f70921408e4dc693d65f1fe9967cf4f3355049d5434612aed78f7b099d946253e64d1cbf7641dadad89fbea4f25d79a5b003f537b2d
rm|64|a510e8e3c7fbdbe453c041ac113e70dee420a25a3249a6c4c1b6abfa5e214d3809b85bd7b2f4ecd1ff5b1f65dcace557192a2225598be5cab175ba325b4242d1
ro|64|0b496bfc9049a66498e69a7b591b0e326de766d688ff48fa3c682902cbeab6d2843d340c606f853475eff9595b08cb8df652a96b74052a1547630adfce6dbe22
ru|64|dfa0f57dd5661695cb3ee1f2c7e42438c855798b09316ea32e8a4293156f30dba168fdd15106da59523d7f20cf46d7a4432ae3e4302d9b73a7cada3b65595f72
si|64|84f12821193f7cf33f18bfdf6cf4b9a55fb6516c1086c6579067e77b646940380310bee589e1777ae7993a3f0404eb547f88c9304adc6a525e3f7da8b1287afa
sk|64|c8849b7c641144e5e4295b3fb75cee3ce224c152db9368fe220673314b14a9526536625959b07af286c8c4ce3091170230624ca97030b485288cae27f188b82d
sl|64|65f943d977684224a850ea9bcd56869c5abbc9a68734c8c862740868455ec56f52dd760df649ef301234f7bf37d79428e61b13e580a6a625b2d64ac31f04ba99
sq|64|6bda64b300b55c605526e4ea69601596e14ea05f8861faa4c2550e21d735dd6fc59a9197c0d0830abdae55257d63b0464235a3a6e2366ed6c1ce6efef003a8f8
sr|64|6f0bc8807342d7d2138551aa92033e10151f716d6a6f5df9013503cc83e8f77dac2f6528430e3ce8e166a4d0f417e9e81bd2ea00b0e217b985e2cea9c685611c
sv-SE|64|d1aa892a4c0801b1a2c0106000c413e6ad03ed16b8d00c841bff291f57b45ba7bb20e145df7499cca3819b64660121e0e41677634b4faaed9f089de88b812845
tr|64|803b655671d27d32fed3e900072dbb47d1e646faeb0d374303e1310bd1267542379f9e860206eae1f40eb227683df2151dafab9ea665fef5c5a86469e02fee47
uk|64|3595592d44a0ad8a2b4f4b1fab8e070cfd0f46e402e6cb1fc27085c78d669f8fa417e9b903acbbde5ff5ae8364ee92e22e1004802d23a8ce591cf49176feb2a2
uz|64|e1547a62414b6251093a4741c604472ac3082f93733b65bb6284430ac8b8096bffbae0caad6041a8c23a9810b86348f6be726a72203081364f068397530c46d9
vi|64|91e3528daeb30b8c8d243d9fe870becf81ae96801d8f1cb0ccb1525b03a655cc855b27cec692408f513f42736cc7529febde46c74efbf443e7eeee35f5d3ea98
zh-CN|64|e3e74342304be976684e30dc83ec490b03afe2772b4fdb183fe08cc4557012bfdd4b3af7b6ad9cd3268c21e9810fb361bd604be1e9c73f97e036f8a4f5842ad0
zh-TW|64|cc79b5be110df22031b102513a8dd127edcbd8022c46a64dbdfb436b8586e7eaa91ebc42bb5d9a11a61927dc5f4ef510508cb9c94d65361b89ebc6f52406d843

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 27781 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 20166 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 27746 Wednesday, May 10, 2023 Approved
Mozilla Thunderbird 102.10.1 28999 Tuesday, April 25, 2023 Approved
Mozilla Thunderbird 102.10.0 27103 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 25080 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 16781 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 31887 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 22956 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17625 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20301 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 16188 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 9561 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 18411 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 18622 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 34972 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16902 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12465 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 17543 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 20019 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45016 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8109 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11747 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8082 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9101 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4661 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10663 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15302 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9156 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 16914 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 16325 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 6386 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7222 Saturday, April 15, 2017 Approved
Mozilla Thunderbird 52.0 3989 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 4821 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 34632 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 5829 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6091 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 5676 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 3298 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1878 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3652 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 785 Friday, April 3, 2015 Approved
Mozilla Thunderbird 31.5.0 2892 Tuesday, February 24, 2015 Approved
Mozilla Thunderbird 31.4.0 2552 Tuesday, January 13, 2015 Approved
Mozilla Thunderbird 31.3.0 2426 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 983 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 1505 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1092 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 508 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 623 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