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,515,414

Downloads of v 78.8.1:

21,142

Last Update:

09 Mar 2021

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

78.8.1 | Updated: 09 Mar 2021

Downloads:

3,515,414

Downloads of v 78.8.1:

21,142

Software Author(s):

  • Mozilla

Mozilla Thunderbird 78.8.1

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

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


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

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


package { 'thunderbird':
  ensure   => '78.8.1',
  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 09 Mar 2021.

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
# 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.

$ErrorActionPreference = 'Stop'

$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$packageName  = 'thunderbird'
$softwareName = 'Mozilla Thunderbird'

if (Get-32bitOnlyInstalled -product $softwareName) { Write-Host '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.' }

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '78.8.1')
if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {
  Write-Host "Thunderbird is already installed. No need to download and re-install."
  return
}

$tbProcess = Get-Process thunderbird -ea 0
if ($tbProcess) {
  Write-Host "Stopping running thunderbird process"
  Stop-Process $tbProcess
  $tbProcess = $tbProcess.Path
}

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

Install-ChocolateyPackage @packageArgs
if ($tbProcess) {
  Write-Host "Restarting thunderbird process"
  Start-Process $tbProcess
}
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 = Get-PackageParameters

  if ($PackageParameters['l']) {
    $localeFromPackageParameters =  $PackageParameters['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
af|32|331dea1ffc6442856a39771cae9f908f7bb185f7e71b51ce7a71a69d0154a788c6a3bcf128bc6ea7b3f5090c30184e33af645d78cba841f01bbf7d7b33f1b794
ar|32|3ad08cd0bde5e1aab7eb968b8606364dc4fd7d1fc5d9ecda5e74ba0c2fe3fce7875f48539934dca202084d678253b85487a29c2b0066fd50ee7f1d8be67f8e81
ast|32|bf43294d491851ce6448925ddea0ba161ee53076f5abcacd43f85ed284f8dc05f1595dae71ab2391a8630941c129db4c4f627687ddd3bb029120c0dd2eaabced
be|32|779dc2d6cc76f7c434c8c56d55e208c4accef27c5d6435b616802d4146093f68ff8f71e25ede6145938b6651bf6d4dfda19f0d0dcd0cfe437c30521cfba9b7ac
bg|32|2d04c93e759ce91ba5fe5fcae872ddc7d61aae05264ace0d5c02d70495b0337df099f33ab8f01d24b1da40e5e98388691b59b899151560d7efbdc1a18cce164a
br|32|b5f4720d4229a69fc905f0503a529bcdaf752c8145bcf52c5fc6afc1b9221cd257c7d6da78dc65c4a603bcf43ffdb2bec990bda0bd601427236e569d7194b335
ca|32|2677e7dff14f547789be8c7b187bff1c1f542f01402aaba25d89b70416d15c2ccc46f3586f697527341acc81c3c3e93848f684e36aaf75621239c6fc7a7278f7
cak|32|30d525f34031a292ed14e01cad18afc0d30e83d1a93ec66c0b04af9bc34d2c2dbfd950d112ccef941c1c8a769f6e10f059c1273ca92235f0250c1fbdf5f571d1
cs|32|5dfb13cf201330444f8ddcfd6803534732a46f52f15f580e0e1337bdc9e7dd8bbf23e642e7f67a551ccc1c79d0c27d75c20dec6e76a783481a560b43606e45c6
cy|32|fa92e900999172bedf26a0c8e49325e406b76311c8542263530faa85c4ce94c83b94be843296566afbd448c7ef009f2d89cafccd59dca29255932ca52a5c7cdf
da|32|d7df5f176641a4be9004210add03b61c89ea9fde9846355c8a00290db8a0e70c29c5c4bc53ecbec737f73ba13956faf183460e6a7247a7f1c51043a08e5d8f62
de|32|5ade848ee2c0cfcb25e39a8340050f8bb261d35f31c0283d9fff62f0d0b49adc55643099c556179cba7c247e9d3de4914ca4b57d1ab4de35d0766553b22722ca
dsb|32|0be1d58a50a8615927a46a2b1258220affdf9beef003ae6bd07610391363a9f5715b7c69f95d5e220149f64e087604fe619a1684ed2341eed99e79dc7c87aad6
el|32|36d78815810472a3623648304e1f7c4dfb78abd079d64b12949874b3dcec0531fc869f1b6b43485f0807f3068030d7e4ac3bc301ba3610a820ac471d4db34c8c
en-CA|32|e6149abc29dedcac14b039bbb545c1bc4d8082a6b34dc0d726707a37369fbf77fcecb0d66b61d1dd0de14454a34b0c9399573f4717d8b3aa6b98213c42d56af1
en-GB|32|a6ac78f11e4840f7a2e715c45474c92f481b76b830545b4bda38581da4cc361fc864db8231c45791c30fa07b6634492959adc1168c18f9e35eadbe52e8692c01
en-US|32|6605991a2837d71adfe9e38ae5c60dc42c4e677cfea7a5436c1db323b717fd46690a5b13e1834d1f46a06e9027402797731d9bff9eec0daf743686d3075b93f1
es-AR|32|ab9bafb161b7640a2bbee61a5ff729611bdf975d2883211cb57f71e95942e82ab417ab5565c84a953974f62290d138696e3daee1ce50b874406c62d8bfb8bb5a
es-ES|32|ffe663b82cf42251a1009ea9a08ccccb628794c28e3213d56fc59b172984563dde8a79489cb8f2ead8b11008a58e8d0a8a01beee1132fe022295acf483a10cce
et|32|33123cc2bfa0b8b3e4e6d81196adf3ec604fd417c898e77c48694bc0b2a6f76a09f5d4838d8b29a18e20b2475ceefb7a9c0b06f99b1c7e3f1904784863ef7d65
eu|32|c88394f2f75106867f023fea5501e4887b9f4665e492510c3d461560b6289b13a5683434219b4ac3f70df14da8ce186d42d1abaa2446a3a700b7c0504a4ed3d0
fa|32|a7e50453367e20241fe05e7d9da752f2faf66463a0989ff6a34e91f091a011ba9a40adb686b001ad1113d1ee593b7c617839b6583bad32b674a7b7d1e5e05617
fi|32|bc9ee055d04b18ba1c4f203a291d5f1a2d0624fdf07cafe2c29d4e91de6411c323eae13b1d5f54783b7bad01934b0a06c981828c5d8fe1d9f43cf704a91b2b29
fr|32|d04224f2b2cf461ebf6f3352ce839578f4fdcc2c830ee58d6badffb22c6f701b98707bf49288a947d6a687a82c05bb39560aefd1a6f370e51afbb1387d7a4053
fy-NL|32|a019cd6ff86c9d397bea0985587e96b6b7449971155c419886fb7bfe8f09056007db1c544d094deb66e3573bf928a9d81576787a2e64058a1a8d9195ee975218
ga-IE|32|3f041d6ed37023162b1f5acafa5a9981874b8dbbe3fd454bd8751468bb14619713eb9e12adaf4bbc90d851387af2316936d15989edca1df7a028f1b4458ce7c8
gd|32|303bbb077f086ab02dd3e53ed9e199c7e68549c92bd0906c4f5eb10c39c5ff4c6aeb049304ff8bb1c3773df28e691a6dba1310e4ee859bf19f120b614ae511a9
gl|32|9301457ba949dc9ffe6bf3d00d6c39fb7bb29f6adfa47fe8ad17b60fedb23eb3f5a90d6dcf73e756debd4a3ce954887970a6e8f47130a9a1c4b6f11ed320c8c0
he|32|37cb6f90344fc710428e8a9043349d298521471cc8fe59a8ab0db7eae2214fe40a9c793dc783fe9cf59b5314ac21fd09cda5ec5f2d5db42e47f416748b57e5e3
hr|32|51bfab40e8b5d80158f1346f52480650dcb4ba0f89a6d77500f926a85dc27ab4ce5798511878b138b1f06102d7c07ff5fd4ee0d6be94da6128d6f2ba98ca580e
hsb|32|9887b7d690ecda2812707cbe563128a49bd8ae5b6514f44f6c1151b74111d5c1beeeec6400d9080e568508698e8c016d22f798a271e99f4430e4bac11f4732b9
hu|32|4c5c5f06504d13268407d8ba4384def18573d1d6efcbd293cae4e7fcc1039458a60eebb8e39eeb97d77809676548c7fbb17cb09ec7c431d3c32b503c3278cee0
hy-AM|32|24e0b1e2c51b202e5d2266766ff81a6c275bbbc21ba41c60a5d9da372c60fa08f3d8b9b44f365d5e477b7e580ec4fc9a4a22198d1415da180e052a914dc3eff6
id|32|14b8ef28e23c600340ccf90dea193a8d6073bb57504e077987fe0e8f433b65165d1820a0bb1165e1f1929647f569f87075b54fea03159a198058565338dbe19c
is|32|61fe352346e3a9734a82701363e2e2aed021151133d79bcd64390157e1eae08ed3a1338cee889e9dad0b77ce6dc2a539411979e5191b5f6bb135f948a515a29b
it|32|ddb5b11bb9dc9dd75d8c186e2bb9261ae6ef476b3a7efd502d2bb93cbbf920d0d879273e3eb314bce1d7be33facead25ecc28119157a845cd5947e6638325635
ja|32|5f9b5e2483a29e9007cf1443907f70955b03cc9afaddaf40a8a2c47e3f24079fcb351ddbeac00c4522604d9a10525eba9cdfe8c831d5a7d9399d24399824d373
ka|32|6c0fd6c924249897774e66b545dc18cb172b370b5e395e15d7d14655f67b5037927ea52c48a97a5dffe7988e170d63015e58fa7740c20b56b5cfbfa858ec8e19
kab|32|978301af420172a92aa353ee3190c2e0b916dd3f978a6f55f1c83aa282925cd5c2ac2bf1f745b63c162cba1cdb2f24af4c4055e3008c55206d1c04d260b9b571
kk|32|50f0b2e5566e4bc34bc8e236e5214b05a4a4b457bd7a75d165d15880d0e9f46931048be4b613edae29fb706ba282c54f5e9cae8839781a4591cb8db69b862fed
ko|32|d7362212620ce670ccedbd39f29316e6a980503fbc3a5d10484782bcca2bcd1d4b35ceb5c09c5d2d2c76225ddb316337c572870e22fb7c0424a0fb4c786b298b
lt|32|da9cf40c193e410b5b4e9efcfc7becd45d684cb6667b9c7e09e4f20ec2f029531986c493cd225207475f0d7133564e9dd7d10d068c4436f2d3ac0afe461bb942
ms|32|2ae9fa138ec54eede17a97e93aaf021517ada7904f1946836d3463c1d95f77f83d4d76eadc5908895975adfb0713cfd261cc1d25b6542f48469d586ef0973aad
nb-NO|32|ad62186c3fb1c69a3fc0538a38f9b4a8270a3c1ef43f2076e86be67d344d756a95635cca534309b5f0871f121abcc5a07ea568298240b1bba2d4fee48730cfcc
nl|32|a17e687ad3d631eb37ab9da11ca438dd46b3e55719c2281eeadf45e4c281497021bfea90bbde7faabf2e29bfc3e846956226147b92ba86da4d8d0cd5a3ae1435
nn-NO|32|6a9ff3ed8c69c1ea6cfb1ead38982b7460e1d702b433e617e3ee82c825a31d02bcdb55c2078e800cfc9c8bc53d4fb177b5b3f2eed57505880b1c06cf383171a3
pa-IN|32|8b253e69f60cfdd4f8f9feb9a9cad15429a2ff148a1d0f0caa3ae37a943cb84ecbbb5e8e308ea4b6360a8ea36627672d1daf125250d6d644139e870f17bf8f53
pl|32|51fbfc36755acb575aa368f9d38699b04d25b8f32fc6184840a0e5c4543316fee9f151aeb40ae5eaa02a807a1bf458602a8416c06a3e37be0fa38d4cf3b87a43
pt-BR|32|bdec1ae1b4c1b4baa3f2932d6d0781ea7c6a28e5af8aaeca39a35d41a0b2ec76d5ec489c67256f561c7b6616834069d59c988eb1a75a370115f9dcea2aa569e3
pt-PT|32|6d7f83794f5fd7039d78b87261232746d8af5541daba3c2a0925ed2344c29a21bc17e046976ade577c5f3fef71e7fb4a24cfa6805e2ae13d9c5ec2a1b099a9d7
rm|32|8cb4d189831402ec56a9730c895327160cb5f9af6a41aff66575a848f90fa83c3c7b98fc0714e00cbc03239dcd8ed7e24663272e88658fd4934fbbe81a123395
ro|32|5e8a790d03353d17838b24af4c2494d66c91f0dad050b230ef5983e7da2cf14538b3bf9b2eec41a5ada8fbc1f57d7e5d706727f76244ddbf680a833b04436429
ru|32|5e71337ebd9142b5cb228268795612ba1d6d15e94dffdde405dc0d939b72c9cea514b26fe8710fad644085ed2c031d4fcf130f6ffbd8178e3bb5cd90ea146502
si|32|cc5b73faded47840d2139886e744f2bb4de9e1a1681f5e64ea4d64eb3a18f8b84d8b3838d1e9aa02adca5bb6c3e877534829e978ce80f7ffd8a7bb03ea146d92
sk|32|bbdabe230bcae3c45200706c8020851e3ea1a3ebc63bf0b6cccfd2f7e6d3e5d8425835ba4d59f64ebe61ddd2a69e70a51635ea4a57d135fa2f1962888099f79b
sl|32|7f19e3bbdb94cb1664f408d4b22a08fefe81eb20fe5f9343aac1a20c02d9dd86ce38a5c1326ff60d3dc407bd7f8801f3cd47b3bf8d6e940bf599c5f0dab9143e
sq|32|0583f4105664a9a130444a28a57b7f6c5f6c68f96e9612303c179fa24c8b65ee5292f73774eaf8b063b700c5f037d322a498f3b517d2e1d8315df25a98e8d3c8
sr|32|142d4bede3232f0743e1f4416863a6bfca06091a6c0f6d79b202f72dff124de1960f86be614e871547d5f383c7466cec21415263af59c107e82ef4517b74a545
sv-SE|32|750356f08e93ce06d22904884fc5dc8a82b867a15a53e4481fb957d00d1c0e4e018710ed9b6f040131815601835af17ea46a312780513822f47d5a70a91093b2
th|32|b2535b5e464ded488cc95ed0b6f082a69842062b31765747bcf485b4f0b32ad9d684222375cd1719cb9a952dad6152b0a18e873c5d689d288f04c6a5dd49f33a
tr|32|e2f3d9d8cc29ecd38e549116eef769f1df4c7faa9e6e3e4cfe57acf0f022564e01d902f794eaafadd45d8de86ab1de8d435819837472b5da0c90053221065303
uk|32|798757f5d4ba3144799b9c3678042a9c9e6cb7977e35b388a82d645a573603d5e92c3b6ec41ea6c7eae7eacbce5e66c6670e2660ac8cafc023c12b89d8862165
uz|32|391c7e039c8e283b5c5d5aad8582badea2e30465ba3a80ce3975a59b2e40f51fb369a6a08e845121eb310d455e1439a0d4ac2844b11e9ff4f8ceec8368cb8373
vi|32|9827f7e1c5d7ca90557902c2425db18765f16fd22ff48d704f5fc1fc19efeaaa0b7e75213c4be8d3f0b6bfbeba27cf7f5715fc73c28dea5af19a649f3a7d607d
zh-CN|32|6e533b4f489f7c1bc16f24ec0f1797be6da2ea37ec8dc2ac9e48e6024c68eefa0b9e2bdff098219a4ab85e729ad8bd24f88760f322595f7dfcda35e719737824
zh-TW|32|13171ee2153c6c2d01cc07767d67a62c633c5b9eb52a5315e491b52811b7323044f9716d19337cab5b8fc0d382ffc680f854ab99ec01d129434049be15f82d77
af|64|90804d949912157d40049baf1d8defba41b42ac0725635548c4ead902c3716583578e43103f3dbbd5dfbd1f6809565b8a548d8d838c3fac93ad6010c8c23582b
ar|64|c41d14e046c5996d7c554815b488bfd2bbed44d5c7f47461bef8a1bf9bf69386e0cd18b8cfccd2f00b71ec14720271b715b40071d9b02b3f9875a67466d76056
ast|64|67eb89794e90a69c8ace811c34a1352e5fc29199b530f86ec839cf7dc959bc8daa82cb6acf0b4059972f3096005b87ef9ca4aa8c381374906c753bc15fc572a1
be|64|258e9531971e5da5f160d80bd2e7228f7cb6f07461a8069a4bc105dbc0e5137d1d1266e70e3213aed568b22730b6c643bea8b5e9ce2dcfbde0dd3a5cdaaf57d6
bg|64|73d95d937136b03461c9a2fe8f763c0c4559094a2d5652c8914bdfecdc0a977c5ac28a13e7af13611889d101064e54a81d473ddc0ac4c1f1bfb8864bf6f0c65b
br|64|8161eb431d2e8dbafa7b8be2f56ba9a719d37115c0f4b8dd70bf1a702e89cb912119b41640171d1ee295d6f459974fac93cbb79486e9f7aab4558119f2110e70
ca|64|a6f8cd29160819ab21c0ccaf2413928335fd2650456b73f3f6aee3feeb8a5d543648c3dda224aadda30c1860856ec15d16d5188932d12439135360ebda4eb679
cak|64|492cac68cc423f1a81a4e13be2eaea4fd63ad88aadde201842e4bb80b24ca246315135880c289cf8dcd9792f1e8f13049c03b6eda8ada948404510191545c32e
cs|64|49dc1a09ca85b00e49ab441e932cba2e2c7b6c8211ce363adf1c5e63929a3600c7389c95a51b8c68ad707da10ff509079947786a1c142c069f3b899acda5cba6
cy|64|402787e3e1dee27a2d3b9de4851f781ed039d66e844744d99dee0b7f34a6aa66596e74acb3944f6ad9b02db0de61291aeb4cfc5c451aca2acb73d7b7b722c3a4
da|64|76e74fe8ce5e7000d8669419d43f8e5145a3955c9ca571036a899edc28a8545c7978be5dbac30886733c204c22c635abde3937d305d3736162137e2483c89191
de|64|e6c80930cb79b59458e83293bffdde20d0f7719a78f715931a101cbd77d0c00698a87646a6b5d93025b65d358f852d3fac6efb28d00db571290a83af3d96af8f
dsb|64|f5d077857cc811fcb379be365d96da1dc84541245fe67cf35f5466d088ea25eff77c916ff9aab2a2c99696a93b839f0529a639d99298375b345a500c2a463a99
el|64|ce2bc79bc5d83e6c892731875edddad2f1bd9098505c384419c918391ec9e7be3d5c9fe1474eee55120efb6ceb73a56beec6ca1cd0fc2895ee22a5888c0ad10d
en-CA|64|3ccb813bea763d916099839229b6d514d46a295d46a74c545762eb9a2ed0d5829cc2382b0081e557ff3951c18912e2be9b0ec63cfcdbe234558960cb1971557a
en-GB|64|62049916738ad0f5e3d3533be90c4f1c4376b5e7f184fa0d13d61000fde01158bda29589634d270260b5209cfb5cb9e9d95feddc56c7151b415e84166b1e1d41
en-US|64|dc1e3ff3eaec205ae43f2b09975198eb8e707eb04b2fbbb930003743e6434707d2c4c4a0b3826cfd9561288ec7a4972866463e8bb431963a6377afa23fa741e2
es-AR|64|afefd3f08c012a4613779083786572925c578631de0f5bc01f55207fb806958bfe19f42306d36d4dd1e0cbc7ca28c43823524a720c4241914653e27c362f8da8
es-ES|64|e80c998f4119c12fe1689459ad14e76a433eeb6110893c63a6e24ebef2dab735ce00f7a3f51b86322dbb5a3f49a5132fe6985107ed1f40ddca80957a307deefe
et|64|501f980d649b02b8dbaca982a41ddc80e8ba510a4a90a56cc4c37621ba1b67684a82d1c2fca60f0b8bf5768382594f6203d143353f3156e71622001ad328ba93
eu|64|0dca114d834d9be9a3d30f3851d89700d651febc2c2a8a6794670c0bfa46851da4d0bd2da5ee74fb16e23e798d6fe38c8365a720e65e174dd6488d97eac86be0
fa|64|5cc0ba4c86b5ff26c96eb41ef06496b446f81f48f0634e1b8e830c8f551cd7f9b454517d880557dce891b8b476084bbfb2e1b3785492f76ed525b8333a17604a
fi|64|b87634199e7dd95a4bd6506be67d2b0f630767718d5f98981ea197d402be65df3f1e79f5a00823d693fd40caf7b0c4759aa65b4ab5e8e4ae12b040c6ac212548
fr|64|0a4cc6a2e58cabee9c340c58d037eb2a2cdccf5d76cd2de448feeadd58fa2d90e1db6d01d36ed60e8ddf9ea6d7e4d36739c7869845840dd9774fe244cda2ee52
fy-NL|64|99e0747eaa907c5f08eadeb42fca1b1f89c482f28453c0980b722a2372ca4a489d87e945824e1581929d294111eff36cd2b083ad54428bc81448631c2f8a78e5
ga-IE|64|17d76afb196630f9adbf8cf11c15ce809cdb64125b1916c67068d91127aef9a4269bbe6776b134b3320ed71790e65bc9c31fa13b4af0acbdc8a07f98975f9247
gd|64|f45e398a877dce05f400636c17a9f9be57e64e1eed8f43bfe954552d6ad09a30705267674109e60baa3a5438fc19616de3a2c75838197531b1d9dce9a27dd606
gl|64|d1e3f80e22b20f16700843d8436421c020609e0bc437fae4a2ca2080f1e185a53d55d4c5ca5e574bee9bc63285eedf4999c14131827e343b59623bd9ffd3eefe
he|64|9b1ef9efe409e3ce9cff65b02891c4fda4c7fbdc8a520581b2cce27d29270e4910d6e37136300fd8a7995507a28065974cc046c6edc1adf35a205fc30ca61d45
hr|64|21df3b0e12959f0d58ffeb63e986d33282f100c7676a5336d582c40d83d1138e75cac87d453e3e3e5aa9ddc2c3de546089f40c72124f2d98607a03a041459199
hsb|64|e43227f96678084943038508dce166ab9e13a34a24aee33b2ba9bf69d09f466b209f6582143954f104e1f564af990ee7259827af240cef30bbd9f98e1b633441
hu|64|2091dc252cd9f959f23f7a32f9975f2fbe90c3e7947d0c363eb976958d0de1a274b65c283a6ee084f5d0204f60dd050a72160b820a9d54b04471d37b386d1b74
hy-AM|64|723cb59cac64add3b859fc5b4460b9aed274b5862747b370a5f6e36735d6b183b1ea280e02dc3303e4074b5447c82ff2f8ae0c6e8aa5c295e7c84f485243d1bd
id|64|5b1bee126c84e6a4e4da693ccce033b7c95a648e699497d7139d72d0599d55afb9690e39473d5cc909e393491e938716706435fff7f059153e2635ed16cbc381
is|64|0fe7ddc24badd7614a934988511ff4363e27ceb6b8c7b578dde9e57565edb48a6e59b1523e440890c38a8ffe07dd1d89fb9f1577423997b38917eca5f7c3357c
it|64|1b34291ab451957e449f6c1387deddfcd05959f7f12bcc09003f3e20fc841345de53ea59e619378526c11605b2f82c53e53d0fba7f5cb729aafc2bce1c9c8389
ja|64|d232a3c55d46e4e69d9262cc99915a2fe2db1304f3cb3beb494b6ae2f6f7b94f7a6f4b24213c63edc21c086da9284b15609b8ee008129729369b5dba41d89ed7
ka|64|f466f9979f0f14ac1e25e98579e5e0c02f7a80256608b82cb4310a3d800d63570a855839e4cdfface0c76b2b68723af9f5c06f940b2ca93c09d7250be52b1cb5
kab|64|bb6edac02326c05dfcbba6f74a04827caa68f28e2d8f993fa12991125c7d3ceeb0787022acc79740e70c4d501728a97679acaee6ff3c2988c5829d42d29892d9
kk|64|aaba9d289e98f1c5ec543bc1f7263a5296e54dfa0d75b50e6578a6e6ba927f150f83eb611a5e7e49863a26c5f5203fc0e6f3829348c90ebb281c682fd7c9e139
ko|64|f4e8f468b888d5ffa11e9fa4dac512ec3ad6f615b2853bab57bab9717aa3228d7894888c10dcb6b1e91b640c15ee007aeb4e78f581c1ccf44dd69b3a177f6220
lt|64|592ad56a68d0688b9b979dbfd796ab796413a19e394116135165726e0a5e2bcb3a190601e1ea5bcd24e09f6c62ef497ec200e4df67fce08bdc5f777d79870836
ms|64|735e701462cdafd4f1bc20facc10957043c2bf9e6a682b6f86bd9b84506adcc4affe0d208b504a353b7d914bcce7fd5579819a9e6b9895b1284560605ebb9a4d
nb-NO|64|9c435b5138b118192c10bc873e75f5e0ac09829d9851b859f69a906d92556b46dc7a271267e11a439f06255cc08234d7b04aee071c8bfe064b7fa3815c1d1b3c
nl|64|0a8978b621bfd53556ab7b9a5906bf288a82f4c655cbab7304cfbc884914fa037284d2f727b1b53e911a8f76a04780b4d9f7fa1b80d5837dd4e04c02c954534e
nn-NO|64|c86e9e84bb8bd155a80fc7f3600a170c408851f9c2f02b8cb4aa43b2c869f019c1d17d637c6124898652e82bf91a8e182a2b76997ed71df24e28661f6b8ab049
pa-IN|64|e7f195511983c372c8adb9d233209d91677c27531b4fcb3d8b8f61443c399c2677d9e566f73a78c05c8970e4bdc925fcaf92d45a8cf1cfe6669f6eaa13b9efc9
pl|64|6b60985e0d6dc85495dabb6a9f698bf05d6f9743c19336056953772e2478838f3c89374e559a40ce6c309c711b9ac50413180f2a91498055e16f34a08225d4b9
pt-BR|64|dd08c497335ae14871bb86cb98c3a9187874100e013b4a01934f4b024d6e41e6fefb5dd2f5921590bce29908ca95cbce82816e02e8ce99ea52e8f2412e68fbea
pt-PT|64|be068a94880bba69146755330515819b358c7dc474d943d81e9909adbd34b544f24748df73ce479e640ed6a05ec69cf73f81f9c5c3a15080c8e0d689f0eaba85
rm|64|516bf80c2ba1780e0c408db4ecfbb88f40a7de972916fce2b9d8f019e6ff10bd2a89b424b7eaa10aab114621a386ca648a78cccdb29a799679daedba7892a743
ro|64|09589830c3db9d26d22343e11deaeb3a4ed9a179ecd723fb5bb85764067af3a27afc4ddb5326d4e89ef33470515aee5763d9903df57cd564e616f1a00064a550
ru|64|fee8c6f4b8d88b72af1c268f35c5141f37326565c872453f1ca7ff358a36493c29e4a69c386b2ac6d4d38d6776309c0f3d4271acf1ef2b3a15dd856677b6d1ea
si|64|8f609a0984e29aade12273b620b2c7b017156a3405eb5267497e124d337f32c51fc2bdfe77edbb337a952a8676fe41ba42ee857bc42f53947ba14bf28f3f29ba
sk|64|7f8e4e477348340d90187422ed140f11597e776730f97dabe4cd50c538e0fab95fe1b789fe138a05c35c82d0ec8058fe4eea142b54d2843ab50d6d729e48fc42
sl|64|aed45082727665dba70bdccab0c3d569b47ef779f6128a3db4c837ae4bf1b246b16b6166466531119c7509a98e9ccaee314d7bc5ccb5acf74dd8871ef072e799
sq|64|d55acfb6de577bc7fde67b8a79531cf34a922fc9208e10bcf82157616d4f15fc0d7483ffe0b59e4574c872a5519d495c41f273904a7007213b4e23e932d44313
sr|64|5326916091dbf224d8de91d893b93d7ed035875378b2a73eb4f45031e7a133a6ac29fb79df74a603db85b0ffc35095029b302e232d13b427ed426565db5a6c6c
sv-SE|64|8d54c7ead7e68fa2217dd0bbdd7db6094fb8dffac2f6faf55585c49ad14609caccf6544e77483823739b73f44413d40e4fe5538f58f31d7de3036defd5b3ca7d
th|64|1f7c586e3a691391a87f0db0bc184823ef5abe71d9170a4cabfc7d3f294074f7785bf377c22da5e3c0c6a71c9dec7d66856447b314eb74f2270b785369650d40
tr|64|9279cb815beec91abd98020552db38e3bacc2ef1911ee2bdc2e2c0442bc821ea396c33e98043864f44231c0816da7e4f21f3a5cd13c6df9456bc6276d84d63d7
uk|64|503ae70c106c887c0cb2de34d6ab4b857d18f75565ffd1e7671c74d4e71e962840839811ce1e3164358e3e51911ca0c0c34bcd03d4c4411f9176d8d490459f00
uz|64|4cd31bb7b114470408f2349f64cb738d275a5f6bb9d180eacf443a88af22f2c5814531af95d0c5145d1bad894cd07f5f1c02fcc31de7715de09b5e16bb94d6b6
vi|64|97c66bc6fb3f51c4aa87ebb1b789de676271d4c9f8ed8b1c33b68c069633af02c00d294d98971d04d933ad9392681ee2e54ef94984c91d91f4accbc2d7e062f1
zh-CN|64|d37100cbab49469134183521daec1050ce3ae8b02e659e22d09c7e5597bce96e7390b172ba88793e4473c162226de3ad17674084a59ad2ca4d78006a0cb59a05
zh-TW|64|ab278759756687a7830cceee3dff868af79545a90dee2c7cf4c365edbf2e8f68998b4c1e974b76badcafc96c8f3c0ea3d0e5150a9d140030a3f206330809328e

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 11886 Wednesday, April 17, 2024 Approved
Mozilla Thunderbird 115.9.0 34011 Tuesday, March 19, 2024 Approved
Mozilla Thunderbird 115.8.1 27793 Tuesday, March 5, 2024 Approved
Mozilla Thunderbird 115.8.0 27116 Wednesday, February 21, 2024 Approved
Mozilla Thunderbird 115.7.0 36209 Wednesday, January 24, 2024 Approved
Mozilla Thunderbird 115.6.1 27361 Tuesday, January 9, 2024 Approved
Mozilla Thunderbird 115.6.0 29836 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 25994 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 12347 Wednesday, September 27, 2023 Approved
Mozilla Thunderbird 115.2.3 19520 Thursday, September 21, 2023 Approved
Mozilla Thunderbird 115.2.2 21641 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 26997 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23753 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 15989 Saturday, July 8, 2023 Approved
Mozilla Thunderbird 102.12.0 35797 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 26547 Wednesday, March 29, 2023 Approved
Mozilla Thunderbird 102.9.0 25477 Thursday, March 16, 2023 Approved
Mozilla Thunderbird 102.8.0 35689 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 18374 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 11472 Saturday, August 6, 2022 Approved
Mozilla Thunderbird 102.1.0 17233 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 31586 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 19926 Wednesday, February 9, 2022 Approved
Mozilla Thunderbird 91.5.1 23607 Tuesday, January 25, 2022 Approved
Mozilla Thunderbird 91.5.0 22087 Wednesday, January 12, 2022 Approved
Mozilla Thunderbird 91.4.1 25558 Monday, December 20, 2021 Approved
Mozilla Thunderbird 91.4.0.20211214 16784 Tuesday, December 14, 2021 Approved
Mozilla Thunderbird 91.4.0 18883 Tuesday, December 7, 2021 Approved
Mozilla Thunderbird 91.3.2 27011 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 28782 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31889 Thursday, June 3, 2021 Approved
Mozilla Thunderbird 78.10.2 21025 Tuesday, May 18, 2021 Approved
Mozilla Thunderbird 78.10.1 19258 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 19266 Wednesday, March 24, 2021 Approved
Mozilla Thunderbird 78.8.1 21142 Tuesday, March 9, 2021 Approved
Mozilla Thunderbird 78.8.0 18874 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 20305 Tuesday, January 12, 2021 Approved
Mozilla Thunderbird 78.6.0 20520 Monday, December 21, 2020 Approved
Mozilla Thunderbird 78.5.1 20567 Friday, December 4, 2020 Approved
Mozilla Thunderbird 78.5.0 18714 Thursday, November 19, 2020 Approved
Mozilla Thunderbird 78.4.3 14893 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 20206 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11716 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17163 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16193 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5293 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18570 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16593 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9564 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 14037 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10394 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17192 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22049 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 18170 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13339 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 34979 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16906 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12472 Wednesday, October 23, 2019 Approved
Mozilla Thunderbird 68.1.2 17507 Thursday, October 10, 2019 Approved
Mozilla Thunderbird 68.1.1 17708 Wednesday, September 25, 2019 Approved
Mozilla Thunderbird 68.1.0 17547 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 25988 Wednesday, August 28, 2019 Approved
Mozilla Thunderbird 60.8.0 34703 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18396 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11127 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20025 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45022 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8111 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11753 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8087 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9104 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4667 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10666 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15308 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9161 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9235 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11041 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10555 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 15825 Wednesday, July 11, 2018 Approved
Mozilla Thunderbird 52.9.0 7459 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 14512 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 7228 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 8733 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5625 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7044 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11794 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2137 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2315 Monday, November 28, 2016 Approved
Mozilla Thunderbird 45.5.0 4824 Monday, November 21, 2016 Approved
Mozilla Thunderbird 45.4.0.20161024 8494 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 34635 Wednesday, August 31, 2016 Approved
Mozilla Thunderbird 45.2.0 52858 Sunday, July 10, 2016 Approved
Mozilla Thunderbird 45.1.1 555 Monday, May 30, 2016 Approved
Mozilla Thunderbird 45.1.0 463 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 2780 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5540 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5680 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5540 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 2896 Tuesday, February 24, 2015 Approved
Mozilla Thunderbird 31.4.0 2556 Tuesday, January 13, 2015 Approved
Mozilla Thunderbird 31.3.0 2430 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2436 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1465 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1074 Wednesday, September 10, 2014 Approved
Mozilla Thunderbird 31.1.0 986 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1543 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1506 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1548 Tuesday, April 29, 2014 Approved
Mozilla Thunderbird 24.4.0 1510 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1096 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 512 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 875 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 627 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 629 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 626 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 602 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 670 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 599 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 586 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 17.0.5 556 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 16.0.1.2 690 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 445 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