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,502,513

Downloads of v 68.0:

25,987

Last Update:

28 Aug 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

68.0 | Updated: 28 Aug 2019

Downloads:

3,502,513

Downloads of v 68.0:

25,987

Software Author(s):

  • Mozilla

Mozilla Thunderbird 68.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.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.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.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.0'
end

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


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

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


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

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 28 Aug 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 '68.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.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.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|b63866a29e7df8e66ed352ea1e40d3a299f68889228996f28fc00a77623cd050131ce6e8aec21bea95fb63bf2e47a6c4eb34073c20390b36e8f82587a8840da6
ast|32|98937a6f8efd0480f051b20621ef9ee303eefcaced2c44d8dc32f10c7a02bfcffbda75fe1f867312a7d9150b221734f1b3ecd428ce61ab6033ac9157557caa18
be|32|9a0f83f095d72a8553926da05ce208126bf41b7398cb05d6d2687c243fca18dbbfaa60eb38a2f54d7cb35cc3233b0b7d81f86f31ff54464720f5686da6c0f693
bg|32|6f508801c3ca0524cd9c1f462911463f53220b90c5fcce4b90b1667b529d7901b29f2669953d8756e3ed2744c8c65cebdcb3ffe525a8cc13a6b9dbdf7905170e
br|32|3b22bc94ae76de5c55b7d82a1712982c7575b8701b5673405c3810ba9c6c251ade95baa7d380c9e421a0bafd5527346b4a6c2ceac6d54232dbd52761d7b25e16
ca|32|151b862848264abfb351d18b91c281076ac328a7fbbd6f56444a0b6c65da14993b7e0ec14117e3cc237accb7df4b44f4c45af05e2961306528a2cd1bb91ce652
cak|32|21b289a0c5b96cff6ba6185c00b4ce65b9fc4011a2d295d5cbf189e9e3b8ec15d1ddf00dfaa10c2f2d8cbee626d3c5d86ee3035203f7dfdb816c55e287726de0
cs|32|0578076171aae90b560266ec7e1d23d538c6f2fd797523af94bf63ddb50cab7919ad34b786eee1481e8cadc6d4c0b0e8feffb319de884c8bd2064d2d0ac73493
cy|32|09847b1ae84d8e79bd51614def05c89303afdc5620340f54d2e0cebd708473d2190c305c5af5cf8586012dfa61a8bef77d2f2779055505852f4c003dd1072d0b
da|32|f6a0e10d2d9a37f8d3da14a50263a8f28057a7f0dbc5e80e46e15070e93c23710a5e0f0325ca40bb90da9976c879bab6f0f923d53839095cde5a896b57cfe0ad
de|32|08ef01f14e26723ce02424c9c1f783e4531e2ebb15da2a40bfdf6a6aa3f62bf2ea1e1a883d689ee2d4db804613ca1aed38f087e7e1eb871c4e3dd224e372c598
dsb|32|5001c1bc86e84f5aa6829b725b330db1000022254488615a63e645c8b0d74d35ef059459c2acfd4511cb65a62386a8d5fab537e870f10dda6544770cb075727e
el|32|fc0a86ca62e03df271468217bcdbbfcc22548330081bd6a7722f54f56192dc0e9d98bc0deca810ce5a31db582f07a3121c27a320f290a9cb1c8c3d4139dd4e91
en-GB|32|b48b1b579dba90fd6e4f629d0cb8b7ad332dedd67627305e2de2aa952f0ebe115b17bdddd80f3dbcc718e80cd83c6f94902b29876667249a93ac600d65ce9264
en-US|32|23d5856ace3b81917a94dbeb73e7d8fd6fdbcd5b2ee51fa10f1bf2e4e6c1002033e7d28c7ebe0cbe05eb9a2b40f7de2158d65bcb5589b31e3e2ae8dea90d4141
es-AR|32|75da08dbbf6a73cca468b4d34ce6d7587c20dc9b6ee6e90150fd43951e1e6dea4668d687c933d792fb141e1318ec9751d65ffd80a165e6688d200fcee66a4756
es-ES|32|db2b328dd400f419602afeddf6a7d402c4a6fc0d248c53d1b3a38e5098f0b44a46654a8594a5a295132d39e89c22e90cc97a9df8a98562461e4f3f4db8baced0
et|32|16bcdc2959f9e594ad8a19d69a40038259d0f30e7d8d2a699cbd38015357da642541ce454b7caad0e6668006969aec5d000b20d454f5cd9eb31fd93da1810b9f
eu|32|26ecd013f2cb3d63894e31442510f169189197d268f46d1abdff615a0c0eaa10e77e3af58f3b0008597848357ed79b970253a0c71165e03b3b8d12463c36583f
fi|32|91ad9a82b9d9297f834a428209d134ac6cdc8b7b829b652f27edfafedf8544b557336235d82190c87b00d3e9c8481b4ac01406e866c5519548cea8e1e7b10faa
fr|32|7e87f97a89e9bbb887bd33b015cf06e3eeefc2ca8b13b978d2bf1dfc89aa3828366510aa0f44edb20e702f6bdf0fd2724afd5adb5550a16e23247917ec13f07f
fy-NL|32|5a155fa803e828197d0dba3b9402a8cea12b37426cdd7ad53e521a342b376083fb47a6f37dd22f26224552aeae74a841885339871b61da8d4a93727580e7880a
ga-IE|32|baa30695cd58ac5a32a1bbe3d2818407c6d5f6f13dd8d11aab70d314283348ffcf8dcab387217eb274fc5799a4e1a13a4013479fa9cdb751ae08ed8f3271f509
gd|32|487f75edc33da2e422126530e87ddc91804d9497920ff2ff19f068662bb7d0dfe22974f8fe3fcf2b014cc194f4b68a4fc7134606ff8283af1c75b663cccbc337
gl|32|99701c9db28f91100bc05dccf49fa37d05f054f0f564bc86348ca51fd20632859f03e8cca4e13be700f75abb72dd6b46f6ca54d332fe49a2def47798e99c982b
he|32|e3c955f89b0d5826b42448facf1767b282ff7ddaefe5834645244a78b2ef122db3c0078e0ef8c034650032f44dad40f250eb2b172726f3ab48c4d4fb0bbf6442
hr|32|f19811326b1a10d8fbb585715e7381dab81f1f89accc44ae8be91da682a8e660e9cef4dddb997db5cd6c68def3fc712ad05b8da243f4fe8ccb1c464085ca687d
hsb|32|9536b86f0e26045e1f40855bbe60669caa51780bf22c9add87bf9d4e3e4d5767eda439b355b3632c9b75c7e8a8acaa32f45a53f7ca4de616c6549c530343bc0e
hu|32|05a0b4ff861c72aa200c4f3812043595467ad386b9f9699fb21fcd695a7b817b9f63f5c936400cb8d60f6695260e195729e6555d7b3377eb119d87eb168248ba
hy-AM|32|d1ca036fc5844ae0c1b175cbbd52b6ca757ba2f2e67ddc258b33b399cc9c8e2a9bc43aaa78eb34f287938c5651bc7253ff4d67105e86480328001d5064da0606
id|32|fb9e37779e3c32632e6315197d75b789221ea49d606aeaf10ea58c4172ac399e28d5132f35768ae2394bccdf7cbe3ea6d72b206cdc26a30999a9b4383be69b72
is|32|29d06880aed638e303a5a09956b64891ff39dc990af227b4716e0391813fea55acc1979924ada375e3b92fbbfaf833af5c8568cbc5d0c4d044c9afbcb6611d4e
it|32|557eb0a9b1de82aa12ffbe3189ef5037de174932b3f15732a350b50c5d56a7a3e66fe6cc0879257e524c7c2c33a4cbe15e5a30844a0dcb6c4de4774052d05ec6
ja|32|5663f6c7e03bbaee0b42823a50f5e66e63ce1629a6924daf1ae71caebe9f833e48b372ab842b7807e6b43d3e7d5d95e29235bd717bc006a1d49ec6dacf9a578d
ka|32|acfa22c8594eec61fb2adb982e3aa91ebcaa89f7317fb5cc821de2ea7b22d3c1b89a813b412246e49552b3ba995e28bd3dbd5eea8bec62efe352b8eb17ea0b02
kab|32|97cec285e2bc689a601c596d233f69e62857f3b9ef6b3cfa9891d65457fdff1e02d043c3ae956e89bca6e53a09e3960c809a8859fe82ba1021597194e6e4e530
kk|32|735262df6e4b90dbc1e089fccecff532299233cfa7899ad77348ac1461b82453d3f6cb16d6589c2a05c8a141ce995403d931a3f2b047a57df18262588add6969
ko|32|f893cf8f01c02b99e26dad093a4e5c673ebe3f943d59551ebb0bf2feab064fb07a1b150377bc01fde8827561accff9012c9e84755b1d037831a16c167e13a8d9
lt|32|76bb5ba06c028c009206b3e6ad244c2cef0406dcb63e70caa052b4e4f3903d3e3e6fe5033092d9dedc030750d9ae9bb36d3e07bb4968118a7428a82e7ac5309f
ms|32|af38f309e53d43c6534de004df037606623434895e96330c98aafb1a4abe7724ace62a0fcb1780b9db51c32ced031d583cf3b4eab7ea8a38b518e4e149a44d13
nb-NO|32|1d019a25e870b9d623b015e4047c3af3bbee8a39b256a98144d65eaf117a03ac340f34a43706913cb0f31508322c02d47595e9e94ec2ab3a4d77cdf566b89f14
nl|32|95c28bf689001d9c380fac2fe98d289f6127a712ae18e12ca7a5bf5051dcd5204e6b58fe83bda7dcb6d7aaed2bbfb5d321086d96cc2391e46ae1fe3f6046bc48
nn-NO|32|7d0b7e16477f384d249fc324c5972d723f169e36b4f30137533a9c0591c9dc675918a1351784ed9dedbbe8f3880311c41cab15f55b99adb42ab6b6864388ec5b
pl|32|5d983ce09ef778363ec5c3c72f9075c408259bbb859b55a3ee760e7ecf93e81780a44681a0a36e5ec3ccb7575d13f0c8ce8702ee11bf9e003e55cf097c6b23cf
pt-BR|32|8be61338f795677c59339263fcb29a0004624747fa396bdba8bd25d95aa970e25db8b9fb084f0e564a707de6609b550de37b93c1d6e35eb24a3545a3cfd0ec63
pt-PT|32|38f26fd75da300a3c1de8b2f989646504024062629450d1a6c3e417647946fa738b02eaf27e9f22a5f7fae608d97f5ea10cb268a67902f7c4a6d31b8892a8289
rm|32|1f9d504359c7aeb98130f39ebad5b54b0cf09c39ea397124f4a36368238cd615ddb8c354e55236a3b274d2de0b7334371ca75b9e3db9e33b8c8d1a23ab5d310e
ro|32|011ca9cd56c37cfd71d30f7ac43dd81681712a1d61b71664deda0f6313d194923d39d0487c2fd1df12d3259a9d0a149865cb6c58cac15e4e74f235f979e4b572
ru|32|7b26d4c0c3955bc33c501f9ae4e22579432bbabe8835e3318807874717573e0c9df576d0af2d037f625eeb3ba369cdf9b50e44fa43e9f693ac7f7ba3460615d1
si|32|8e4c91187674b34875ecaf62f66b6bdd89ee71b2177e6f7b29c1e61218294f6fcc045310a8d13634e3691f5bde52242d834cf8e9be4cd97dd38ffb9bfa35bf1a
sk|32|872b0145b501a8e0d0e574b22c9e2417c99051f520b9ca8544656199ce6490ec0567128dea09200672c6db095f7370c56c40ba0d08a2f920238130cb3f3a0831
sl|32|84291e75f91fb4a1bc3c1cb2485d71b352f0a5541dcd35ebf9e56d326bba078eac23d34d33ebb7f6de98a5a8b9cb31944b1fc7d55629c14a72879a6d9e17d2e9
sq|32|d069b3f86fc7350790bbf1e2eb92dd0676f69b6d9d2c48c570522371edf76785f38775b8796043c4584f68e8a71c18b637131aee47a6b36caabbf954a550f61b
sr|32|9cf3bd6b0a43cb7774bdd28246e162a293da8aee2a4fefb556308520f25ad99654206592231b22a1f8f3c09827175d493bcb138d4710e35a85393c0f82371861
sv-SE|32|5c8372a204038561caf467c0fe7c08f5f9da152a63d0768d294a2f98efffa5baf991ff39ecc7d4f000a7a0a915589e03e4856c84edebf361f5ad345ccee08c0c
tr|32|6f53bd4cfd6223054090e1119e94e5407c9ba203d37e85b852603a5ba0112adc9690f48f789acccf914ef3c631f5a1afc9cd2ddf169381a401f3da0060bc8456
uk|32|997d8d7a96453fa21a5ae82e91b97a29abdc72b6fe099fb2a7feb8bd2dbfc7d3d7b588ce34b75b9793e872b1269b3412059e6ca77191e833d77d420009663093
uz|32|6e0c4e2424f3d90c92075aed93ce00c11ea923ef16f2cdcee6bcff25fe0d367d676576bfced8e582ea966e21d3d2d1bcc8bd3a4ff66933cdde6bbe9fb8a9b094
vi|32|b93293fa48413610f940c0759e6a163faa23fb6e20cbc08d2ac36200c01973316364d482d06f011c0aea967611d82dc0777a977816917118ed6179f9475302ce
zh-CN|32|ff369740a855109096e09cb24f282b3d9f877e5d7ef8739b8eee0935b76685bfa2e379b28b966bf47bdf1cfb02e3be0d0b8dfe3a0a3bd3f162823715363bddd4
zh-TW|32|61574152fd4d3305def020ec7fdb5165a916a3cab8e0197d5cfdb7ebb29a58a1c17795290c657b2130e91aa318b2b517441eefc961bcc51753eec064f9d247fc
ar|64|1b5cceeb8a956a433388d375aefc1796b0d28f137910664f0cc9f53a8374fafc009848a14917ae1cfbbfb79f8fba23ecb79d1180c1d5aefd0cbf3839e9aacf83
ast|64|dbf6273f79f618620e3bb990903d1093edcf24ff36c68f8acaf9394c6e93c693136474677113edb8511047fd971c05817e0079fda2d92f6a4c31a2556d67fa2a
be|64|4c944d4ad6a047dd1867b3581abb3bd24147593e5f81c70df8e8682581f62570eb27790c6f4f030b588ad2ffdf0af1493513242f0d9c1228de3f7787e95144ad
bg|64|ae9e18c48e3450272c0c376d669da8da70dda068180099f3cdfe1c09b07e61c9679f9726243fd82a673fffaf557af0c9cb2f61a047517a670d1f9e11d9b7eaa0
br|64|9a638d33f637594f575f745f94e66e4f0ab3fcc507ebfed08aff34c8f0a011c9eaf0eb2c42c4812e53d3905e69c5b6bfb6f82ff0bf2aa891db7295aabb027eca
ca|64|a998f1628f71816be6e44a0ae9c626e97829a81917cfffa426e79b18e7b5fdbcb2ab9192b0209695e82d9d2991d26132fc70455249b91e8b70b08b031767a70c
cak|64|04b25ece3d6e0b95bfb38fcd2505eda5b48c2b13ad52908b79494cd57d6617d9d09b3e061709807f24488740e6d3c6ac862b8f8f7060ebafb4718a24da5064ea
cs|64|ff4827d57e3b6853b32c5c5a9243816fee4b299f8be849b19fcbff9cc35e5663e1f9c5ac9eb2fd193121f482ab7e1da60d77d2df0c99496eb476cb0439a61e4c
cy|64|a05f4a59be8ae6e6800b67ebdac2836f5329af9aaf24de428588486b2f6b5ce090639a288a5c647de4aae5331ff592868529872699b462076893f0d3fc645ec3
da|64|b09506e8d99e7227109630a93386dc4901538477eff9868d99f77a8d0f5f80c532cf06284721a08170219ebbc35e47df7db251cc15207d4c6476cf70b7dba929
de|64|25111909cedc8c4d2ba2b33fa6e9cbeb59300b30fc5f07d75ded5f093350a70f011703da72f8f564bf424893fd4f9ff95959f7081e2a60300f932930b7f0d106
dsb|64|2a30745160188142a939a9e5d87c9a910347c93f1b053d5a9ad832cee2e8e22b3807712adb358d4b2944f40147535cbcccf8574fa4dd10262570070159a02b12
el|64|4596f3e906ef4e6140f3c1c329ffda319b5a6a3d7cd161e5c2c7fbb8134fa550224972d2c8c192f87b89f320ce68f36a08565749b585df750674a67e1487f26e
en-GB|64|93e1ca8692b0d558ce3b2419bd9750572bb299669406e6944e617e3b4dac4cdde7890bec20fba4e27a905a9a4ecf1d975c16d1a667aa60e9fb7103da7bd8a87c
en-US|64|09506d7226c0a878c01eeae75ae3a58910aab2996aea45f0d8cc1bdce251e50f996b47959d6dfed4c97fc89ade870b20ee29b5cabf6fcd0155475e92fd5a4504
es-AR|64|00fe0260a35167b8b7207f45d7e3daabfeb1e73f63a1684c4cdf5606913adb89c8b5a430161c39312808858e28f6713f00ee9fb1c0f19117bb1ae3787855d675
es-ES|64|4a3384742a8bf8596cc29367049af0fff4bfe2ca45eeaffa013898412e6264c8de3ba43606ff4fd74ab349e0546dc27aeb12b4c03bfd696a5df10509ef7a133e
et|64|b549c7684e2c6d395ee0077145752dca15db76adac45f3f8c9b11bb7f4bb6d5c728ba684b5a676935b26d54e0d246c5ced011d6628e277f84845d51f2efd2813
eu|64|189477d0e4c4365f2d5769c550cefd2322f932cb97c0a9af1af9ef16992d5422d1298ef5457a6394d674412a6cf0580020e531c742a7c0f1836d983e49a2b32f
fi|64|47d3927c14cad1636961ab503e06d1c60ab783538950cfe6523619c61ff4c98a84efe93d6b4e8de5fdc3f74bba1d860a583e408f8ae42966a1019299b9879b3e
fr|64|6602bae92dc4271f6e2921e8f2ce8cb9e2972d38d8860bb7bb4362f16f764aca33067175d036c822c8ca0bc6beb1210f41e665ea470702f8b552632c7dca0b66
fy-NL|64|374a8003d5f5a9eca809ab85d71686a0208358e7f6f04ae63c91e38ade2c16e311d062de836f77ac31c216bb507dc8c384f27a77520a3bd8d4694478af041960
ga-IE|64|5fbd7ddbb9a3fe55ba97e80f73bf28c929c1205448d889fa90519bc27c2c586fc08c125de989c69c7cc5161b5558b2fc9eccc5b2191e24712b18e9bef58e9062
gd|64|f702e2b87e7db352c15589e5e839142c7ec53a060b1407b28047e614bed4e43c2a721b410f76b6910c2eab617f40c9e8cecd94a4a5ddc85a8e2473d709e6c631
gl|64|dcdf4e6fa5de0d11df1732e0653c1fa04549a22d3518927d5e14cf5b46cb2a95dc91877b9fb9fea55c60bde0d5fb058418beebc352827a7da20313f6d270128a
he|64|effc007be43c26a075225f06bbc3e0c74b34f8ebcd6237647c205df9717180a963b63f08bb73390708d8874826b33e2849240b4649ee593ecab7959d4a467a32
hr|64|6bee011c2319c3a2e715ba8f98cb30e111baf42cf4fc6319a2bfd8c7aa9012d8bf12ca91c2cd175adbaf3aa16a5ebb4b89180c50400dd851697b3dade3ffae4c
hsb|64|1c3bb21da5300b616a40ddfd5c7339248c0ef472a6434157461a5cb253e41f04229cd573c8f07ddad460d6723f353a43892b665abfa1b1d43c155dd1e8152b1a
hu|64|01ddf202d30c7032a78eae58bbea053ba422ecf939d1d254fead634bd7a03d451329e42cc8ed3fbd103c75b5ac0045f6d6eea103946370bb03b02c3a66fea822
hy-AM|64|1f7560bef1cd94e9e8eb6756d784603a7355f0b6f72b6e61140471540a3425ea5fec7bbf35d186c3e83f84d898940eab301d6c54930a5bf10ced627fd5f6996c
id|64|4586723c8e342b470522bb2d6f841682b33314369246e31a7f2f3707d47ce8bdea70ff49c10b6dc89e0840076074f972094c07e9d4ca2cbd9cbf38883838a99c
is|64|ac6fb3d5ce3975e6dab20d0ecf893371d2341d0b1b6d70a40bad8990199d5d02c6dff7280e850a4e84e9765e1b8259e0b231022713f8862fcb26684bbfe4daee
it|64|44176f1277ff1b37e505c7e20596ae13b2acb65aefd9ee64090738f3a3bfe48df2fd75ca10e74b27263c679a621cd7b9613d5bdd9e26b81a387c9bc521088747
ja|64|2d3cb25c479aa4a0fb1caffffafc841221fee08fb98f4cfa6310d1a88d116f4ebcf481bd661149d42989eb6fd555d2a026e30e7f203a5ada24ad38d645f9069c
ka|64|5d5f7b5f879226f7292acd471edfca92be2db3905b9a62dec36d873ebc1f4d2e1d64b513cbf71606274a32936990517a7b5bd81d4d6db3925c18a04fdd894978
kab|64|37da824344f75308eee530e1bf477a193b7041d5421cc8b403a604d9e26ca46f19cbcb97771dc05aa85caac7ce465e75eb7ff8530b28b5b3439c394f279b1b58
kk|64|889715ebc38d05e4073c864b253a3f8a26a5a233be5f512f2fa432b51d9e131a830f92a48a0b5573dc17391b99f4e822bbd66aaf7a0ba4e7d08023708f788636
ko|64|9b9745079ff1a0792dc8b95fd0891e9e5f87edc631b3e22f376908db6ac2c80406291daad22fc6cd802bb9a822ebda692d4d1ad4871855be214eefa598b08b53
lt|64|e0dd01611e75d1c8ee8fd9a2194d93e33535f80763e621fae12d93891446126e8600a3f6e7c08b45092ec6a89d50a122d4dfb764e2c67cb846cee87a3e532b4d
ms|64|8aed557c9627c4fa6b2294145808100ecd4c4e11b9e44e9233bc643f9d37893636c694e58c9a7ec13dd56904e9cb7088c191169c1eb2e66f2f2ef22321a2a396
nb-NO|64|4c2bef42b0bafa2b1534766477e3d32bad25a2b21e3ea7d303ace06ae1c631907f8fc6c9959c5289ce2f01599ec8861b91c4174c56a295b6dc3188e17b982a19
nl|64|b593bcb7e0e912da0f111bb06b4d080d6455a910a151b35521f6c626bb2ce2956c1aee08bf506b954b1e69d71d68ada7bb525fd5183ba7b93e90d30fa91af8c7
nn-NO|64|a3d681e261c2c4963d81849a8c0b83a4957015433868bb87a5086601867c411e88ad85d787bcf1f5b2a879ea8073d5a4c74eded83c2fe6ec2c12acc6acae680d
pl|64|ddb3d3d68ba05c91898be120e037d48599d364a2067dcfcf8604edeea9980629dc6d4355aca6b8f0f0da14a46c7507daf9a870333ca12635db4d97a7f896a33c
pt-BR|64|4eae7494c5731456ab6da788cf13a82729cdbb81435a59dce0fd556e81c9cc1dc445a9770479debaad43f43e88e5f5c1b981c9f8ada99e5eadb10771751393b4
pt-PT|64|d3e7df460fdfbc988035b802d43b40bd2d2272ab13bd98883e6d447ac6be983e658041b334144838bb84e92dd5bc3f4027f4c26996851ad6292ee36c816ef286
rm|64|4a9731addc0a4cc8e46321907f05cdecc8ae7dd678046fd6b167824b57d5cdba111ffe444e37397c2dc7abfe90b0662789a5deb413e220e7c8de7006bb66d24d
ro|64|b0c8bfa328afc6ade5f60104777e844f9e97e1b9b0694e9b150aa4f466de2de16f04be0eaa8a8b01363b481da69e8014be477c33df9de2ccc18f86d5a88afd8f
ru|64|f286d37d2a5ca66a9bfe476d516fc6c72969559bc8fd9268e4ac3fb3e36193455a708ca185b237b7f72add8b988d33a6a6c231668701e516d6782c0502669f8d
si|64|2c3ff59903b6fcd4654240204403e3c571db860f47739889b24f6dc158d796841e5e7bcf6fee2e44385485f57d1c7dc797d01978d78fc373bf68a4c7300e2937
sk|64|5997420f6acb83edda2a484d4c086a921c61fea3266e7c3c7da7593edb4b4f2fd2066859add9b4f120842579114c6763dc7d1eb8cf49663a46ef4ec810308396
sl|64|679cdf682f73c1377db557e13b2e3e8ba98c604bae1bf0ad329e40c31648216f296fbc1709278755e5d39ae3b766793569344d4631936faf52dfa845b7bfe485
sq|64|2b172db1af2c355f7b905d9a92d130787c66f8a42d3a65ef64283265420d141fbacf92d4ab957da43e8f881b7eaee04529fd04eebac8e4f3a7275075414c163b
sr|64|a551d83343a58e12b7d660ded140c500a54760d75e75b649f4698008947b6137b7bef7db46bd2522c5aff1b06fbe63f93b8d2858fd051ad06ff9cc8fcd8f642f
sv-SE|64|fe5d31093268974571c33cfb917dfe358f9fc7e44ce7cbed0fa470f8d458924249e29389abef085090ad3a4b5d9211d1662ac55ceab37c2e072610beaa20be90
tr|64|b74f9e1825549e27620fd3dba937c9d95c859cf0c996ae2ecd06c8b8473d65273489e10a3b1146e2477f4df492b6bb5e5b2f053aeb6020e3aea71b7c1764e825
uk|64|1b6b09ef685d9d7881b868e8c05771dcd955b42034dadfed9582f974a95fa7ad499953ba7715731af7034978e076c4df8b79bdee7f67d109a709995148821aa6
uz|64|4488e2b3781c9fb68538c6ed41a479cc3d4eadf16076e2da0631f77f529788beb6ae68ed20b7892ab0885ddb6b9c6d104918c974a807b0cbbbe3b455d3ea1645
vi|64|67a38e85a2e5af7fbf937b78ee43f801837c172eb840a1848a276b4ab90d5cb2f3fd0030f9c20ca8521dc5db70afdb9917e37986f2b354fbdc000871a3e173ae
zh-CN|64|140a21e4b4194d9f7c27962e883ed832edc08772083d8f4fc9eca319d12c8128df5a8a6272db2e6262f70298ab64e878e025f2431d11536f3f6678ebc2912034
zh-TW|64|0da404cc044ac01444a52ad96c03913ae68430162c65bbdb6994da940aae54298a188c783c02cab73b271deb4e792de2088eca9e7ce1eb5ef534e82150d31f12

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.0 11856 Wednesday, April 17, 2024 Approved
Mozilla Thunderbird 115.9.0 34007 Tuesday, March 19, 2024 Approved
Mozilla Thunderbird 115.8.1 27793 Tuesday, March 5, 2024 Approved
Mozilla Thunderbird 115.8.0 27114 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 22744 Wednesday, November 8, 2023 Approved
Mozilla Thunderbird 115.4.1 25989 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 21638 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 24913 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 35796 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 36187 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 17981 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 31582 Wednesday, June 1, 2022 Approved
Mozilla Thunderbird 91.9.1 21171 Friday, May 20, 2022 Approved
Mozilla Thunderbird 91.9.0 26199 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 22086 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 14271 Tuesday, November 16, 2021 Approved
Mozilla Thunderbird 91.3.0 22530 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 20991 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 17627 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 20566 Friday, December 4, 2020 Approved
Mozilla Thunderbird 78.5.0 18713 Thursday, November 19, 2020 Approved
Mozilla Thunderbird 78.4.3 14892 Wednesday, November 11, 2020 Approved
Mozilla Thunderbird 78.4.2 10861 Tuesday, November 10, 2020 Approved
Mozilla Thunderbird 78.4.1 9264 Friday, November 6, 2020 Approved
Mozilla Thunderbird 78.4.0 20204 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11715 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 18568 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16593 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9563 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18424 Saturday, August 8, 2020 Approved
Mozilla Thunderbird 78.1.0 10125 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 17190 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22048 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 21869 Thursday, April 9, 2020 Approved
Mozilla Thunderbird 68.6.0 19684 Friday, March 13, 2020 Approved
Mozilla Thunderbird 68.5.0 28028 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 34978 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16906 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12471 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 25987 Wednesday, August 28, 2019 Approved
Mozilla Thunderbird 60.8.0 34702 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18395 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11125 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20024 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45021 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8111 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11750 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 4666 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10666 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15306 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9161 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9232 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11041 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10554 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16918 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24438 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15824 Wednesday, July 11, 2018 Approved
Mozilla Thunderbird 52.9.0 7458 Wednesday, July 4, 2018 Approved
Mozilla Thunderbird 52.8.0 18801 Wednesday, May 23, 2018 Approved
Mozilla Thunderbird 52.7.0 20347 Saturday, March 24, 2018 Approved
Mozilla Thunderbird 52.6.0 23729 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 17551 Thursday, August 17, 2017 Approved
Mozilla Thunderbird 52.2.1 12712 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 6003 Thursday, June 15, 2017 Approved
Mozilla Thunderbird 52.1.1 9439 Tuesday, May 16, 2017 Approved
Mozilla Thunderbird 52.1.0 6390 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7227 Saturday, April 15, 2017 Approved
Mozilla Thunderbird 52.0 3994 Monday, April 10, 2017 Approved
Mozilla Thunderbird 45.8.0 8814 Tuesday, March 7, 2017 Approved
Mozilla Thunderbird 45.7.1 8731 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5625 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7043 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11793 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2137 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2313 Monday, November 28, 2016 Approved
Mozilla Thunderbird 45.5.0 4824 Monday, November 21, 2016 Approved
Mozilla Thunderbird 45.4.0.20161024 8493 Monday, October 24, 2016 Approved
Mozilla Thunderbird 45.4.0.20161023 2220 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12297 Tuesday, October 4, 2016 Approved
Mozilla Thunderbird 45.3.0 34634 Wednesday, August 31, 2016 Approved
Mozilla Thunderbird 45.2.0 52858 Sunday, July 10, 2016 Approved
Mozilla Thunderbird 45.1.1 554 Monday, May 30, 2016 Approved
Mozilla Thunderbird 45.1.0 462 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 437 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7794 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5837 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6097 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 3976 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 3655 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 789 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 2430 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2434 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1463 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1074 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 1510 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1095 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 511 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 875 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 623 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 601 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 667 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 596 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 584 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 461 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