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,485,499

Downloads of v 68.6.0:

19,682

Last Update:

13 Mar 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.6.0 | Updated: 13 Mar 2020

Downloads:

3,485,499

Downloads of v 68.6.0:

19,682

Software Author(s):

  • Mozilla

Mozilla Thunderbird 68.6.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.6.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.6.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.6.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.6.0'
end

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


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

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


package { 'thunderbird':
  ensure   => '68.6.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 by moderator mkevenaar on 18 Mar 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.6.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.6.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.6.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|9085442db4f1502ebfac9d3c6bf8b19d738d18c1410c45b41601c96fbdbddb0a5b19d6fa01b717a4467dd9ff936b48367a9cd81d7bc10ce79ae28e786c632d88
ast|32|a8f1385931de3739f0fae42c9273b82d19901ab7945060107e0c61e729689c33c3dfa7396f08cca9c710fc59adf414269581f11745617a9c3970be556f584f35
be|32|5d41d54d09b65f0a2ba764a9b106ddf713e39ec01ae3a135b970e820a3cb2447472f4356f8348d4072e572915150601e96d3adc8f3aa5f37c4b83671e0f3c09f
bg|32|ea739aa50a0fe3b3d11468959da6ba5a225ba8ad5b27cec469b150e2dd241d396867af6e84755197c692f6f3931e19eb78fd1efb0b8843e90c7097056a4b3928
br|32|5951456a74efd2758fd2a4830b5b61cc69920c2ed4fd59b19da22cf0a69905c8fe76b23661c692c7a114ee4cecee8d25e2d7b430d89400a94e5df880e7250a5d
ca|32|4db9e9e4b1ab37c5f8e0b6c3ecd79711e0f7609104e3f3e071d31eca2c62e5dcb8ae105ca4b535f6723e1baa712bd30a05adc2e576c4f38f52c5e1e1a7e8663e
cak|32|103d0958ab5df991d8704738dc7f2882d27b24aa1e8a815dd7caab997674dc4f15c2a8a7fa36fd2d36355393dcc3a17083e89430c66fa7ce1cc2b085ab889e00
cs|32|29941b66d4a7d5d7dc38e0f43e33602d59b6cb02412ff443bfdd932ee5c92140c04872235bd02ccfc34e7a674517fdc05d9fa1389ed1603cbeec398e1ef12a4f
cy|32|cdda8cb350bed3834d04f123083e99f79c66fe4d5bb6451e592c58a0ca0404dfaf8a315954656baaa24ad96f96f64df2c1d8495c3ecd338fbc71c30258d579dc
da|32|31987fcbd79326acbb60e1cf13b3572aed2ec180258aa4b30a44d29d9d078b595e2d7e272420cef6db88edda89486b049137dc49e0ca0a8cac7a6fd7569942d1
de|32|b47049bfe5abcef0e49d3aeaf8028839562cf90046f9576759f2babbae42d4a23f06392bf0da1b8868289d322ba4ea9c16ca472872715807e05ea0a5dbf3afea
dsb|32|32ece6e9c4dca1b8ad217dc5ec0935c543ddd0e9a856c62c229416fa32ce0e15298ff82e15d9f15bcf2caa698bac041bffdb7e4e9b4ee4a75f144d94e05a0fd0
el|32|b7f6963489405eb6fb7831f83431f27bd44bd49bc549b4ec6482a65fc25e371229c44b6a4890410f1838da48fac75e6705cf9a8931a8197b918ffa70244027ac
en-GB|32|164503f946ba81dd49c0036db9cb75cbb0034ac7115f49d809c22a990996ead7c207ba1733efa5178d416323c22452f0ae32216756ca417718a8bad8f4d46c2a
en-US|32|7a52a569e5587bb92cc70f93d719a84ecc476ab6fe7d1f39e24b15fa70f2bc744950a43e368039b9d409318a84b49aab684670b9544db2be24fab3f81b026afd
es-AR|32|305d7fd3064fe8aea0c16dc7c3685b3606338790cea495b490fec4f57b7525c0c33a169d79ca1ecb8207bfcb8a79906000ac4caadf436a20b616d76b47bd7ad7
es-ES|32|9dc65df2639e71b46a0d93624fdc8c7fbace36dc689830564ee1b7ca7c9bd26698f8b4b197fdddf71a2feacceb13a5e1ecc38e1f9111b2458ec844caae9954cf
et|32|425907795dd6349aa8352445a5b49f19c24eb8f183b78a56635813b54cddb8a763dad108c06e07b36a4040031f055cdfca47da28aaa0a3ce89dd959a3a07b1ba
eu|32|fbfa41f8b190650413d170935e2762726ea4b5f30b37e95203abc399e52fa264e57070e39ee7a24b667afa1d741b530d8cac0c554fbde04f924e5d0800f2c864
fi|32|f5109c3b045e8589e3894edbb35e3bb3451774e94e63ec6a9fcef4d711f950cb935b154a47d4e0b5c57fbf2873e9705971e1e859225d47d28e9b91fa6a2f7c4d
fr|32|b8474e6f61859fafbf315ce23dcdaeda35d032a7f6ad76becd6314c4b9217192cf3e9ef673435bd25aa4746da9f906f49a3a7ba1dd8ecb3b9a875903b5e8c901
fy-NL|32|5ed956275f70b32b8cee45139a163b7ae0af406241361297c58041a5a884fbb3085bad63b7eec426e5f9b532d500a49653a5f7bcb75a7d0323b2b4eae46f8570
ga-IE|32|5e2954224e243c5dcb4eac6a5a8fbc54ebc56b955d85325ffa21db9a8569cbb647bb92965c17c8b4c6f6aa7e33fb5472dba0346ca6c572c6b4362b9f8e111b23
gd|32|f056a83189c4232c0201a2cb75f0b147b38e45251fb20536dc986aa70b6cfb7df250685cfa22235f340e83f30312198e0272a21e16bdc866634f59b66fde89ef
gl|32|c2c4844720ee104eb919162ba7e736dfcd638f09af61be12b252d06fc3edd6f660d7c5889626495427caca7e4dd4624cfb95c64e5ed9cb6f357e83fd984c709b
he|32|7bf6bf270598f6a4cccedea31b91fe5fedca19847408915a852f4d5601738a5500d2de07bef8c58b9ac8dbdf9df2f88adc6d028296db0632cfc781a3a47c78c0
hr|32|56119be78740956ccf473561b85c23ac41583711a0cc12f5e2057bd0497278c159643f4bfa433e953f2d9ce81ee09a10b21476fa7ace391f11434788e7ca7c91
hsb|32|e131f32d06312c40653cdf3600b070c3675ef8661ceccbba4741046a7980ca423096090e80d4c06caa7396863d22b952c8cc6bb03a3fbda0d56e5f746c457306
hu|32|be23d0be2150bafc891687cc43ede98fd94cbec7a180c3924b447b026b8e2f5f9a1ac1552b345b55a0b4d1d6f0b48e717536391eec338bed49b0f5b620035940
hy-AM|32|4ebe83b01a3c32ce9d4fb15ef126c994d822a928d6591f2fdd47b1035357e94fe39783f4f4755c7c4061b0f6a232f567d4c76cdfbfb47b267db69b4252c1c6d1
id|32|e377e11a011e1e8e10bb2c0378b707c9b820685135483b3551e7ba9f7543b5c418452b8717084e9d05cfcb3fea3147c0ac7904e5c3237d590ab86b3a3a4a464d
is|32|c303f6ed466676aa8635ad2a8592846193d2326b616e19228bd9b65778b8e3b8bfb6bdbd6213e0f98e71ab74eaf1612e199cc1d544e7a5a9e5ded10faf5caa37
it|32|4b948d657400c89539a7846772bf4f771f7110a4a105366c30705e07ef275e96a629ceba7873a2933e1c955acc1775f14147678abcb5ff062cd882c861534ba4
ja|32|0b9f3b2ba95cd0619510fd44501fadea82cf162f10743dc6bc5b8816e2df0e50d2be724f43068bb470e1bd67e5094b64cbbe62081b17b2a06e83559b7406cc68
ka|32|43c7b1631767715b199711fed53bb7672a614758dbd503356aa18980671d62c7a01034b85810a19d6a67caa5fcbeb9703c00aa53aeed26d310da8c6e75e7a6c8
kab|32|0fe0a5a013bbdad31220f3d37c050c36a91004080a6223940ac3877c180c3d3d22dddde8d98abb31773cd7e3ae184a6c510182dd23729dd399fa6ffa5e9a0fab
kk|32|36317bd909e8065f161ad8a28333757e0c820dba149c48ee56dcae661965f8c0f32cc9215661576bce54b9276187f9fc8180345da5c53dc3103579e0fc5c5dc2
ko|32|75bb361673d812503287dc36ac8a9a545ae58d3931832abbc4debbbbb7f6244996d35c07578f7993d8fa8bbf5014a23ad4d05d9dcd79008ebac500b0adb4aca5
lt|32|2cee4ae736250a1c0c634dde25cae45926353ffa0324abb893fd617f525d13e694d46b2837309a382b3741f2798fe017e61bab3b4351668b8520537c0968d9f5
ms|32|a6974514835aab19435a907fad4e7f78917fa45d415105889b6406abbc6e11322a10c459ad5456dc0d6c10a168a8f8c8721a223db897732ad57c07a26cec46df
nb-NO|32|4c65db6926dfa3a5500afdf62bf1790728243a62ef1b853934a4bd3099fef9d8ea161fd99cb46edea50c9c722ee5104856201907dc0bd3f7f56673bbe4786f3e
nl|32|99e2605eeef58f5a7ce1399e47c5c032a602360960ada4212cb6fcb59b7d56dd5b251fb1bcc819f2bf89fdb08dab832a660e9395f22aa6e712f102872cc8f04d
nn-NO|32|300c44914c06983a737e51fe76639261b8696813652ed839383999999af981b85fef8ec38d7e3f65f0e82a528f3f0b0b7ae9698c1eb43d7b98bbee96e191cd4e
pl|32|952bb0bff8b5c136286773b356f0c6656f0b09e3d377fdb0bb94548965f610626addeefe1ee7a71dcac8034e41c72a7df844cee124ee3b8905a06581c759c213
pt-BR|32|dd78dbf64da850184a4e972ed4c44cb2048ed36274509afb7a97bad3cf8f7bb6a2735fa1cd36abc07c59b9e4d12b76d7596791ff7ec5413089762c83201da138
pt-PT|32|334fee3e08c4430bd46cb76dc2db60991f2ea2643a5c7710b3e05e24ec9d856248662c7db70c20034777ce7304350831501e69a545bedac82384060685c59f41
rm|32|7b37427a0f020c06b8e94a68d7f39d9c9cb5d8796f5e25030ca696c43c2aae6c6e9c885e0045dc740b87545a18bda94862fc29c6ea2fbc0bfee8cf72c609d8a5
ro|32|23c10731fc32499e13c1b0f94a74abb95545b64ae90be47c3ff33ef13f85c5a5f280ecc487145afd87ba9b32ccf8ae474b16eb10369c4d0a847bcf78b8a140cc
ru|32|ac85accee20e2e25943acaee94657d493f97051eb54b4e9196f741477e82e663e595cac956d52c816e833caf4b95272c47d0c255e3a02765d99fb3f82696dc75
si|32|0f33c36ec5baf60add6db56fecee0518d422dccfd74aca9443a8d7111223c578cd9808870f33d8120593beffed1fb8069cf3571b99f50f2e58fbb7a2217eab28
sk|32|ea720d62d1677e3bda416891137dcec8609e50941ebeb258a85b73870e77e7cbef483111cebb6dfae00b212a9a88d2dc39479fca2910827d87022b7950f7227a
sl|32|9f8e56573df6d8c457c2e8656eec8d0514a490145e1ddf332fe5b9b20f2cb7b14a4ff099c044ee3e37cd3980d2e6eb7a00754dd7ea030fe0172337de7e89589d
sq|32|fb5f03007cdaa8718052424eab0ab70c23c158a4240c7820e7328809297b53426b9dd94d4c0835405d90f725a0d9cfb90ee75eafe6726693aae0e4268642226f
sr|32|1448e603638a9f04042d01cf7801a4f602164d4856b67aee4eb20928171582f6ab29c1ff793821cc40b6099d655db31babecec286f550b48d4d404b8e0c284c5
sv-SE|32|8b9567ea32edd67329f5b2062a5cf3a52a6a09a33ec264c2907cc0ab331272f5f5884f0f31535b7c1736c815b41f7e57c7ab809743ca97331620ea9d1fa02442
tr|32|47a8df864dd0096868a37ab18de25f716d5026fb08e5b90c65a37de2a9523b34c6dc1df0cb24a30703b683a7b7667400829da8ed0fce553210c9bec65bf6e1a3
uk|32|1d1674cf444c3a55730a644b1169e0afe5c4e93b4fb51e0266a02bad5e77bb7e985f918dd4603a77e9d9d4a5639a71eda8b8f3e116c3b1f0fcc326b33e13773b
uz|32|333fff473b50c5c8aaef67c59ec9c284652d3905324aace8d622381c9f0d5d5157a2e0e2c13a00a8a0a448196d4c69c9355856474a972769c9620372523addfa
vi|32|cfa970769ae3f63ee103b7645142124f6c7e5d61c5a915bd698e077542c8b0e88c0e853e3f55b8dd7d9d1d078b41f819cf33484970c317107dd70069f0eda51f
zh-CN|32|590639bba3666993a16ccc97cae1b9ac9ee5e07d40d5e7b5b651225b9f8350f7fe10b5c5a060a9640042e81dd8932786c202419407c21da1811a8dd9e6c8178b
zh-TW|32|2fcdd176f370c9ab4f8ae368d90e5303977c28f89eb3e54f6d7ea7c16308389014c48d42eeeb4f6f878085e15a70861c1ba8fa90d01b8cff015f918915e5aa70
ar|64|e78cd8b807433d4d5fe782354afed4038bac81d517140b711146ae33456d3bc5964bf7326fb12cb133d9b4850812439ad532dffc1638dc9da4399dad9ad522ac
ast|64|a3ef067364e3fb46e6338db1bbac4413c4b64abc4afd3a4b44a3e35f29158bfd8fa91767db690337dcd714ac8e0d9981289a864588141ed845ea291a1b1fbde8
be|64|91af5f595b5c485e5727e585f1756bb50903f040655de297f2c4a5bbeaf2063e8bcc36f613260f372080bdccbad7fa998897ca8c9a3fc3c9b43602008e7cd389
bg|64|b8151afb4a632b06dc2f201b3ec161fe2b648d6735b44e7db1acf222eefc8a0cf0c36de9fd119b34fe202eb11e5f76091e215e60cd3b5329091da938e9e6e6c4
br|64|767ee3d98994a67a82dadb197c5150d611c593f322d5d4bdb00698bcca692fe1a61f7e93bffbfcff72ffc282f8f69ba5298faed1db192facb0617226471f3991
ca|64|92469aeb6713a9f61d4bca05cd722dca9a4666f40e0bcc5b874fafa760f3785424ada198304bec8f1fd14cc16fb23b5f142d7c5511322e4b117f75d555555e7b
cak|64|d0f9965b77aa9159f910d8f23c2b0f0c99dd5e708c521fb0f688021af794d885ee8bbb65dfe100744be54c051153fd76d2be3ad2ea20d392748f59ff3431dc94
cs|64|322d923b90d59653dea0f0fa484415998b2152eba0f97c1d8f04d8c749cec4202199e66a80267cbb711681e671e7187e1c7a229a80e9f512123aedc2db5752f4
cy|64|48395ea0b5d9134c65ef3af8f92ea526db519dce09991c7964a9d0adc5673a5d6c3ca9f13c4d2a58a2151bae209c53c9eb4cff1c5c8f93152a5c96500e4b41f8
da|64|1eb557003ed0cc40f85a1144049e860e1f20bea6ad2a5260628b1ec78568bdaa9f314b0888676519925bab090278b03591cebc96ed15b81514e3f764e66c1dcf
de|64|66c80964fda65af355602e7d5af5d336e248c126894e3e9de611237dd90518c0949525a6fbc76dc92255528f8fa94faee6db51abfe2f40f51e5453ed78f94460
dsb|64|79111f1a4e68feeee70a57981f179bfff750f3fdf23fef384557cd7ca1614acb190b2fe5f523a7793331cb16868667af0a215982d9542dbd03cbd32a394298c4
el|64|1fb96e58c677231ac6f351b5d0e458dfcbcc10ed6010b29870b4da13f201cb0ad42a1bf8411b19ac864feed677f4b169daebe21a1ecd9194bcec94ef6e79c8ea
en-GB|64|e4ab0ea2f1a1f58066ac56156ced7fc412b6d55c4d533142f15d6f37f20bc8c0d7db9af8ab4782ee01e911c36e9e04696f2a4b1c693858d2b8ed9a90cd445125
en-US|64|f2d91503798d8660e06991e08d6570ed353b6f8aa67a96af0caf9ff7755c51be870289663a9d6f045b0e42de6c1a2725defab9c16d649bf089ce15eb8583631b
es-AR|64|cf37405509edbb742c58dec7b8e71cd29fca35a07330a7f856da3c5803a1eede6003b19549524117bdc7b904ccc60d935057f1f9ae007f66b6720962e80d7ad0
es-ES|64|dcf3cf91530e243a475adbba7a048fef9be31e8aee45a0adeae034f138602a7412521efc5bb75b3af21f75db635539d6a2096691135ee9b220f30275b6c816d8
et|64|5586501f4750fa8d2cc4d15fc5c0d32d9b99eaf3a805460049485ee2fc17ec714b96a26d1f704febddbe0f7a3246f30130ed2b97a53741f7932c7b25e81f54f7
eu|64|134e5ac9cb9acf301dcb7c732345bc1c48143ac666c60f96abdb4bf2c2fdf1cae75f266455003d133771efb46d2f0b7789ec534968f6027f1767fa22b6d0d013
fi|64|f67564ad59f3fbd189c333d138dd6d6286ace0c46b9a9803880dd1e6f32d0dbc113a3a2aeeb4b24eb2f6b166bc6a006dc79198cd347cd72d961963ad35a38213
fr|64|a74b71ce33d0eb0a95b3f46eb49304b7a85beeeeb47954904b5e52884e6c23b661eeadb0762917638c4cb446ac5dc7c69152b76466a330fc8747b9fdcddcf598
fy-NL|64|8a13649be9be342dda27597c23f0462dbe6cffbe3ce9477bdc136d023536cb3333f4aef021ec7baf5674357e1af611fa82d647f9b65a65e3dbf933e2d9067aa4
ga-IE|64|d29115d80850f0c4cf85ea23c264a7f2890ba23a472ccc7e433ed43ca47902eac4432d70395fe78096e55504d89128b940e9751eb272d135954084f38595a661
gd|64|a60ea98e4b1caa7adb9814d973fa6b82a38ea6b7b6e11fdec27c6b5d8306ee6d3b01f30ead2776ced6257e4621e51df3f11dc24914299949f8c3e1acbebdab2f
gl|64|3aa7a2fa308c8624d1a9a64f79a7cb74a6a7e9dac632ce301d0f8130d052ac37dd3220b10d4204ae0b789aca8fe89d804d110b4d8fa9953ada5d861fa387f997
he|64|743576d0a3b9fc15c78997e5837308ede505f326056a9de76395601a101f2de71c21691866bc10de4f3139583f921954f82ee7cf78f5add4135127fae008582a
hr|64|9275901796eda000047bcdbcc884c448af75fbd5fa757727f59a8fa0092c9ca47bb3a4eed9b8620b703729f9a0a5484c03dfd33417c7aebf1c5e7d1da3c4da50
hsb|64|22773b1d8590e38c337a45bfd2080c9cfa52b197585b9e401b9291d9c182d9dbfe6086b460ebee79c66d3cc274c6faffc1aa9f3eef889371e561d3fd36a4717e
hu|64|b224e7a9d14e20b263294cb4bda1c662003df5ee151554a1b24340e71c778a23dbde43330ce3e827658c7d0394ce47abe96e04d5dc0761e9542bd434d4ed3826
hy-AM|64|b3b1c9a0f8b8f351ff7ac01a74e7f458fa9be1342b19476f11877c3c94f84ebeec5a3102a2b9b39b7002de812a293442aee88f4ac9f9afd9758dfb9aa947fd07
id|64|4ae913c0b508bf64aa17f4ec6369040bd7ff24fc97add248050a829a126ab90a1ff7da746bc1687c56df94767255733b19edd0b8696f49f978bf43368ffe2474
is|64|693247f5d28df2e38f0e3e2351fb8cf27118e8a804cabd38d1e3f9e08c725c39ddc71fa1ca0ef509c15378c6d1edc55396ec8e42e549948de1839fb3b439f4f7
it|64|a36215703103d4ad49cd6c0b4a049b3f17edf35b131c67773caec1e92e59ca09aacb0dc9052007759d4f43834a8be1d2355490ffb6c1a61029e5748100e5910e
ja|64|f2c111ec080b8587c6dccae05c843a80b205d46a514cda0151da09ceb62a0d8ac9cb8836d0ff13a00c49523a54d56b44b7d85ae4c377752d15c32fb116f59ec0
ka|64|524bce7534da8cd5be2c37963b05c0b89bbf88896f0194a7081b412294cc9ea2db58df7adf179001d503644f51bc993b37d7050855cfc7873efbc0102234fe3c
kab|64|9af32a8afc6c0bbd0dbd7e264937d7858582a2fa3c2ba741ec89ca351dbb3e9f6b702b9a57e56c6fc7540336a3e22725795443c15a4697ad0b9d3d6f104e04c1
kk|64|ae802081f1a8d309bffc96ef8d59e4deef9c2c373b0510e300827e4f478b959b2aa214e321b86672cd48ceee15121f8b54b165010dba2c2eb6ac543936acb04c
ko|64|068ea89bf5289802781731d8a221074c672e079f2c54753612cf7776d4cdb2956c4b6580d447f725af50cf2c47da6efad83a58a089f6dab392b7916a0da14399
lt|64|d01a9cbf92f8c67af4b49f2dcb9f05100f9731b96ff2112e9131b65f39b022326baefd0f01eb47621e9b30ae8a736c4e3ccb527fdc13bfde035b12c1a5f80748
ms|64|e63f48e5757e0acdd98d9ec81fa885bad90a1417931102ad33e36090a4ec7e6da13eca1989d10fd4847454077e48653cbb3fb95dc1c426786704ac8484274a81
nb-NO|64|c8e36cfdb5dd248625db22155041185524336fb10a345f429cc438c9645dd07db74778e77bb3f720a676270938f85e4924f4d92995143bb0f663ab49207b9f10
nl|64|71e2e091f2cc1244fe8f3266f4ead5eff090ef3c5cdff4e2b3f7485e2d8dd9400f4bd37151dae8127baff29ef10aa92da04f3c3111693782268f2ddd097f5ebb
nn-NO|64|f0f99ae77c2e0e25200282df7ccd9a5d84cb0dc7b05fdb97b6eacaf962a54d2e39b733f135b535c55d160f323194c9f40f64a7a1b0ad2fb063332d665aea6aae
pl|64|05f51965cf4cdfe308cdd96b50c0ef3cb39beba54bd892a2dc7b4261705235cc08a56d7f1822e7af9c9cba17de0de4f3b5a76c5eb66abdd6dc17d33e4a71a716
pt-BR|64|03729920d37a0b35115b59471917bec48a0f224559e8392875a6cd768cb36f4b22d82887f7ee0059b1d1384f482ab332e49a0eeb25926e700ac95d5827b21914
pt-PT|64|07f8ca13fafdbcafd52565128ab6303bd2996c36ddb3bbc343fb5494e44874aa8f7fd8a278c04ea068b1ac7152248a8aa19e3efd39a7f65123852dadbfb29542
rm|64|f41879bf5b368ec3b14872d2df0df250e6bcadb67907894ed61e5b3409f7cefbb30a0b70ae0c41617aed6533a848115c70666949f7f69ab0739f022dc62eb43a
ro|64|1e4f6f81898a216c6c44a2dff77fde57bbb7502b73c205348fc8eabddbc78479066603332c38c39af9c396f5ff6cab2a85a514f37eb8534ce8d54ecaab3513b7
ru|64|8fd4e4157920ea57b2b9696b57752aa17edc17ac86aa987df4bdcf38ba9e22c092926b2240e5a445fc277b1516ce8581dbdffc5f417b298bb5239e4dbe542c1f
si|64|0439406f34b15eba689412c7356b87c83ee15b758e14232b3b2a4590a83a5535d1af7f7227b792b2273ac814311353787c938df06e77770364a16fa5b11d842f
sk|64|9963009f97d2613ae65a114545862a0c5f7e267c01b4ad76f125616ad1726711fb39458e31d5789d1449d9270cb04e6fa471ed55136108d6661fcb456a786ac8
sl|64|0015366055db36616f1328e70fa1f7fa0636b055ebcdaf994deffda1d1d0c81a9df7e1a1586135db622fc5ec9a657806d5909b006f86954a18e64739e9f03d32
sq|64|74051ff51f29dba15146b7cc549d2cc1c32f2ebc1a06dd9a09a939fc7be99007ef46661f1534c7c8609f229ecc8504c49878a22a759ea2d1271026d20841f542
sr|64|8f4f8baf6a67e0683df07296032d0aad4a884e705f392b193c55fc70f42765be5eccaef556f64d9b15946369e0d2098ecac851484e01600ac919efb49db0321f
sv-SE|64|d00af2818b8c2d09dc11ca7ae6c8b904b9928afa2216644ce82fd9651e360e38d126919d1c2e8a09b9fa36ab79a4307e4d6374021b0f33af9805759bdb6b4d67
tr|64|f3eca17a7038aef6de0620367175d26eff036a2604a0694b8bffea97283afdb5701edda4afcc31d7276d5c9883dbdbc2c306409976e2adc3e8e641f43fb924e2
uk|64|7c5ac15abc0e1e8f93a4174531c8cdfa969b439a2ef954f668791bdf7d7a72bbe4d64c373ce2e209d25b8d524e065ab0053ddfa2806cc2b663fe499fd010a814
uz|64|12cb06ab36b71196d0a67a9a295a1e87fc035e44c0f7a6337d1ebe9827d509b83e0263d3e2824423a89bd1c626f8c850fd39b92fa40c4a58910874869a7959c5
vi|64|8db743fb8b74171dd5dfb0ad5f1a20dec0f04c315b9086259cd7f30bec715146312d91f5d324d50c3346f58605fb97f0a873d1b4a06901930db82b8814efba6b
zh-CN|64|40d921ee4e33e8ebcee0ee7817d0dab60d4184b1972855c8940f7534ed5367bb6f4eef6b2ac2541b821857b4c369183552962cea4b6b8260f00d3563e8ffb35e
zh-TW|64|6f563a000ad4fabfc2d8c0f5b650800de7e5e5760063c4e9fc08bcaa93159bd27aa58d48b01b58dd52ea4649c7cf072047e166b1b64c16dba0e99af8825b52bb

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 27792 Tuesday, March 5, 2024 Approved
Mozilla Thunderbird 115.8.0 27112 Wednesday, February 21, 2024 Approved
Mozilla Thunderbird 115.7.0 36209 Wednesday, January 24, 2024 Approved
Mozilla Thunderbird 115.6.1 27360 Tuesday, January 9, 2024 Approved
Mozilla Thunderbird 115.6.0 29835 Tuesday, December 19, 2023 Approved
Mozilla Thunderbird 115.5.2 22365 Tuesday, December 12, 2023 Approved
Mozilla Thunderbird 115.5.1 27032 Tuesday, November 28, 2023 Approved
Mozilla Thunderbird 115.5.0 18696 Wednesday, November 22, 2023 Approved
Mozilla Thunderbird 115.4.3 20176 Wednesday, November 15, 2023 Approved
Mozilla Thunderbird 115.4.2 22743 Wednesday, November 8, 2023 Approved
Mozilla Thunderbird 115.4.1 25988 Thursday, October 26, 2023 Approved
Mozilla Thunderbird 115.3.3 20805 Wednesday, October 18, 2023 Approved
Mozilla Thunderbird 115.3.2 22130 Wednesday, October 11, 2023 Approved
Mozilla Thunderbird 115.3.1 24333 Friday, September 29, 2023 Approved
Mozilla Thunderbird 115.3.0 12346 Wednesday, September 27, 2023 Approved
Mozilla Thunderbird 115.2.3 19520 Thursday, September 21, 2023 Approved
Mozilla Thunderbird 115.2.2 21636 Wednesday, September 13, 2023 Approved
Mozilla Thunderbird 115.2.1 6744 Tuesday, September 12, 2023 Approved
Mozilla Thunderbird 115.2.0 25410 Wednesday, August 30, 2023 Approved
Mozilla Thunderbird 115.1.1 25976 Wednesday, August 16, 2023 Approved
Mozilla Thunderbird 115.1.0 24911 Wednesday, August 2, 2023 Approved
Mozilla Thunderbird 115.0.1 26993 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 11220 Thursday, May 25, 2023 Approved
Mozilla Thunderbird 102.11.0 27747 Wednesday, May 10, 2023 Approved
Mozilla Thunderbird 102.10.1 29000 Tuesday, April 25, 2023 Approved
Mozilla Thunderbird 102.10.0 27105 Tuesday, April 11, 2023 Approved
Mozilla Thunderbird 102.9.1 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 21416 Wednesday, February 8, 2023 Approved
Mozilla Thunderbird 102.7.1 19913 Wednesday, February 1, 2023 Approved
Mozilla Thunderbird 102.7.0 24091 Friday, January 20, 2023 Approved
Mozilla Thunderbird 102.6.1 36185 Wednesday, December 21, 2022 Approved
Mozilla Thunderbird 102.6.0 20234 Wednesday, December 14, 2022 Approved
Mozilla Thunderbird 102.5.1 25085 Thursday, December 1, 2022 Approved
Mozilla Thunderbird 102.5.0 26019 Wednesday, November 16, 2022 Approved
Mozilla Thunderbird 102.4.2 24254 Friday, November 4, 2022 Approved
Mozilla Thunderbird 102.4.1 20784 Thursday, October 27, 2022 Approved
Mozilla Thunderbird 102.4.0 16158 Thursday, October 20, 2022 Approved
Mozilla Thunderbird 102.3.3 20297 Wednesday, October 12, 2022 Approved
Mozilla Thunderbird 102.3.2 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 23179 Thursday, September 8, 2022 Approved
Mozilla Thunderbird 102.2.1 17980 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 22309 Wednesday, April 6, 2022 Approved
Mozilla Thunderbird 91.7.0 30208 Thursday, March 10, 2022 Approved
Mozilla Thunderbird 91.6.2 14306 Sunday, March 6, 2022 Approved
Mozilla Thunderbird 91.6.1 23246 Friday, February 18, 2022 Approved
Mozilla Thunderbird 91.6.0 19925 Wednesday, February 9, 2022 Approved
Mozilla Thunderbird 91.5.1 23607 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 17812 Thursday, October 14, 2021 Approved
Mozilla Thunderbird 91.2.0 19157 Friday, October 8, 2021 Approved
Mozilla Thunderbird 91.1.2 22912 Tuesday, September 28, 2021 Approved
Mozilla Thunderbird 91.1.1 21684 Friday, September 17, 2021 Approved
Mozilla Thunderbird 91.1.0 20824 Tuesday, September 7, 2021 Approved
Mozilla Thunderbird 91.0.3 20663 Thursday, August 26, 2021 Approved
Mozilla Thunderbird 91.0.2 10469 Monday, August 23, 2021 Approved
Mozilla Thunderbird 91.0.1 14191 Tuesday, August 17, 2021 Approved
Mozilla Thunderbird 78.12.0 28781 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31889 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 18523 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 18872 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22957 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17626 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20304 Tuesday, January 12, 2021 Approved
Mozilla Thunderbird 78.6.0 20519 Monday, December 21, 2020 Approved
Mozilla Thunderbird 78.5.1 20564 Friday, December 4, 2020 Approved
Mozilla Thunderbird 78.5.0 18712 Thursday, November 19, 2020 Approved
Mozilla Thunderbird 78.4.3 14891 Wednesday, November 11, 2020 Approved
Mozilla Thunderbird 78.4.2 10861 Tuesday, November 10, 2020 Approved
Mozilla Thunderbird 78.4.1 9262 Friday, November 6, 2020 Approved
Mozilla Thunderbird 78.4.0 20203 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11714 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17161 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16192 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5292 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18567 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16592 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9563 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18423 Saturday, August 8, 2020 Approved
Mozilla Thunderbird 78.1.0 10123 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14036 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10393 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17188 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22046 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14085 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18415 Tuesday, May 5, 2020 Approved
Mozilla Thunderbird 68.7.0 21867 Thursday, April 9, 2020 Approved
Mozilla Thunderbird 68.6.0 19682 Friday, March 13, 2020 Approved
Mozilla Thunderbird 68.5.0 28026 Wednesday, February 12, 2020 Approved
Mozilla Thunderbird 68.4.2 21219 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18626 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18169 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13338 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 34977 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16905 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12470 Wednesday, October 23, 2019 Approved
Mozilla Thunderbird 68.1.2 17503 Thursday, October 10, 2019 Approved
Mozilla Thunderbird 68.1.1 17706 Wednesday, September 25, 2019 Approved
Mozilla Thunderbird 68.1.0 17546 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 25986 Wednesday, August 28, 2019 Approved
Mozilla Thunderbird 60.8.0 34700 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18394 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11125 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20023 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45019 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8110 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11749 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8085 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9103 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4665 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10665 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15305 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9159 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9232 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11040 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10554 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16916 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24438 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15821 Wednesday, July 11, 2018 Approved
Mozilla Thunderbird 52.9.0 7457 Wednesday, July 4, 2018 Approved
Mozilla Thunderbird 52.8.0 18799 Wednesday, May 23, 2018 Approved
Mozilla Thunderbird 52.7.0 20345 Saturday, March 24, 2018 Approved
Mozilla Thunderbird 52.6.0 23728 Friday, January 26, 2018 Approved
Mozilla Thunderbird 52.5.2 16329 Friday, December 22, 2017 Approved
Mozilla Thunderbird 52.5.0 14511 Friday, November 24, 2017 Approved
Mozilla Thunderbird 52.4.0 19508 Monday, October 9, 2017 Approved
Mozilla Thunderbird 52.3.0 17550 Thursday, August 17, 2017 Approved
Mozilla Thunderbird 52.2.1 12710 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 6002 Thursday, June 15, 2017 Approved
Mozilla Thunderbird 52.1.1 9438 Tuesday, May 16, 2017 Approved
Mozilla Thunderbird 52.1.0 6389 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7225 Saturday, April 15, 2017 Approved
Mozilla Thunderbird 52.0 3993 Monday, April 10, 2017 Approved
Mozilla Thunderbird 45.8.0 8813 Tuesday, March 7, 2017 Approved
Mozilla Thunderbird 45.7.1 8730 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5623 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7041 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11791 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2135 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2313 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 2219 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12296 Tuesday, October 4, 2016 Approved
Mozilla Thunderbird 45.3.0 34634 Wednesday, August 31, 2016 Approved
Mozilla Thunderbird 45.2.0 52856 Sunday, July 10, 2016 Approved
Mozilla Thunderbird 45.1.1 553 Monday, May 30, 2016 Approved
Mozilla Thunderbird 45.1.0 460 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 437 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7792 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5837 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6096 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2779 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5539 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5679 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5538 Friday, August 14, 2015 Approved
Mozilla Thunderbird 38.1.0 3974 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3299 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1882 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3653 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 788 Friday, April 3, 2015 Approved
Mozilla Thunderbird 31.5.0 2894 Tuesday, February 24, 2015 Approved
Mozilla Thunderbird 31.4.0 2555 Tuesday, January 13, 2015 Approved
Mozilla Thunderbird 31.3.0 2429 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2433 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1463 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1071 Wednesday, September 10, 2014 Approved
Mozilla Thunderbird 31.1.0 985 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1542 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1506 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1546 Tuesday, April 29, 2014 Approved
Mozilla Thunderbird 24.4.0 1509 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1095 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 510 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 874 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 619 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 628 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 625 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 600 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 664 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 596 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 582 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 17.0.5 554 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 16.0.1.2 689 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 444 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 459 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