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,450,522

Downloads of v 60.5.2:

8,082

Last Update:

26 Feb 2019

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

60.5.2 | Updated: 26 Feb 2019

Downloads:

3,450,522

Downloads of v 60.5.2:

8,082

Software Author(s):

  • Mozilla

Mozilla Thunderbird 60.5.2

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="'60.5.2'" [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="'60.5.2'" 
$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: '60.5.2'
    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  '60.5.2'
end

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


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

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


package { 'thunderbird':
  ensure   => '60.5.2',
  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 27 Feb 2019.

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 '60.5.2')

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-60.5.2-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-60.5.2-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|4673fc40194f658c52aa5245964cde8b56aec043690cb1ae439cb55e1901c213a63537d17b3c4ac475ddb2d00aca479aab63dc9cb506f7603a72cab10ee9b78b
ast|32|03ef7451fa27a55bc0c3bffb9d5d54892a3b462961225ffc55f403210f14d9fbb416ce49aee52630e8f7d3dc12f9baad7406bf8bd72ff5ece99ea66ac9808e20
be|32|83531b6d48f295cca28395e9a85ac2128b262e6202766736fce359a26d3d1b9759e9e32b9d358f19cec030169cfb74304d2256b790b0b5080aea47b42db2bfc1
bg|32|a2c1d94757d48b27d157642e0eccd8382bcb0d99f2951775d331da0724659c55a04a0fce9def6d9853b2e657b19e3fd6c768386c9b2a3beae2ec48921dbdb095
br|32|7a2e5d2ad746f7e586c29a7374454332599cb005e929edbc5b7a0c67615fe8f0ac4eb147b8837b81c785febaf67d799f39781a8e5b709b83c1427781c230c2d2
ca|32|733c72823d3a9e325a407fbe9e7d039acf3a7a6a210fc1645ac5a166aacc8db526dcb19ced0512ac7b69431521bf8cfd0f3043bbd848931155575b41601d03d3
cs|32|eb86bdb51c7bf75fb70952f2bd87bbfdf97c7356174d35a6defb5f2d458e188d747d9718ee50bc1a7f2009fd808dec6173b7040b6d61fcc7b18ef18f228632d8
cy|32|1bd27bfdb039b97cf04147a5691ff230fc60bdfdf76b6a0b21f914b0fe990036de97b609599dccc5f41bdf64e114cc38634316dbab252f4c67ba8f5a5abaa203
da|32|0c0a2899652334bcbea2a0e0c65735ab023ae82fd5b96f6834d8e7f4c1e30453a13996395cf1e71a961c19b0998ac5ea45ab241724b5635f41da2336f16e9334
de|32|5d205f52723f483c48965b3298567cee4aef5076d7165cff6011f794f1df72b08f4c4453642026bb387f2a8ca7c8f473a1f761914eae9705635b006ef97b50aa
dsb|32|b9abfa4c5aa941d610ef119040093007e082ea8a114ad7c4fea80a88895d5427e129cb3799c61f20ded4945e1cde156e9daa2c04cafb1da4350c4a1b43ac1130
el|32|544f6b59e20a181cf6a440e3763fef0cef1e7a082538da8692b923e1d981a5078db51008e0251062a879addbf1281ba977b4d620224f56bdaa90f863bc0877a0
en-GB|32|9f91563c2bb23ea5cb3254d1fe46df377247878a2c641620e7f2fc91ae926ebcfb728e8af599e2c561d02e73a1eb04513e2e570141e635987db7e1947c0d6016
en-US|32|2c478b0b32fb0af92f7ca776e5e8ef0865b1d0716bcd2f014cebaf1e3a7d5dc09dcc1322998842e0cccef9a8a30d67c8b0ff80711fd6345f2bc3ad6cfe6847ea
es-AR|32|60d5b8ce61fccbd0338b7d4f43e665bafcf831d7e01dd3c8218ab6182a6f9e51c75720dbf4e6173ca1a388592771834dc58d13912445f419f661d2fdc1a094c3
es-ES|32|74ce4c1134de31397ecdea094511c33fec1ed0441df5729f4704e7850693f3924cc507bac2373180b02da7d631873083b1d9690e678977fdee5a2a15f9d47bc9
et|32|d5e7bb0b339c14d4e8df1b2800bcf927bbcefead12ab032527a83d2ad277b4eb2993524028c8ffd3c6c0260f86b3cfff8e1b02cd8ae2808a807396cd0662a1e7
eu|32|ffe7811b62028bb928b0043e3c6db3e17436d9c7ab6544be001e1125e5eff781f814e69160982abe78ef80250e7b1bc7514026cda3c955260a4fb906fc0b183a
fi|32|e05d4c48cc666090f0fe06cdd4bc8af36a55b4327a967071159e9380d1d6fb2399ed0c981dad4b7989028b7d3f5a86427f797683812928be5a9126609c5f96d9
fr|32|3dad26be60a3f419ca1a8d7c81c3945f5abd3330102a3b0625ca5c0ed974c89a2faf10f606015b674e1ed8aec9a76a90d10b7af12a4cf39575b1a79e90351908
fy-NL|32|6c93f8c316276142b954214d279d184f68fd44142df1ec569e3e25d10d193ee7c5e7eaaec36ee8e114bf898822b9d22eb751d0d80daca1dab8b1d4ac7f8fd721
ga-IE|32|8c9f5d26e58097103a08d00c3c33a62cacf04efd9ef77f7da1e7cf4a6b08a196158cdc21b09b57be0460fd1b851bcf22b5db3b5586243c985c89c53b747085b7
gd|32|4d955c67683ee29b6783679893c470d3ae25f6d62e59976d9d6520ef57c84ae5175fec2620997803ed95599c5042da3ac909a3cb0fadd96b51a9aa4bebc31498
gl|32|3082750744085ac19130a5c47355a5f4cbee6b8826cb3f938745e200ba12164aa23a66a5b553a64d752896e2dae97e9882bce76989484fc96e8cead4e5c76ca0
he|32|58cd9fa60abdb8a3f754b8916d4fcb599aaf92370835e72a960a17875073c8f89787b2c9074def58466bfb5c9d02acabbcd84edc6a1d67d27f69fc9a7677dd79
hr|32|4fa0406c352c0cb46de5017bbb9373ed0cd749ab4da1d422228c7e869cad2f603e0f6164ed5afbdad5e457daccb760e124b0d2a5f4d25f5ad0b38b2ae01628a9
hsb|32|143c1dbe035e9791e0f674615fb7bd889ee401e4ff15340aefe302da7bbeb43c20e9294f3e3ebcbb8e743b2d7c7fcd57e5dbb45b6be7f5f8dc3ca5af90bb2e5d
hu|32|9447386c3308e6dcf58c3328df2a34f39ace577b7018db5498b63cf35c5a04cb00dfc7521f2cff02eed037c6d531ec8598431c99e1e2e193505bdd135092c530
hy-AM|32|55ef1261dd8f121ec147992fa7400ff667a75fbda6f2aebc0e31d96485a1f7967774153a09c2fbc3ad69b58f94cc8b4348d3e48db8a6ca218790e53978866d8e
id|32|35db7551fc56adeaa0dd1b0322bbc639018f3335f2b3a46a652a9847ac94b1ba549288dc9e5793cf25f94200f7c398f8acfb74de7a1dfe88a4cf1cdcf9ac442d
is|32|64c49a1dc49d486ad32ed1fdf556912146e1fd5cd777df0ad094626b1a2132e6fc8538e43c24d9ac15e80d78596dbd764c2c2b7f73d35bce740dd5472f8919c6
it|32|5db8a32dc1960071ffcaa4589fc3b5fe3d8259b42c83c3c5e5a51bae87cbf2c652e8b26ed9f12c9853a372a241e2ce124c14afaa556cad61a457985c8fa1d181
ja|32|7ce5fa2e831c8f98160eddd3e964feace3c621c91ba39c88c6b2ad4075f7b9c223285a1f9340378425956c7c4516ce684f45cbf27139c08c5af66e9e260a5663
kab|32|9accc99efd48720198cb97ac88088df594f5bdd018fcfef78d1f798e2bfbf6fc900c96b27e64a29349e7bd8a49f797f5770577e36f77da6dbf00a9f14daa50d3
kk|32|d93da3f4c7a2859c3093174a79ae83fb8df30e6586c645243a62738aacc3dd7fc30830a149a6674f2f1574d0c83fff6453c8c2fb72945440e9f10a63a2217101
ko|32|3f78e3cc15a8d0844c8b3b1d37e0ad51904796dea01f874984a680431f1e9100f4360fa44f0ea0f12db21346c018d7007bb8039e51ccb0add8df448d6f9272a8
lt|32|a86fadf3b64762669022c92558d946daf3abab2a45712801d3729777df434b1315a2be88db232136c958f7ef0d6c90ed22209abb6e2886b8eb380347e327cefc
ms|32|012715a98d2d8093449fcf1f3fc3697f648261304da7a85c273059c62767b19b23a1037d235065eaa99dfa5e6f6ac68d63aa3964986033b53e163d5ee40b0b61
nb-NO|32|ec5ee5bb0c690f43fe04e30bcfebd5d71926385b5899809bc7b1bffc4e790d85acdf9efcac539fe4e9265e6dc7b3c342700f70868a5059fc6badf99fa9b1ff9f
nl|32|ddb782e76beb0527bf98da88e9ac94e3734fa062805eeca7203eef2482a6c75b956b1834d7e1cdea6afe97dc6149e5c902a60bc61612b1f20caca222db8a7bfa
nn-NO|32|2aad6a5786f93f0776490d495f0d038977a66dc1a40cc50309f895399490ba261babef16f6a5f066d71b2d01c0b0c40082e1857c2e6800e9d09aa29f5796da12
pl|32|7b37f7332398fff66819b9e77e77d089b76d3d78683c4ed4f6f334e9057b2bbbfbe46007766f4011e8bd0c881a1d5d3dc313af87cc6722ebc3509453717f1230
pt-BR|32|c37760bb05d003f8571abf9099c3446652df5ffce7d5c30aed8ffe4d225e5dea302dcb58d96ba3fb74bc5a0af265f5859800215eb1a947e0e45094fdd294c1b7
pt-PT|32|56c1310c764bd31862a9ec21ddddcf97fbc1da6f55f3734ae010c9060dad60984f6a56a78c52f374ca52e7afef1542186b9d6fc621030eec6d029917e87dbd30
rm|32|4c4a818a423333fb61baaf5ae98cc760c406a38627c85850d8e13a1f7b03a3ed96bfbe7bd60816ea4addf51ea657b262079acffbab2954eb8aea692432ab237f
ro|32|32da1d7d2003b4c757abffd90b7ad61579a155aa6907c6be286bba8e1ce901ea6ab37a7bdd2bad0021601371e497c10a9f80a006e215c71c744d0add853f2b65
ru|32|d3d3400730751ed4816e5897b74223c724a26cfd764fb61a9b2ab38000261a3b80f1d8de4a6cba4a3d919d68badfb151ab32e48faa79cd997f3df6aaa6ac2f70
si|32|176ff1baa2c6e4662cda7f8c497efb4f0d98c118ae036e798386a9e7a3075b34c9c9c9f6c675c2c78f9a5ee611ef6b37347d3a54915e1da8832d9fb5e8fe0e5f
sk|32|0a6324219c1f0b2163fbed6e765d7ff85cc5a71482257d63d3b5f9e9fa36792de5984fe93f9b5de3e585d40034980b82b192843bcee2fb2c3e221b5670e10670
sl|32|db5d095dcce991708130af1abbabb5e39c5a4547def602ccea31fe342b722e10987d734eb40f1a059072faf6a70a4603875b35576365c05b41025121a583b3db
sq|32|b146ce0420107b7c43c8bb9add0d2e9497e983e19122692c7defdf01a474c58e70028e632f1331ae731384bf541ba2e8de82b3b66f0a72cd89f3c801269b3b00
sr|32|5bddcb4a360ac9da1349b8979c80f509fd0cef1403fd9d3f535b0b5cc64ef0a1489742e759da180413f5eff9be72d7831a6b8bb5e90fa08a625da6ff07fc806d
sv-SE|32|f10fbc063986c46e432dabac3acca504f4eb14e0d0cd0cac06c7693247b7a01b44f67082abf152d7100a5abd7a8258812428e2da8f7c0221c4be4195baee2192
tr|32|b02f0cd6f0dbdbd5ecba62fe4a74b953e1d1ffbbef4c16266faef45cb439d06530d902e4b10b251a23693d4cc7342eea8577d9c3dcc67bb0b38b6c103519d312
uk|32|1e0b4f2b67c924501a7009a5fedf5293afca55253039405f3158b00e45b3ead2e708cfd310f72740f6d36a0266def4b5fbeeeb1e7671e3c8c073f2c488491a10
vi|32|5b4815c4f106f57ac283dae93f0eda7f1dca7607bd61feac572e6fa1c7198507256b37707763753fa05076243b54776343ece9c4578b0fd47e4d34ed3452129c
zh-CN|32|069ff8c35f65a730ddf1d1def83e40a95d17010492eb5d144857c3f112d88e4ecc8dad742645927225fd26be0c24be6607c6b96e5381a283e250f5003af1df3f
zh-TW|32|481c73fde0204a56baf5a45ee1dab473a01e8abbf914a412e0d76d3f8c133bacb54b0615a70e8d81b2d060fcede01450e35d7191fc4ca70cc0f59c9664a09f98
ar|64|7ae5e8d5e1c60a74af7e0990116f8cdd392af46d98282bc744a4b4d4266e24a705d6d3b65eed86c2f56895fccd7d44b58ceb49d5b46e13bbaaca66be40eca120
ast|64|a8bf1069e405f07fcec70a3c568991fff16b3a03d98cb1fd6f61332b702c25e17378e101033d00fed692f95638304b657b11e7f8204b8ede584a0490eda37242
be|64|1ea48bf1187f427b14c05e8e38956e9f5e14a377b6a352a86e15e81ea57a8e2c36353d7ec2452f122c04a0800df8f8f753edc51e0ad8eea115eca94dccb6df99
bg|64|b0818ed443ba8291a9ce8d4ceaea6e1f0d80cbe123bf876d07bcd7e71b2178bb4af276067c9d4cdc1515f29c08fe51914419bf9eaee59370d5c73cc9131f96b5
br|64|4709a460124d81fb623f5f27d5f2e82cbed437e1c631a70d1b72438fd94927db82569139ba5f5a8697cc8b6c4ab753032e4803b016ea0e32484cb943cedf8aa5
ca|64|f919267943d0f57010d434fe7debcb682a3f9e16ea3f0c864e340b77f79a1fcaaf95d952b1034ec7c41ac051bf614613e793382e4cc045e46490f135e926b2e7
cs|64|e0d1d798ba9211dd07deb109dd7325c57dddcbaa40e70b2ac3d4713d3d9c320f12b2c2058f4e6d724cb9a3d7c0f6e64f8b544c4999881416264de4cad08926e0
cy|64|951a5d58314b726b15c0a60ff899d1f41552eac09634d365420e2e0859634df91da08f56ed9122ece4e9b24de78d6742cdc013111a472e7a6f6f13244cba8a5e
da|64|30e0982e86a5996cf39610e0e0cde0cd633c3cbb5a9411c5ae9431dda537f98363784671eae5e2ed03db24bab593378d581ddcc633248214934a2b1d2887dc89
de|64|5bd1487c088b3328b5a3fad7fc36f5a57273f2e17f380dadc5510c1fa980ec10cfb2c42bc6c95a88c2e717e6c059a8861c92718aa8fdbb224d8d21cea17a4c40
dsb|64|628113eff54041707e9ff74e7c90d651ae246869d5aebf6a5f8874a3252b10d2e306d5fdcff4b15cc4bee3139c902106a7ef6af305a1fe7c3472233f1984d825
el|64|e51294765d048162ebaaed1cc397bab8feaf3ad55fbca2a23a0630357703eaf315dea4ed57ee36f8c2976f6839b943f4ae3b6e1b87cb794235178458f18253d8
en-GB|64|423c92b06e1362d3322ab85a004ffb781afb3dd9cc356f44eab62f734e09897fc1f136ba1a6ce1461479907d000849fdcbf9b7d18968af1150b48fc6848956cb
en-US|64|02a57867f554a210eba79fad3489360ff62d0485b3490c197478eea57fb174228e57d2900b8a4d017722640786aa1f0dd38d967bb26fe01a60b391e3f1a0ff80
es-AR|64|5d5b071be212b3c3a24d1b5994ec0af2e38666cccbd53990ce170e072583be07d1a3d192a52d472563a6046ff0c555443bc9a7c88c9c7e110fd4036d27b21931
es-ES|64|aeaaa8c8c3ab7f907b37773f77272126500e967df7f995ffb4e64c6dac8272f8f7883842b75a659be549ea8ec9e8e26d780729d4ad338ba4d23f5bd4e2884dab
et|64|6f18a845409ab75d2999179b57423f4ab0460f31d4a364c7a10aa1b03213f0939a185e5af1deb751a768fa5ca903a9d05586e521a4a838462814d76bcd96ee15
eu|64|1805240438acaf2100c710a51cc6fe4e0a806017d5fc01a3b0fb228e100e08f6d58b365a6604e9596e51a3983438b7ef4ae4550e93fd9bfbbc9bddb9ed354b19
fi|64|cd8833fa2a248437864f90eb6d133df62cf0784f36e68f7f4751405dedbfd636dfcba5b720fccfee4be9d8dc04ded4d78ccc5e2d0c41d1ee7a3de9257597c2f2
fr|64|8d07243d35e17a87c1ec30bcfd94f5891a45d64c5b295d263b741b3b7a608e5490e412a8af7a412dbe7f9521c42d891ec3881adc6897b31daab9fed74ab80add
fy-NL|64|23b60e2fbcc3a8b8f24d50447b839a4981378fa930fd2879d7fe26c952b08c00c1707e77bfab12add95e15628d292b1af5dd56e7cd58349a91393ffe13d9e10f
ga-IE|64|8e3865ad731dd52bd7cd3fe4fe2057e198164b29b81422eee96b070e4dba98456f62bd87e79aba8202195e2de5f5a1bcc19eb26ddf9f8f3b71324669281b5d27
gd|64|3c20aab54b0200c91b72e250daec52bc99449c97bfb472d29d7d1e02b4bb147c74ab8f124d573645d249dd2b317cf02ee9ceafd1f9d0727c19671bac0b146ecb
gl|64|8aeb0e88556332e5d9a1adee4d3f0ad426a3d6569b73859572368faf96d02a1cd87ef43e6aff98ab3afd7f84fa35c5724040307b7b932ea70d037f0af7c0d52e
he|64|f3e3c3bd91c1fad81c0087a1dc525f36984bc1b0f2bb4a204c4b084bd291ed7f0d6d37d9a69a073f5b71eeb88d8b7f9a78d608204289527bcee715642a69b8a6
hr|64|1c5b34d0227c6f58aecc20d71df11d50bc672876fd62b920fcae996e7f176b3a89f0ce1cc3855867544ae7bc2ad43901bfc18ef5a6001ea52ca591281ee1afdd
hsb|64|fef3604ec7655035be23fe683f0aa3c569a0d2034656e3248a03cb7a8d26e11efcaaabb1fdb125c410372ef7de71575827aea9aafcdf6aa958ed5a1a74c15894
hu|64|f077f8e7e05499ace7df8b9f2400cb9d46a848972bf0cf722cb51f51c596a3667dce15a8aa3ddb56ba49a748633b40b6ca225019f3763ce41550bee864c3314a
hy-AM|64|72d9c7839e97ab9f5f109e00521a2768ab74d199026672eb330c5f25cce131a156580ff829c8ba7e703ff6000c7dde293fdc755d8b5ee91600dee5f8a84fb010
id|64|95ea3fc8a500a56df8b08909133756f8535cb77eba41ea096a4d4b075fff9f25e5ef5008b02bab21dac230ee4013bf8f91334f64425f888a46ad33e668e6924b
is|64|d903c7e59c45a0ca2bea23453b148f5ba16d35148f255a26efb87dcda74c92c304fd5c03504dc6f12ba85eda679dbf9d472697e29e164e7640a4048c0829bec6
it|64|d69214f1a68461a0d39c3edcd3bf263e7310d80034ba6fa097ad07d81ac5f107062a7901ad2c89968aed478b67193340eb142cee1e1b92861e9cba3aacff623c
ja|64|e9fc4b37e9db2b42c3958eb42e8f923beb8c80ba76dcae95cc397b0e4bd744eee2f0e99233b1656094974811a7198db9d3753a1230d1c4235bc005affea48273
kab|64|d2226988a353db64ec4578b26ef043bb9af3854ed6ab16d3bbfbe597df624694908b8154d8f0be1b4c4c579dcf1620c80f6a528ef0bc2c80abe80c10ece73d90
kk|64|9a54c822f115d620522c4e0f5253b83e89b5734bee8bd95dab27f3c1b9163f07841f431b225be14a13731740fdd21b2c17f35c4bb6be973b088c00dac181196c
ko|64|6827f72dc270261338dd643464963f027034ff6374420381538116087a7a967c34c65452fc9357556cc5866e73a116ace34e89612477e01374a920f8bc0b7fcb
lt|64|b0e574422df170835dd8ad493654cc28a95f4658a2fa620948dcb892a1282a3a093d91fc0c9ccff7f576ee52505c5eb3dddca685ce47984243ccdf8984145eea
ms|64|8777212f9a6c6048d57fe4d22fab08b22ddad39271e289a2e4cd2d2732cb6205815efabc6e456b72f29ee406697c9f86f6714f4af971c528b66f41bb686ab9d7
nb-NO|64|41a52a798d43a1b192b5d572e7fc7dd58b7e29e426e1426d1f62e520260241e0ee1659aa021e93e3360027a75c30b14907581d82424fc1913f757e95136fa9a2
nl|64|4c57a8f0a0810af808b446f897c5a224d0949befb817a924372f3be0ffd9248a03a227ed0af9989592bcc7f76f7d652bbd026824ef6fd53367070f0bd0ddf181
nn-NO|64|79c2014ecaeca37fe7ecfd8af59b39762e7b3f22972f879599986118daf6ca5e2c66e95571eb3794e0d4a5f5d9512cd3888a984f2b19f2231a9a559996abac10
pl|64|17d0aa30f2b7800de811777fc461678096685d8b99322d05a23af784b2419e485d3d8ff15ff94fd01f0a67a295db61ea93f4293388993f3d745c75b59d4eeac1
pt-BR|64|0d7551820852b36d6a1f871244e1d4f6de02739453017c5ea814c4cf107f41c5d0d8df7beac125193d619b7d8e62f67fe0ea81f5708c8ecbff9dd4bd9301a512
pt-PT|64|230c53da7059ab5c1d344c98fd20456ff0f928cc0d44984b1b9dff6d5af1671c7c1e4be4a69a430915bf4ac9e0b183cb85e193ac6197f66057aacc8d6b1e59f9
rm|64|436b0a2d95f93e35570d2287aa50faf5889d94b004a3ceed29c0146c2818c5debb0f59c7e2ef00867ec378e78dd175c5bfb2a304a9f2d6b248a13e39e3958428
ro|64|c344f12cf866de81d613be3626a2f4bd6d13835adfee3515e9ae5ba2422dbed6337368008ae4d8cadab4e106dd528e28a220b527b0152fecb6df9b556e80c1d9
ru|64|d1a9d8c0fe2bebabd880aaa9d2129a03f60fe4653bd6d7bb73c748065d70022e413f7366f3f12a4282a5a0d32a356fcc9728bf75c51e3f535e2b864dd74db034
si|64|80f3b2fa0dd2dd552e326db63cbe794df548273924e712979032b980769f16c962127e0f4fda6769b8effba30fcb3295c9b757c7fdf2bff8cf71504e305d60ff
sk|64|e7d44baf2853d1b7f197fbcc37f8fcbee6030d2d5c83ddc16b5723b4a2c1221df1ff874fd26a177c4f94bbbe738beae3f9394db4f55793dce822b44cd5402bd2
sl|64|fa6d9a95eb28199267ca8d82e8491241ccf0459e08d14a07227627bf5d6c5998a8ca2567c0fdcf2a9723120f9abb6d7c1d4dc42b2b531ea610b7a2e462bac982
sq|64|f4c009e0b505aa74256de41d3f59b4743e72a2bb4be5d5d857788d775705e7d58e25271311046f5b7aee96fdaef5d709b75eecaff29cdcf0422367dae3928713
sr|64|602c7fd90b69f43a587296bbcdb1808b2213d8d6a494caac04c2e85aeb4257f316662e60d2b509a8b80e132aef3b32039e8c0b22976924b34784b1146a0c66d6
sv-SE|64|9e508384ab2514e749cfb9c04c4f8b128136fdfd08f9e11456c6fca5ecc92e2c79aa98de59e2eaa98509f5b22e0e21cb287d94e862db9fd9877b4c9e4889bff5
tr|64|f3e802bfa4d5882d834a626e77a12a0f3efe4e3d466c8b581143ea9a9c501f13113081e8d34869783e8ac13bce3ad0e19b16b8183c0e60fa44da5279fc3a6c67
uk|64|2e5902a8aefb465e12c9069bdab3d74de24e64a36c6b0cd65ae00ba883cfcb36533f79fea881549c68943fc90e8619ff9aca266b8c5f0c990895e5dde8cc4840
vi|64|80bf6d92c5441543634deb70d45350a553cd69605b63b77988778de33f4c7a2ca95d1b9eb1dc519177d0aa6ca82a1dd393249f0fc6b1ad46576d7e76fda5ea9e
zh-CN|64|a729bf32684817de1af0a8cd91506e46b0ee1df690f3dc7edafcdcf74b66f63c01e1c9133086fcd498ee0a5992fb949360141b880ee90f6d975945b8e54353a6
zh-TW|64|8ac83ebfb266234bb4987437e40085c1e37b3dda72731af65f5e594700a1229471a78989ca41a5414f3d281404b31d7f8b2cf5da9ecaa7615418ed465b7c0b19

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.0 27104 Wednesday, February 21, 2024 Approved
Mozilla Thunderbird 115.7.0 36200 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 22363 Tuesday, December 12, 2023 Approved
Mozilla Thunderbird 115.5.1 27029 Tuesday, November 28, 2023 Approved
Mozilla Thunderbird 115.5.0 18694 Wednesday, November 22, 2023 Approved
Mozilla Thunderbird 115.4.3 20159 Wednesday, November 15, 2023 Approved
Mozilla Thunderbird 115.4.2 22742 Wednesday, November 8, 2023 Approved
Mozilla Thunderbird 115.4.1 25961 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 19518 Thursday, September 21, 2023 Approved
Mozilla Thunderbird 115.2.2 21627 Wednesday, September 13, 2023 Approved
Mozilla Thunderbird 115.2.1 6650 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 23752 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 15987 Saturday, July 8, 2023 Approved
Mozilla Thunderbird 102.12.0 35794 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 27102 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 21413 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 25077 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 23177 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 20680 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 23245 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 22084 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 14269 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 17809 Thursday, October 14, 2021 Approved
Mozilla Thunderbird 91.2.0 19156 Friday, October 8, 2021 Approved
Mozilla Thunderbird 91.1.2 22910 Tuesday, September 28, 2021 Approved
Mozilla Thunderbird 91.1.1 21684 Friday, September 17, 2021 Approved
Mozilla Thunderbird 91.1.0 20822 Tuesday, September 7, 2021 Approved
Mozilla Thunderbird 91.0.3 20661 Thursday, August 26, 2021 Approved
Mozilla Thunderbird 91.0.2 10469 Monday, August 23, 2021 Approved
Mozilla Thunderbird 91.0.1 14190 Tuesday, August 17, 2021 Approved
Mozilla Thunderbird 78.12.0 28780 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31886 Thursday, June 3, 2021 Approved
Mozilla Thunderbird 78.10.2 21023 Tuesday, May 18, 2021 Approved
Mozilla Thunderbird 78.10.1 19256 Wednesday, May 5, 2021 Approved
Mozilla Thunderbird 78.10.0 20989 Monday, April 19, 2021 Approved
Mozilla Thunderbird 78.9.1 18520 Friday, April 9, 2021 Approved
Mozilla Thunderbird 78.9.0 19264 Wednesday, March 24, 2021 Approved
Mozilla Thunderbird 78.8.1 21140 Tuesday, March 9, 2021 Approved
Mozilla Thunderbird 78.8.0 18870 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22954 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17625 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20300 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 20198 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11713 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17159 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 17186 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22042 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14083 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18410 Tuesday, May 5, 2020 Approved
Mozilla Thunderbird 68.7.0 21865 Thursday, April 9, 2020 Approved
Mozilla Thunderbird 68.6.0 19678 Friday, March 13, 2020 Approved
Mozilla Thunderbird 68.5.0 28022 Wednesday, February 12, 2020 Approved
Mozilla Thunderbird 68.4.2 21215 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18622 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18167 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13335 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 34971 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16902 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12463 Wednesday, October 23, 2019 Approved
Mozilla Thunderbird 68.1.2 17501 Thursday, October 10, 2019 Approved
Mozilla Thunderbird 68.1.1 17702 Wednesday, September 25, 2019 Approved
Mozilla Thunderbird 68.1.0 17542 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 25982 Wednesday, August 28, 2019 Approved
Mozilla Thunderbird 60.8.0 34697 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18390 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11124 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20018 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45015 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 4659 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10662 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15301 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9156 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9230 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11038 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10550 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 7454 Wednesday, July 4, 2018 Approved
Mozilla Thunderbird 52.8.0 18795 Wednesday, May 23, 2018 Approved
Mozilla Thunderbird 52.7.0 20340 Saturday, March 24, 2018 Approved
Mozilla Thunderbird 52.6.0 23724 Friday, January 26, 2018 Approved
Mozilla Thunderbird 52.5.2 16325 Friday, December 22, 2017 Approved
Mozilla Thunderbird 52.5.0 14507 Friday, November 24, 2017 Approved
Mozilla Thunderbird 52.4.0 19503 Monday, October 9, 2017 Approved
Mozilla Thunderbird 52.3.0 17549 Thursday, August 17, 2017 Approved
Mozilla Thunderbird 52.2.1 12707 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 5999 Thursday, June 15, 2017 Approved
Mozilla Thunderbird 52.1.1 9435 Tuesday, May 16, 2017 Approved
Mozilla Thunderbird 52.1.0 6384 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7221 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 8727 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5619 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7039 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11788 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2130 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2309 Monday, November 28, 2016 Approved
Mozilla Thunderbird 45.5.0 4820 Monday, November 21, 2016 Approved
Mozilla Thunderbird 45.4.0.20161024 8489 Monday, October 24, 2016 Approved
Mozilla Thunderbird 45.4.0.20161023 2217 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12293 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 456 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 434 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7790 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5828 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6088 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2776 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 3971 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3296 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1877 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3651 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 784 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 2425 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2430 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 982 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1536 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1503 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1543 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 506 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 871 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 615 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 626 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 622 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 597 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 661 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 594 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 580 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 17.0.5 551 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 16.0.1.2 685 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 440 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 457 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