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,518,189

Downloads of v 91.8.1:

24,073

Last Update:

19 Apr 2022

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

91.8.1 | Updated: 19 Apr 2022

Downloads:

3,518,189

Downloads of v 91.8.1:

24,073

Software Author(s):

  • Mozilla

Mozilla Thunderbird 91.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="'91.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="'91.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: '91.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  '91.8.1'
end

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


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

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


package { 'thunderbird':
  ensure   => '91.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 19 Apr 2022.

Description

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

Package Parameters

  • /l:LOCALE - Install given Firefox locale. See the official page for a complete list of available locales.
  • /UseMozillaFallback Makes a request to mozilla.org and reads the supported Language Culture code from the website.

Examples

choco install thunderbird --params "/l=en-GB"
choco install thunderbird --params "/UseMozillaFallback"

Notes

  • If locale package parameter is not present, this package installs Thunderbird in the first language which matches this list:
    1. If Thunderbird is already installed: the same language as the already installed Thunderbird.
    2. The Windows system language where the Thunderbird package gets installed.
    3. Language Culture code specified on Mozilla website (only when /UseMozillaFallback is specified).
    4. If Thunderbird does not support the system language, it will fallback to en-US.

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 '91.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
  # We make an assumption that the first unique item found
  # will be have the path to the process we want to restart.
  $tbProcess = $tbProcess.Path | Select-Object -Unique -First 1
}

$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-91.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-91.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
  Write-Debug "$($availableLocales.Count) locales are stored.`n$availableLocales"

  $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
  $systemLocaleThreeLetter = (Get-UICulture).ThreeLetterWindowsLanguageName
  $systemLocaleTwoLetter = (Get-UICulture).TwoLetterISOLanguageName

  # Never change the fallback locale here, this is the absolute
  # value we always expect to fall back to when nothing else is
  # found.
  $fallbackLocale = $mozillaFallback = 'en-US'
  if ($PackageParameters['UseMozillaFallback']) {
    Write-Verbose "System locale is: '$systemLocalizeAndCountry'..."
    # We need to use web content instead of web headers here, due to
    # web header helper does not allow custom headers.
    $urlParts = @( 'htt', 'mozilla' )
    $Response = Get-WebContent -url "$($urlParts[0])ps://www.$($urlParts[1]).org/" -Options @{ Headers = @{ 'Accept-Language' = $systemLocalizeAndCountry } } -ErrorAction Ignore 2>$null
    # The lang attribute on the html element will be the closest
    # supported language when comparing to the system locale.
    # As such we use that as an additional fallback when possible.
    if ($Response -match 'lang="(?<locale>[^"]+)"') {
      $mozillaFallback = $Matches['locale']
      Write-Verbose "Mozilla fallback locale is: '$mozillaFallback'..."
    }
    else {
      Write-Warning 'No fallback found using the Mozilla website.'
    }
  }

  Write-Verbose "Absolute Fallback locale is: '$fallbackLocale'..."

  $locales = $localeFromPackageParameters, $localeFromPackageParametersTwoLetter, `
    $alreadyInstalledLocale, $systemLocalizeAndCountry, $systemLocaleThreeLetter, `
    $systemLocaleTwoLetter, $mozillaFallback, $fallbackLocale

  foreach ($locale in $locales) {
    Write-Debug "Testing locale $locale of whether we have the information or not"
    $localeMatch = $availableLocales | Where-Object { $_ -eq $locale } | Select-Object -First 1
    if ($localeMatch -and $locale -ne $null) {
      Write-Host "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|c7ca822ac65a084c8c700115019998356380e749e1e39e2030676432c40f22288494f7173a3d09fee6036c17f7ad5578095823cd9a56fe05aabf17ec3ecb4499
ar|32|460cfc34920efaf18582cfdc263e8570db8df85df989e7ca96d05099a27d3a701aedc08c9513b97090b10ba942ccf414701f12852728fb5206ca656a2b3b2bed
ast|32|36dc61338478bf603d6ff83387d2030d34d08273361d8d288b1c06e1b76e6a631a8a8552f5a34a497f47ddcdb4d022b7cc3640ad8c65de6fa8740fd593239894
be|32|9fc182ce7877e72301b88ceda460f689937b546f059ec557eedc49af2634ea8ce5907580ff6ba33e5afcca82017ffb721f7cb6b1cc63e7f05402b11c17ae45cb
bg|32|1dbbd6772e7a6b9459c844b51a83b41547129662ca01eda64f7d9ce54ded091c8e2c2900bc1c33db124f87f8c69d0edc994dfa38fad9623aa0013db6d6c80f1c
br|32|727b3dff34f2acf8e231c275fc2f17c44f6cf378dd8d221927ff77291e126bba8ad6d38cc196cc376c10c1e4b28e70a7bfe7fe5a89ebc883ac31b83743865ab6
ca|32|b7e0aa5c3252750a90f357aa9f28caa6b6c6b622e29274ddd76c1cd9d4d9758cd7fa511e1d9dc406f76471125705bd85e7a45181c39e845f8c03b79ced8add04
cak|32|4f29008cea1c845dc3f40b108d44170e59ffa1d33031b939408d9032d245c57242319a847cdfefabe75051526aaf2cd5f5c34a00bb7636023f5b45ce2f6d9886
cs|32|3cb89c1690adfae16374db5b17dea27fc001fe12eafd3b15e4ed1b48ed573a4b2dfc950c6375d544132a68ca4d68f62a9206290df8a9cb16828e768590a394ed
cy|32|4b0e3875a014038c22cac922f0f7af19565221135aee0d95b2a50520763d6386c9b538d3886112dce9d36dc1354598642d2cd5f0a1ccb68930a6cfaf02d3c28c
da|32|72f19a54300ae87a8b11b7144fae02f2f57c7a06e8c10a9da02d9c82f020c10c33ea0dcfde59865f8dfd2e7951c71c0dc2288ed2ba3684993b811652b374ddd3
de|32|68f0b64c6ef1392aff0d03683ac0d7124efa3aef692b02f1f9cd48cc66114420da89c08216f28ca4ce22fb41fd0eb9c9c0433d99e65bc401e12fd41068e95c1a
dsb|32|f835acef141098ee622d4bff12594e7b1fb8ff6c6e78fac602f0d462c38e6246174ef41381e6e2cfc806240772169f03da12fa3500142b027e91871bd32d7be7
el|32|1b7480df428965ba9979bb7cce2a3bb1a7c52dddc620715451ada9acfa5da1da3fb11846e993073f0cc394297f2c842e27acf0acada2fde584f75cb811d45d6f
en-CA|32|9966290d406e91678b8ee8e9a4fd4eca6373acfdd2962050422ec1012fc2693214161fed22f8eaf9724b33a9f1a629709e693c7a9a807260eeae902205a631e3
en-GB|32|6a3cc3bb9eec16f089bdd149099630131056686b64d5efba731b71046b9aa5ce4a3e440274633be18b76946bb9c7d12f3a013606479624d945af360e0bcfd0d1
en-US|32|1081905ef62d59cf1e6bbdef8fce37b1716268c59941a99c10a2238091e1eaa4fc9227e13bfe3168cb1a2b015a1220fc445db1033e5c1a605aba70bc4b5244ef
es-AR|32|fa5228fd62cc22a31962dd40e28133727cfe7ab07bea74a52f78da3e199f7d967babdc4af162b45ae78ecf76bbb6ecb7808eceed4d40c67d0cefa6cb3efc6394
es-ES|32|5684792bcceb9f07cfbb0fa565d194baf5786913a035b619438560d30abafd4ce64ff58e2fcc1cfcf1f0da3836a74d820d27460ca94b3589b4cda9c56d83938a
et|32|0d32c2c6d98bebd8e442d2582284df254e496f463d5662fd97b9f6456da2c2c37000088353b4999e4833bd08045415a0c99eda98ca85953f35b763c6c8b5a688
eu|32|09080e5b5a0d2c520fa3ae68042276c84a1c4df3898b94995d6273bbc26743ce5bae759ff8d45825797291830f9108bc8d9e8ec7a34cb3400900e1030387f5d8
fi|32|ec5548d5137f51cc1e6919bc7f406b0ca561d32977944f020faefe57f1b40674aca4ba47f9b4ef6cf795619a790f6d5596c00047bb7154339ed1b2ffc07aac53
fr|32|9e7f70f700c821d5fdec83a5f6f89d9ac947375cdb696d155ae12c99b7368df614efd0cb30e076c25c5be2628cafa755d7c61926fe02d88f8c36b7f833c816ea
fy-NL|32|e0108b74db93d219b41e5060a6fe2bad82ee8e0ebbed8e79c32906cd4cba9b2e364d3abc2185db46a43b89f782145fd08043652187b759945db1aba1fda6f610
ga-IE|32|59d8140a09514032da040737c5bd9b2f747534e3f124f25cb7fcbc4d648d04e6cb85e28451a203489204a085eb4c3c4e845fbccce4c13309734509b78861ca44
gd|32|e3c7605a103d193041e19a09229a6a0b8f7624bafd18594352cd2eb874607ba3cdb069b4a4bf0f77322e934ca11a173972f549f23853443206b3d737d8f2b68c
gl|32|5fe9b9ae3e46401dfdf6582f57a479278ab8a7eb701959a6cc2f76761bb98a92704c531599dbc7990c59888549fcb287e209b67d36950ff1eadc724ed82d0528
he|32|13c5bc33e224dba6fa3c836736c4c7c21be372774c06aa4440f77643a4a84a1e81e882e5162e98eb6065d30e849fd7658ec9e120882da8d0dfa33e6bf691600d
hr|32|a4fe98f4c3f2e369d3a78f0b1e24b8082da40b127650de51608116ac1ed7cc0c4820466588a369871605c8bd9ae5d4dc6f2992ba846068581963522d8a1dd3e2
hsb|32|c98ee6ce236bd4ee047d1622617977fac06aee36bb538e84050b98c50697725508af3f30facae1eae30bd30ddf30470d1adf81f20742f0dd9ed6f6218b39a4bb
hu|32|619ce7cb15bd8dffb93e41f3a6aec69ebf1e6058e82a00d1eaad4d1c3fde839d919252e15790eeb604691dda51432448fc1ec5fced05d494aff6eb9674af0fe4
hy-AM|32|4954e09fa3deced7be8c3c36a83039c4211d13723b5959f4406a741149eee04cfac9ee22e13e23367b2dd2d4d8c6dd1c2950775da9c8ef95e8ab046b13c88a0e
id|32|5dc4bc80f4963d11a35025edabe91f21a8c736b02b75d8950b80fe987070f73f8c99be427d4cbbaf58620e22c01a70d47a430ba399c14c27115263dbdaed4c3b
is|32|3dd8c10dd027b7b659e161cb85472424a0ac2ecd8beb8f327dffdbb8c1bd9a7f8f61509dbb57ff06c17ed7b6a9a807515148e36cd63cf3c838b4472d22418ef9
it|32|d8bbf37f79ca8223b7c10743b0af106f1da3f214e94a033b4d66fd303ddf1c6e3d7905ffb6edac405bd614bd8cd4d58a4da5bae9109e2cc00e5446a082043ab3
ja|32|49ce4f83efbfa1373505734f567bc03168d15015827da55f290ac8bd484709877969fe4addf9df6c6a8854bf5c69f0fc7c9491251571296ceb682eac0c402b74
ka|32|723cf1bb2edaafa6284384336d65e53517296fa7198a95fb378217665243406407285119d762e9cec0a037d256a5d08bf384a14ae6d0d8e26980b67e9cd3aea3
kab|32|0f61f652f186c57ce2b03a9401a9ae6eb27dd80ed4cfc565cacd8b660a0a0ac0d4104854bbf891b33a11ca3816b36092085fb97d56a6128a783997c4441e43ab
kk|32|129b7106c995d61ab9e918e5a4b7f4ec371ae34d11c106b6eadfaea11ee8e9a38bfea1b95bd5dbd2bcd03cb716ebf0dd7868470a7723dd9b4ea3911fd3380607
ko|32|f47f7d8fdb260ec66db5ae5b5d9d7884f899f07b68c3b2c39b3a1c4c272bcb36e5c3ad331ed129cfacd12bbfd4883c1c0291f25338684d46ea200d7ad8daba6f
lt|32|b26dd3efdb430cefe8500871eb9e9b94e8101f568635a3ea0aa0c79c9212d0a0c90f0a665eb267d604f34a42e4f5fcba6606c7f608af9ca06841258414c36c49
lv|32|a4c3f492ab18ebe409d27f4052963134677f0e39ac5fad0003b3b4223f80e7a7ae31d8c0709828fc95f202682361355f2a0f54cb07eb0a2fdbf02af73cb5660c
ms|32|63a4aafe742d6da43c897e8608e260322663e46ea14669d572e45f8a594c8c26c0b1eaf8114fb3fbd4024478d6a461eab119c6f1bb69910b78e67c9b541ce4cc
nb-NO|32|f52e4226b9412e480d4d98e8a53b98f1e2a60acc4df240d0fd08a90e6c2597cac7b4e725d689fdbab337f9bcb46dc981ffeb179b9044a292316596ae2a3e7a2b
nl|32|0eed4782fb75db9a63ac93cc301387aff36160a91b8ddf588eebfeff98a46a7da60618bbd5cf6894bf59aab818997957605f908ee42b79b02f8ec9dc8c5b5f3b
nn-NO|32|24f1c2885f21b098a37ae249bcea846ed73730f6e70e18c000ed781745bfc03e37fdf50184b796c0797c99b00215e4a8dc9cc856783a844bf5b8ce2557bf72e7
pa-IN|32|f23ee5d9f6c64896f09ed964dc8a8137230098396bae16e06c5d63fc65db62b3246704b3493c3b3a6731844740ef807768e89ba8372f5d660e0d558286b3da7f
pl|32|525eac64b5fb6da9db5df680288a8296b1909b610026b4f54f969869717faeba96cfeb756e660d9cd7c3b2187b115620c67f251f016a1344b8e5b641915aba22
pt-BR|32|2fc94dd4650f85aae007e457da47969a714946145d4808214295186f3379c462d87474b052f7b9ab3cec787b13fc59d5b55a09f4f9003de97e39ec5d41c3634f
pt-PT|32|08d715f22317b04a289618dfdbbfeec7023f22b7c9189383b9d58538f5966bab366412177562cd892a5f9ce6b115f9ba18e54a2032161ba2e7d5a746134d8fb8
rm|32|4af903ce68b56021f527f5ac8126c0316cb57d86f1c656b42626bc801174eb1610b95fee176b3c9dbec8c9d6aefaee9f7070b83266a78087af1b62ce87e0ee16
ro|32|bb5a3ff2234ce88419f2b0774ec79e5a02723d1f63ab9920e0e1e742dd6a92048b24d15e5f6915aa9819888cc8cc9b4c49e4d1358d37bfbd4da8d5509348f75a
ru|32|83f3ea8f6ae4771d718998684d9b035b31ed1b0cc5e5c5a1bb49fddf73109b213ce0501a2209c148ca258f241cf8032f3161cb8ad7c1cba63f71ed951c7ee8b5
sk|32|a8d836a519d141888471345db68f4e6291239d9c151e3de45448258abb9212307acaa2bd96c39408aac20a55d1d7f36a04ed2e203fc38de4766b2252371362f9
sl|32|1f20403c0694f8a122fcf781303abc595f50b1334fe27482e752134dd6c207b8213b60e3bb20501b56cf50c5556b131a9802164781f45b112a7629d3d860d058
sq|32|777a0711d0cbcf79570214d2c47b39250a1be0b32b509d4884dbe7695a7f58e440496f43e1903142b338e95d5a50957283978b84db01087a6a61e471ef09acde
sr|32|c2453aa24cbd7de2f4ca2104a2a50a50da08877973f35826e35748a701503ee810cb4be88371595507e7e4d9b52ab54dc28bb493e3a5c87300b501297e1f7d90
sv-SE|32|d651faf68707562523b5e60e5ea57fc09732ad2965bab0bba5cb5adf15d23188bb692fba7981865210afcbf41549a4c438783a4beede6cbf6d0e3fdb3819e1e8
th|32|62e87cf72ac2364b18c8bcc641b8b3c4ee8d22915c696cd5816df3377c26aa523b9193464e118ba571411a084a2c6f1b92bcefefe15eddd73929184d9032927a
tr|32|de4493901762422720be6046c82c37aa0dcd7240763270991c6dd0041717dae17af344ef00a416c2592b841cda379589901f53070e0eece767a97fd5aed57b6a
uk|32|72ed7097ae6354917dfaa0849d54f894ef3943f23b9bf88e2c0192b1ec56017e5d77078085b6d198a4ba33bad663706da6b49980842d11d2e4b83fe68e02f7d6
uz|32|a4267e159d1573178472b1bb7027f708fb305c4c4266472423b47e0409f19a6b4581b38457d5d088e1adcf66618d010232917925a1c63c6c2d39af7020757af8
vi|32|2b5c7640b80edea3f52b0b881c6da523d2d0b820340e30d4dc1534fa2adfe9727531424ec2b5e9932e43f88d241c2aa2b3ebfaad8d4decc501f204ed548fd5ac
zh-CN|32|86031368c64bc32692fa5e40c1219375dff33df4ec569e03ecd0790eb76621b64ed3287e07ce75809434282888cefd919d32072d45664dc70d4df70af8416e51
zh-TW|32|dcb36fe09d2ee9a2c0cbdbf6b3fd70066ef2b4af1d6ddb96a286fb60f9da70510e3f2dad346fcd7139e84b03e5327eee90324c11616536ca63cbcf1b694a3efb
af|64|3c74fcea670a7e17be299030b05935dde32e92677bbafdffcee1a5e82c02264ee24d19f46a4a738b39cdc6fabecee25e49cb3f6cb08f883f4134548ba6a2fd4f
ar|64|df35f9e119ef718ccc3f14c91df5093f0f493a2d115f124bc6872649ca793b752262ff35c481f4778b1a172b5ed69bf8fd3499aa32400f7e001c5ce317c64edd
ast|64|ed0564a12a547531f18d108da61d1573f9912545670dab937c2877d761a01599a6c25c2950ab6d7a91572c19b83f1e02a27acecc3d4094f62c4de0fcf289eac5
be|64|6721f2cbd0ba5c6d86e8f6648c78cf1256ea63df78e06cb5228f4b6cdddd818d7e85c8ef0a1c094880a79f869eb825a22599a2573e04389b1295339c8ec73425
bg|64|cd2430972e6a22b25f4fa36da56031baa27494359be2ad0618080e53479d340a043ed40a769b5c2764e4fcf3654d45c7f8ee108fefe52aac85834dced0aad05d
br|64|6b328ba4ee87bc036b85c1cede66719dbd069dac5d45cb6442ea47e5013764d66acf872030e8bbbbe10538c2840a99ba64350a3b5e40462ec6c867dff19ecc2d
ca|64|b14eae25efbf15f53f3ad924114823857acb8cff4d36307b9f3237e6910e6aa901194305f35cd10d1547a5107bc8c5f6cfdf8b3b9d676b23cd5c7e24128691e2
cak|64|eb346fcd3fe7b9cdfa2828eeac7fa68399d7ba1d6a5507098493f97a6434e3420d955e555cbd6ec1273d0e8667b5794956f037b3284f651ef27df98e8a600665
cs|64|0238c73bb4ec5e9e13ff6106866b29f270feeb1237ec7d5414f2bf7e6bcb39fb7dd7b9ab6fb3e4a8920894f2f26ac0592d1b76c7ae2cddbf2a071de6f7ba1339
cy|64|778cc8cc1177bc2b31ff4045c4b90459b757951b1946e53b50a14359220bf3a3fc16fd608556337a3ac92e0264caaa07941732407a7e3227a7e91e3b639ce0f3
da|64|80d0699c6002e82a8dd0d66062a887c8605aa2182b46333e21a132a669d244fc3c68d9169bfc3db95e425a15e3f964247c207b4a9bb481e5f452566a2da824ea
de|64|aac8d3f7b68afc7acbb54b6fc7d68c5df234b7bd636768a418531bbf2e9fc73d0ef214784cae3027a7ab8e71ac3ad44adc8e4999a2ca84b71bb7b206517f0e9c
dsb|64|3181df6505ce09afdbac48cfab9491bbcd5dd70a4de53f35a502e0ede12f47059e8a2d5537b2c8b72c04fe650f4727660826708fe883b6edb708bbed066c07f5
el|64|c25fdd4c15d018a8ab8c528f677e59bafc678712e92cf1421e5bbf51346071a2edeeccaac575324cf98ca775e7d61b5c783c648c270a08e76181819e16f67bd2
en-CA|64|350a77f2d408b9e50bcdd14471523e7d51f9713e7ee402e273a351ac15863e0f3b5d415a475454d8f1ee8a4c103be293d3928c94afa108ed7944ed0c83fdc33b
en-GB|64|46cb9a0ba55d0acba2686f5f21057dfbf073f278d2ac5c4a85319bbc3433816b94e02831676d3cfa43faa30680dda38d09f6097c7789339a1f7f0c3d04cdd195
en-US|64|a84c1fb25c4bd6613ee24ad3af5a71d24d135caa06017c9e38d360488ba9737e13207b6c07c6877c6f588bec6d9804f04e8097a498693c9992ccd3aedf65f95e
es-AR|64|e2b8612ee276c1508801238754205f9bf77c0a567bc45143ef9762d6ef54e53b31dabf2cb4f8a464e95d39e036a4ef3342c90dc935c97ec76727f2eec900110d
es-ES|64|8c51faf308299a83fe80731f9cf9560ddc4fad67f622103d874f358def2aa261dc03bafc3d7d45a11b119294d6b1ac5e1883927e782c8e82686fbbd8686781d0
et|64|a640c0f7c3c8bf0cc8dfb3ac20160c1ccf286bd200e0a238223312fc5739784dde3c408ef910b32c13bcd80350ac9e9f482c2c23a2280c42a4bd2bb80f340229
eu|64|ecd5df599d21c13a599e8d6770971a70bb8653ef0e1594985de2a49eb2d996ae2d55a7435a841f7a37f87ef774ee6f78b7f20d44a60c38a766f74728df2b0ad1
fi|64|bd77f238f6bed563058390e0bd2678ffc3c14613377580f65d002305a4c970d3c005b4cada4a3f619dddbc646f40799761dbb586a1f041aab2cec8effd3fe1fe
fr|64|99c62018e413fb0c44e820de4400827b7ae0e6c77056788bac8bf60ec2e7dd3e38202c5e436a7cb7508fa5c220d8d0e428c1fdf2dd85e18850267ec0a397861c
fy-NL|64|30e96e657a216afa657a73c9a954be2eabd5377249850349baad5368bc49577021a6c283e06b338f6708bbcbf9a522e2a994910a501a9ad54d0461e593f931aa
ga-IE|64|ce822d62ed77bff65115511d618a391b73826cdbb076665e57870acd2bfb1f0a0e5e0bd3f80d013b6c761e11cf9e210174c659fe47c459ac2b24050a431fedca
gd|64|ba9701acec48c5f922b76018d783e935a994698b649bc46944bb844ee802169c58fd249f0898b4f98759f32f98392cf635682ebdc755a5785cca397074354ed2
gl|64|f2c2dd3c91d717c746178d8566a67f8014cedb52f037215bc28776429f6c37452be060ca480ce59da04c1fa788414fc514e070c6af82e03d61ae5d2e8b5bf6ff
he|64|3a9815c104041869e225d23f6f992029e3123d768489d1ab909ce465885d63a67f44b22d7bef0bd978cc8ac2893edde8a325845986454343d14a656d36e32558
hr|64|b966360d9c923fc2c8007f5b4e7b8059546fcfe033c618ec20c9313c7ab176fe1a5e331a74e17df3c74f9248c4d5b397b97bf6bd91c8ff80d737b4947f90e60b
hsb|64|90a04fa56fc856279a3d120cc8bed9d60ade25dfb58edd36f859a536e1917a23051719df397c7b49a9b7cfc6c2bbbd7af32d8d8c1e47f33dbebeeca68adf84b6
hu|64|07d40923cc417b1ea24fa98c67637960f28dd1e0a6ffb028473eecb37394a6dc0188d36253fe38b184586849bf52d7cd9c9c41a6a977ca0d305a31042e86b055
hy-AM|64|3989c43357bf8c63a7bb0a4fa84d4319e8b780e244a77fccde98c2eab00a731cbfd4c200e9de27fc3800b2a127193a1711a67addfb58b86af6aa92a169b85383
id|64|6907712ccf93b2ba226e17de6192956245a16c97d076119e507bda4f336d6e5c4d7c20b09d649e24194bc6f2bc263404552d638186a4e8ad02bf73535e00dddf
is|64|b37a4a9a5cd3ddbd394339a44d49f2723d01d557d77eb5eb1d82ffe4e0587e6c509b49985cb3b657bc090a0c634e8c1ca92768e848563c1e200226431f693780
it|64|9af264296ffea3792f7e3b1a4115d78790383b6bb03173b70bbec26f5b19df1d750445c07ded363fbedd73166d64f604beea2a2a77fee4dc41a6cca5fbd87fca
ja|64|ea8bb070c1c7bde8cddeafd2b8f218c0b09b26553239a5e43e30236cfba74352f47f6d187025896578a2d360d3da4cb12844ea683e9dd3a5e857d0ca87e84e97
ka|64|7ab9aef9e6aa1e7fbd7a3055c90adf80c071a1e0932e7e2196a1600f8584eb4e719d54964fbfbbbb17a5d34c0453c65d4617a923cf5a15706e7606ad839aea93
kab|64|020da394ebee5d2bc34450f1e8dbb1d200ae807da935f161acf569cadd12fa03212140f89a11c41c3f24d94e17ee70ecc75c0a15a3d5f0a07cfd553960b95e96
kk|64|b66adb7ddbbfb3ce5c56463c57006d50dc1d68131d807234fbb928cbcb7582ce2fc0b3cd393e923dbf765802525b926fc88d588ac420a749f871ed9fd1a48c3a
ko|64|bbc67cb17f65fbd5b830b7d78a82768454feee60893cdc0b371eced3541a20b7c7df125a32bd767605e9973a854445d2d76ad476e410a892fcbe7914cdb12a7c
lt|64|1b364c14bb86b6e65754380a8164f510044465fc0637697ae3671125a828d4af0e6a2b2f3610d87d806a1a85e090d27e1fadf67ca039b027ebe3d04fd4118bf5
lv|64|664b08e328d049acf601b8e1e5e966e859fd10c7d9e4a58b74176a129b8506a820809264ef90d4d952d3350d35c006823f5cee0f7ff16acc85d915c8d140ffdf
ms|64|9e2ccf42643fbd30b0ce7390e8a1f4727f381faed0525752d9566d6c0f595242a2939730a1a8f8a983051226dfa1a1843a5eb92c6b0a6ce3b097337b4e22f87d
nb-NO|64|326b4e6c11a1551eadd39d7bebaac92388eac858a71cdac0472345eeabbf453b2dd622f68f5def2a508512c2a05949d662185d46447da89817b1edef0f112d55
nl|64|854a25a50a79d3dcee5729791a0c7d14e411cc222e204a62298097ed7e4f346d416b7de94d907c7e99c0e29bb41a2b2c5f783b68f504e94d5b2f58fe9b423c14
nn-NO|64|9d8fa0d6a104473837a070c39947608ae380e7a502a3fec5789f6df661a81bad70044a3547aa9775ece656f3283b784308cdb4b09ec1bde9403021035d79f5f2
pa-IN|64|a13b72d8dc728cc9ec974e7534f3b30f33a062999dfde839ac36c3fd4cacbb56590149f1e8073cf8805031508f32537f2e88fab5920064cc5e4c7981654e7c4f
pl|64|fab2eb1d102bb687ba3505f04dffcc46d2e2c442896a59655c8e5c4388b6787fda16ce023f3f1b8a41ae9b07aeb278868e3bb8b781b6a8eb10c967d7eac58ccf
pt-BR|64|ad9e28e0de0954a5d2d55568e1e45ffc0a12e76e7af2cd8e3149a56bb43daa569f3da8d209d98f9b49f7d69c53a1fdf5557a3440a3372ccac390fa6efca40800
pt-PT|64|875559f46ce86b838b1363315319d7f600e06988674218e0fa67654de4942fb2792864305735f8de0074695e82186d4df0a35c1642c8543190fc91bb5b9a5a6a
rm|64|248c46b83f164595dd3bb2eb5129c60ab0e85b45fdec7f3c0c9c1677a4a72b6c4295c00acd2fc28bd267b1e7e8c2a518096582810da3e1a03b42c2c963b521a9
ro|64|b14a448713a456f7aa67b837ce9a474005c617f12381a6c188d036a7732e1d9b41edc22058545c84666c2dd7f921cef29a8e796e9bf1cff8638461e11033ef5e
ru|64|66eada22ccac743cade33b8eb90e92b48fd0c5ef60e6445d23f69c0b018fccc7f21b0bbd6207cf4ee3c19d5bfb81f7fa19ec00bbbd74c1ccd4c5e37ecc574f49
sk|64|f03a79746f3334da96354a5be9810726d97d9ce19821e8b5d1cfe746458ffbb7cabcaeb18583e3b325bed2c8a8b08fac1e1c06f52ee89ce2f96a6cc8b7d38668
sl|64|881cd399fd78d6d526571c8e00bbdbd1549c164b09cb0c405b9086a0db22b2c197c9cf713dda936b12355636e5960777d11b2b2629966714a59af13042d95b23
sq|64|d9f0e0af6ff08aebbfa74346e013f16a45be65636a2f20141c8af0ed24a74e43b5b40fd16e9fe417b7e476cc98cc4aec052038a565b38212d1cc516f01e89046
sr|64|d1aa7c341f21fa730a8519f6322feeb972c07445c7ca28551db07f3b52f2ea4dd89728823ce781dec76098c5be9dae6ef7d4b4dff8d9ad170ec482c3263f504f
sv-SE|64|2021bb194a0f5fe2746fd623b2a4ec37fb989aaf2565bea84972131553867cc665fd7fcba7ad92946ca76bd453f47ea74e3ad8a163b8a2a9e0da894ee9d82456
th|64|6fd2b9a2d504b8514c2d75789f5c81d5c04ffed22101507397e8ec9deeebe84c689f447b62e7c66ba7578c5b5f3ceb5973ac82c75e4cac4e37758402c3aa5434
tr|64|04052f9e5bada85665e8711f8ca253b63bc36af72334d5275484b50e7d434c3b1864777408ccce12e594eb6ed6d69971eb9a7c5e022db2dfa742d0d5b6130b3b
uk|64|23809e354268757aee3ea277f8f4f9316382eeaad3e44556f62d7fe91e8e3c0d51f42f98d58433865af5295484d711d3b741775f54a9f5a944126858052afd91
uz|64|91126d5f8fbfcc0cc5c242eedbf30d4e7cc293e224e564be4370e7b3ef80bc3839936f53563cfeec1dfbdd5acff2dcb80d703fb31a4367d3e60992d74265e7f0
vi|64|325c472e485342c24e189612185c78ba75fa03904a1100d9b175035cf7ed75004eb947677a9f3403b03cb0aa2d0f0bf07ba3da3f0746311986871ba6f5d2b384
zh-CN|64|7580841e137a7e04c1edd33e5879641418d1bcb877c04820ef4e7b351a29ccd8edb8d9b3ef76996e4bf346468492531cc28d6d52abef9c479cfe1d6c9480ffb2
zh-TW|64|34e2e4907ff38933a5439e776cbd11b22750542b85f9e1ff2e9bde1baff030f49d47a157e7f00de2bcae7e7b27ac8c61a927162ff20fde7cb337fc285bf33694

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 11890 Wednesday, April 17, 2024 Approved
Mozilla Thunderbird 115.9.0 34012 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 36211 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 25996 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 19521 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 27001 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23754 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 15990 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 21417 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 11473 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 14110 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 21173 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 22089 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 21026 Tuesday, May 18, 2021 Approved
Mozilla Thunderbird 78.10.1 19258 Wednesday, May 5, 2021 Approved
Mozilla Thunderbird 78.10.0 20992 Monday, April 19, 2021 Approved
Mozilla Thunderbird 78.9.1 18524 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 18875 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22957 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17628 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 18715 Thursday, November 19, 2020 Approved
Mozilla Thunderbird 78.4.3 14893 Wednesday, November 11, 2020 Approved
Mozilla Thunderbird 78.4.2 10862 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 11717 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17164 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16195 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5294 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18571 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16595 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9565 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18425 Saturday, August 8, 2020 Approved
Mozilla Thunderbird 78.1.0 10126 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14038 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10395 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17193 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22050 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14087 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18418 Tuesday, May 5, 2020 Approved
Mozilla Thunderbird 68.7.0 21870 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 21221 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18626 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18171 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13340 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 34981 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 34704 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18396 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11128 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20025 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45023 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8112 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 9105 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4667 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10667 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 9237 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11043 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10555 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16919 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24439 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15826 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 23730 Friday, January 26, 2018 Approved
Mozilla Thunderbird 52.5.2 16330 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 12713 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 6005 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 8815 Tuesday, March 7, 2017 Approved
Mozilla Thunderbird 45.7.1 8735 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5625 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7045 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11794 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2138 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2316 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 2221 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12298 Tuesday, October 4, 2016 Approved
Mozilla Thunderbird 45.3.0 34635 Wednesday, August 31, 2016 Approved
Mozilla Thunderbird 45.2.0 52859 Sunday, July 10, 2016 Approved
Mozilla Thunderbird 45.1.1 556 Monday, May 30, 2016 Approved
Mozilla Thunderbird 45.1.0 463 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 438 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7795 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5839 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6098 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2781 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5542 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5682 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5540 Friday, August 14, 2015 Approved
Mozilla Thunderbird 38.1.0 3977 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3301 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1883 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3657 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 2431 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2439 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1467 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1074 Wednesday, September 10, 2014 Approved
Mozilla Thunderbird 31.1.0 987 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1544 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1508 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1550 Tuesday, April 29, 2014 Approved
Mozilla Thunderbird 24.4.0 1511 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1097 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 514 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 876 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 627 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 631 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 627 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 602 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 672 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 600 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 692 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 446 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 464 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