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,521,532

Downloads of v 52.0:

3,995

Last Update:

10 Apr 2017

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

52.0 | Updated: 10 Apr 2017

Downloads:

3,521,532

Downloads of v 52.0:

3,995

Software Author(s):

  • Mozilla

Mozilla Thunderbird 52.0

This is not the latest version of Mozilla Thunderbird available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

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

>

Deployment Method:

NOTE

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

1. Enter Your Internal Repository Url

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


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

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

3. Copy Your Script

choco upgrade thunderbird -y --source="'INTERNAL REPO URL'" --version="'52.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="'52.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: '52.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  '52.0'
end

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


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

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


package { 'thunderbird':
  ensure   => '52.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.

WARNING

There are versions of this package awaiting moderation . See the Version History section below.

Package Approved

This package was approved as a trusted package on 10 Apr 2017.

Description

Thunderbird is a free email application that’s easy to set up and customize – and it’s loaded with great features!

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".
    To get a list of all available locales have a look at http://releases.mozilla.org/pub/thunderbird/releases/latest/README.txt.
  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”

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'

$allLocalesListURL = 'https://www.mozilla.org/en-US/thunderbird/all/'

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

if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {
  Write-Output $(
    "Thunderbird is already installed. " +
    'No need to download an re-install again.'
  )
} else {

  $locale = GetLocale -localeUrl $allLocalesListURL -product $softwareName
  $checksums = GetChecksums -language $locale -checksumFile "$toolsPath\LanguageChecksums"

  $packageArgs = @{
    packageName = $packageName
    fileType = 'exe'
    softwareName = "$softwareName*"

    Checksum = $checksums.Win32
    ChecksumType = 'sha512'
    Url = "https://download.mozilla.org/?product=thunderbird-52.0-SSL&os=win&lang=${locale}"

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

  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 | % {
    $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 | % {Write-Warning "- $($_.DisplayName)"}
}
tools\helpers.ps1
function GetUninstallPath() {
  param(
    [Parameter(Mandatory = $true)]
    [string]$product
  )
  $regUninstallDir = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\'
  $regUninstallDirWow64 = 'HKLM:\SOFTWARE\Wow432Node\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 -first 1
  return $uninstallPath
}

function GetLocale {
  param(
    [Parameter(Mandatory = $true)]
    [string]$localeUrl,
    [Parameter(Mandatory = $true)]
    [string]$product
  )
  $availableLocales = Get-WebContent $localeUrl 2>$null

  $packageParameters = $env:chocolateyPackageParameters

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

  $argumentMap = ConvertFrom-StringData $packageParameters
  $localeFromPackageParameters = $argumentMap.Item('l')

  $uninstallPath = GetUninstallPath -product $product

  $alreadyInstalledLocale = $uninstallPath -replace ".+\s([a-zA-Z\-]+)\)",'$1'

  $systemLocalizeAndCountry = (Get-Culture).Name
  $systemLocaleTwoLetter = (Get-Culture).TwoLetterISOLanguageName
  $fallbackLocale = 'en-US'

  $locales = $localeFromPackageParameters, $alreadyInstalledLocale, `
    $systemLocalizeAndCountry, $systemLocaleTwoLetter, $fallbackLocale

    foreach ($locale in $locales) {
      $localeMatch = $availableLocales -match "os=win&lang=$locale`"" | select -first 1
      if ($localeMatch -and $locale -ne $null) {
        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-ProcessorBits 64

  if (-Not $systemIs64bit) {
    return $false
  }

  $registryPaths = @(
    'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall'
    'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall'
  )

  $installedVersions = Get-ChildItem $registryPaths | ? { $_.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 -last 1
  $checksum64 = ($checksumContent -match "$language\|64") -split '\|' | select -last 1

  return @{
    "Win32" = $checksum32
    "Win64" = $checksum64
  }
}
tools\LanguageChecksums
 

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

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

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Mozilla Thunderbird 115.10.2 2 Wednesday, May 1, 2024 Pending Automated Review
Mozilla Thunderbird 115.10.0 11891 Wednesday, April 17, 2024 Approved
Mozilla Thunderbird 115.9.0 34018 Tuesday, March 19, 2024 Approved
Mozilla Thunderbird 115.8.1 27794 Tuesday, March 5, 2024 Approved
Mozilla Thunderbird 115.8.0 27117 Wednesday, February 21, 2024 Approved
Mozilla Thunderbird 115.7.0 36212 Wednesday, January 24, 2024 Approved
Mozilla Thunderbird 115.6.1 27362 Tuesday, January 9, 2024 Approved
Mozilla Thunderbird 115.6.0 29837 Tuesday, December 19, 2023 Approved
Mozilla Thunderbird 115.5.2 22366 Tuesday, December 12, 2023 Approved
Mozilla Thunderbird 115.5.1 27033 Tuesday, November 28, 2023 Approved
Mozilla Thunderbird 115.5.0 18697 Wednesday, November 22, 2023 Approved
Mozilla Thunderbird 115.4.3 20177 Wednesday, November 15, 2023 Approved
Mozilla Thunderbird 115.4.2 22747 Wednesday, November 8, 2023 Approved
Mozilla Thunderbird 115.4.1 25997 Thursday, October 26, 2023 Approved
Mozilla Thunderbird 115.3.3 20806 Wednesday, October 18, 2023 Approved
Mozilla Thunderbird 115.3.2 22131 Wednesday, October 11, 2023 Approved
Mozilla Thunderbird 115.3.1 24334 Friday, September 29, 2023 Approved
Mozilla Thunderbird 115.3.0 12348 Wednesday, September 27, 2023 Approved
Mozilla Thunderbird 115.2.3 19522 Thursday, September 21, 2023 Approved
Mozilla Thunderbird 115.2.2 21643 Wednesday, September 13, 2023 Approved
Mozilla Thunderbird 115.2.1 6745 Tuesday, September 12, 2023 Approved
Mozilla Thunderbird 115.2.0 25411 Wednesday, August 30, 2023 Approved
Mozilla Thunderbird 115.1.1 25977 Wednesday, August 16, 2023 Approved
Mozilla Thunderbird 115.1.0 24914 Wednesday, August 2, 2023 Approved
Mozilla Thunderbird 115.0.1 27005 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23756 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 15992 Saturday, July 8, 2023 Approved
Mozilla Thunderbird 102.12.0 35798 Thursday, June 8, 2023 Approved
Mozilla Thunderbird 102.11.2 24973 Saturday, May 27, 2023 Approved
Mozilla Thunderbird 102.11.1 11221 Thursday, May 25, 2023 Approved
Mozilla Thunderbird 102.11.0 27748 Wednesday, May 10, 2023 Approved
Mozilla Thunderbird 102.10.1 29001 Tuesday, April 25, 2023 Approved
Mozilla Thunderbird 102.10.0 27106 Tuesday, April 11, 2023 Approved
Mozilla Thunderbird 102.9.1 26548 Wednesday, March 29, 2023 Approved
Mozilla Thunderbird 102.9.0 25478 Thursday, March 16, 2023 Approved
Mozilla Thunderbird 102.8.0 35690 Thursday, February 16, 2023 Approved
Mozilla Thunderbird 102.7.2 21418 Wednesday, February 8, 2023 Approved
Mozilla Thunderbird 102.7.1 19914 Wednesday, February 1, 2023 Approved
Mozilla Thunderbird 102.7.0 24092 Friday, January 20, 2023 Approved
Mozilla Thunderbird 102.6.1 36188 Wednesday, December 21, 2022 Approved
Mozilla Thunderbird 102.6.0 20235 Wednesday, December 14, 2022 Approved
Mozilla Thunderbird 102.5.1 25086 Thursday, December 1, 2022 Approved
Mozilla Thunderbird 102.5.0 26020 Wednesday, November 16, 2022 Approved
Mozilla Thunderbird 102.4.2 24255 Friday, November 4, 2022 Approved
Mozilla Thunderbird 102.4.1 20785 Thursday, October 27, 2022 Approved
Mozilla Thunderbird 102.4.0 16159 Thursday, October 20, 2022 Approved
Mozilla Thunderbird 102.3.3 20298 Wednesday, October 12, 2022 Approved
Mozilla Thunderbird 102.3.2 18375 Friday, October 7, 2022 Approved
Mozilla Thunderbird 102.3.1 18883 Thursday, September 29, 2022 Approved
Mozilla Thunderbird 102.3.0 19813 Wednesday, September 21, 2022 Approved
Mozilla Thunderbird 102.2.2 23180 Thursday, September 8, 2022 Approved
Mozilla Thunderbird 102.2.1 17982 Thursday, September 1, 2022 Approved
Mozilla Thunderbird 102.2.0 19358 Tuesday, August 23, 2022 Approved
Mozilla Thunderbird 102.1.2 22228 Tuesday, August 9, 2022 Approved
Mozilla Thunderbird 102.1.1 11475 Saturday, August 6, 2022 Approved
Mozilla Thunderbird 102.1.0 17234 Friday, July 29, 2022 Approved
Mozilla Thunderbird 102.0.3 18720 Wednesday, July 20, 2022 Approved
Mozilla Thunderbird 102.0.2 19774 Tuesday, July 12, 2022 Approved
Mozilla Thunderbird 102.0.1 14112 Thursday, July 7, 2022 Approved
Mozilla Thunderbird 102.0 20686 Wednesday, June 29, 2022 Approved
Mozilla Thunderbird 91.10.0 31588 Wednesday, June 1, 2022 Approved
Mozilla Thunderbird 91.9.1 21174 Friday, May 20, 2022 Approved
Mozilla Thunderbird 91.9.0 26200 Wednesday, May 4, 2022 Approved
Mozilla Thunderbird 91.8.1 24076 Tuesday, April 19, 2022 Approved
Mozilla Thunderbird 91.8.0 22311 Wednesday, April 6, 2022 Approved
Mozilla Thunderbird 91.7.0 30210 Thursday, March 10, 2022 Approved
Mozilla Thunderbird 91.6.2 14308 Sunday, March 6, 2022 Approved
Mozilla Thunderbird 91.6.1 23247 Friday, February 18, 2022 Approved
Mozilla Thunderbird 91.6.0 19927 Wednesday, February 9, 2022 Approved
Mozilla Thunderbird 91.5.1 23608 Tuesday, January 25, 2022 Approved
Mozilla Thunderbird 91.5.0 22090 Wednesday, January 12, 2022 Approved
Mozilla Thunderbird 91.4.1 25560 Monday, December 20, 2021 Approved
Mozilla Thunderbird 91.4.0.20211214 16786 Tuesday, December 14, 2021 Approved
Mozilla Thunderbird 91.4.0 18884 Tuesday, December 7, 2021 Approved
Mozilla Thunderbird 91.3.2 27012 Friday, November 19, 2021 Approved
Mozilla Thunderbird 91.3.1 14273 Tuesday, November 16, 2021 Approved
Mozilla Thunderbird 91.3.0 22532 Wednesday, November 3, 2021 Approved
Mozilla Thunderbird 91.2.1 22516 Friday, October 22, 2021 Approved
Mozilla Thunderbird 91.2.0.20211014 17813 Thursday, October 14, 2021 Approved
Mozilla Thunderbird 91.2.0 19158 Friday, October 8, 2021 Approved
Mozilla Thunderbird 91.1.2 22913 Tuesday, September 28, 2021 Approved
Mozilla Thunderbird 91.1.1 21685 Friday, September 17, 2021 Approved
Mozilla Thunderbird 91.1.0 20825 Tuesday, September 7, 2021 Approved
Mozilla Thunderbird 91.0.3 20664 Thursday, August 26, 2021 Approved
Mozilla Thunderbird 91.0.2 10470 Monday, August 23, 2021 Approved
Mozilla Thunderbird 91.0.1 14193 Tuesday, August 17, 2021 Approved
Mozilla Thunderbird 78.12.0 28783 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31890 Thursday, June 3, 2021 Approved
Mozilla Thunderbird 78.10.2 21028 Tuesday, May 18, 2021 Approved
Mozilla Thunderbird 78.10.1 19259 Wednesday, May 5, 2021 Approved
Mozilla Thunderbird 78.10.0 20993 Monday, April 19, 2021 Approved
Mozilla Thunderbird 78.9.1 18525 Friday, April 9, 2021 Approved
Mozilla Thunderbird 78.9.0 19267 Wednesday, March 24, 2021 Approved
Mozilla Thunderbird 78.8.1 21143 Tuesday, March 9, 2021 Approved
Mozilla Thunderbird 78.8.0 18877 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22958 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17629 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20306 Tuesday, January 12, 2021 Approved
Mozilla Thunderbird 78.6.0 20521 Monday, December 21, 2020 Approved
Mozilla Thunderbird 78.5.1 20568 Friday, December 4, 2020 Approved
Mozilla Thunderbird 78.5.0 18716 Thursday, November 19, 2020 Approved
Mozilla Thunderbird 78.4.3 14894 Wednesday, November 11, 2020 Approved
Mozilla Thunderbird 78.4.2 10863 Tuesday, November 10, 2020 Approved
Mozilla Thunderbird 78.4.1 9265 Friday, November 6, 2020 Approved
Mozilla Thunderbird 78.4.0 20208 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11718 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17165 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16196 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5295 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18572 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16597 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9566 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18426 Saturday, August 8, 2020 Approved
Mozilla Thunderbird 78.1.0 10127 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14039 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10396 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17194 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22052 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14088 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18419 Tuesday, May 5, 2020 Approved
Mozilla Thunderbird 68.7.0 21871 Thursday, April 9, 2020 Approved
Mozilla Thunderbird 68.6.0 19685 Friday, March 13, 2020 Approved
Mozilla Thunderbird 68.5.0 28029 Wednesday, February 12, 2020 Approved
Mozilla Thunderbird 68.4.2 21222 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18627 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18173 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13341 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 34982 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16907 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12473 Wednesday, October 23, 2019 Approved
Mozilla Thunderbird 68.1.2 17508 Thursday, October 10, 2019 Approved
Mozilla Thunderbird 68.1.1 17710 Wednesday, September 25, 2019 Approved
Mozilla Thunderbird 68.1.0 17548 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 25991 Wednesday, August 28, 2019 Approved
Mozilla Thunderbird 60.8.0 34705 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18397 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11129 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20026 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45024 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8113 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11754 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8088 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9107 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4668 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10668 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15309 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9162 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9238 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11044 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10556 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16920 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24440 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15826 Wednesday, July 11, 2018 Approved
Mozilla Thunderbird 52.9.0 7460 Wednesday, July 4, 2018 Approved
Mozilla Thunderbird 52.8.0 18802 Wednesday, May 23, 2018 Approved
Mozilla Thunderbird 52.7.0 20348 Saturday, March 24, 2018 Approved
Mozilla Thunderbird 52.6.0 23731 Friday, January 26, 2018 Approved
Mozilla Thunderbird 52.5.2 16332 Friday, December 22, 2017 Approved
Mozilla Thunderbird 52.5.0 14513 Friday, November 24, 2017 Approved
Mozilla Thunderbird 52.4.0 19509 Monday, October 9, 2017 Approved
Mozilla Thunderbird 52.3.0 17554 Thursday, August 17, 2017 Approved
Mozilla Thunderbird 52.2.1 12714 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 6007 Thursday, June 15, 2017 Approved
Mozilla Thunderbird 52.1.1 9441 Tuesday, May 16, 2017 Approved
Mozilla Thunderbird 52.1.0 6391 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7229 Saturday, April 15, 2017 Approved
Mozilla Thunderbird 52.0 3995 Monday, April 10, 2017 Approved
Mozilla Thunderbird 45.8.0 8816 Tuesday, March 7, 2017 Approved
Mozilla Thunderbird 45.7.1 8736 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5626 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7046 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11795 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2139 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2318 Monday, November 28, 2016 Approved
Mozilla Thunderbird 45.5.0 4825 Monday, November 21, 2016 Approved
Mozilla Thunderbird 45.4.0.20161024 8495 Monday, October 24, 2016 Approved
Mozilla Thunderbird 45.4.0.20161023 2222 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12300 Tuesday, October 4, 2016 Approved
Mozilla Thunderbird 45.3.0 34637 Wednesday, August 31, 2016 Approved
Mozilla Thunderbird 45.2.0 52860 Sunday, July 10, 2016 Approved
Mozilla Thunderbird 45.1.1 557 Monday, May 30, 2016 Approved
Mozilla Thunderbird 45.1.0 464 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 440 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7796 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5840 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6099 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2783 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5543 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5683 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5541 Friday, August 14, 2015 Approved
Mozilla Thunderbird 38.1.0 3978 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3302 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1884 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3658 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 790 Friday, April 3, 2015 Approved
Mozilla Thunderbird 31.5.0 2897 Tuesday, February 24, 2015 Approved
Mozilla Thunderbird 31.4.0 2557 Tuesday, January 13, 2015 Approved
Mozilla Thunderbird 31.3.0 2432 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2440 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1468 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1075 Wednesday, September 10, 2014 Approved
Mozilla Thunderbird 31.1.0 988 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1545 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1509 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1551 Tuesday, April 29, 2014 Approved
Mozilla Thunderbird 24.4.0 1512 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1098 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 515 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 877 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 628 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 632 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 628 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 603 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 673 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 601 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 587 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 17.0.5 557 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 16.0.1.2 693 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 447 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 466 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