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,517,360

Downloads of v 91.10.0:

31,586

Last Update:

01 Jun 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.10.0 | Updated: 01 Jun 2022

Downloads:

3,517,360

Downloads of v 91.10.0:

31,586

Software Author(s):

  • Mozilla

Mozilla Thunderbird 91.10.0

This is not the latest version of Mozilla Thunderbird available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

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

>

Deployment Method:

NOTE

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

1. Enter Your Internal Repository Url

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


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

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

3. Copy Your Script

choco upgrade thunderbird -y --source="'INTERNAL REPO URL'" --version="'91.10.0'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade thunderbird -y --source="'INTERNAL REPO URL'" --version="'91.10.0'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install thunderbird
  win_chocolatey:
    name: thunderbird
    version: '91.10.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'thunderbird' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '91.10.0'
end

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


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

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


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

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 01 Jun 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.10.0')
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.10.0-SSL&os=win&lang=${locale}"

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

if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
  $packageArgs.Checksum64 = $checksums.Win64
  $packageArgs.ChecksumType64 = 'sha512'
  $packageArgs.Url64 = "https://download.mozilla.org/?product=thunderbird-91.10.0-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|f5c81e108fb2b0f8c460724e683d71b6a6138f30fe983b6087782499d190c5ef6f51cb55e0d7369438a65aaaac4013386e64c094219292f00d75d35b2640f8a8
ar|32|4beb0bcb50ec6b2d4efb0abd0d25329b36896fe6d3031eca0451600d93258566f4d3ecca6f3a08d04ab0d13c2c642ecb774d8bd6ebf128bff063f5f9bc2bb635
ast|32|b074b9ccdf9bc2c1db2347840ebe6847753ee9eece327562e32e6d2cd885d5f056e98ba2ef255b7a4d3033bbf5f55a54a88009ec19de48333d04e160efd5f79f
be|32|82527d5d572eab54575643daddff51bd7aa153933dc3d0fb6572ab1ca5ebe01ccb67d2b86071d0188b5584678f54bad3d005df24dd78379174ebe7a6d131eb70
bg|32|41a2f5099bbe68e0d300bb9b54f3d04a5e5bf5d47feca8411bd4966ac26d0c22623b11a16e079b7c6cd9046c9c4ad31829224ee6c72eb0e64029aeba4bbd0854
br|32|b8cfd1d460d3a1d7ae5e3754ca20587bab41ce1e407028fa6478ddf2fb6e9c7785dadcb8da42c6852feb64122487cffbc074a7c203a176962d5f8e4be0b10721
ca|32|6e01e749e741b9513f6590f21b9a6a2a220cbfc6b5389960e7f939e6b6cbcbb36ac264148d5d78cea945c22f91ea09d242f0265ec765ecbc9f0a5a9be3134245
cak|32|fc269b6c79b1073dcef0894a5c19a8a92521aaa114e52103e9440f704edd5e24b6721aaf60af953b183762b23b05983076fd2cbf7c81966a14d1e5f4581d5d16
cs|32|76007a37404982cb9b25c44e765befb868887a820e7428c3b8f15945b23ebeee9aac1cff68e6f4ddb50f95c605d58785476a5cb70653e7bec1423e720b8622ba
cy|32|a23b9363674e3c33099b92473e70c85c7c44f0d4a53027759efde03ce988a3da2384127fdc9595ab0a703e3c8c624de4ddef6b8a87836682e07a6d53394c12c2
da|32|f655949fd9823d64c6e2e8b218bbc2fb8294feb9c97e93ed897dd7e0d9a980db35045d05324e5af6df58989834c1eced8bd736741f943c9bf831e79cfc15c175
de|32|33b261a267bea110c3eb70faa299ae28e9794ed2c6a34732861eb5cc4398fea1129f94d2cd772051ff040d177015aff440e0577cb333d47a4216b43e666032a0
dsb|32|a63714805a0fd502828bcdb6e493e3a3a10b1f638be6f16d867eec85704d7a42e95cd0b08ff6aa6527430870d4e9cbde1166262034c31405d95cbc4ea199ebf7
el|32|6dc149ae3cc51b52828d3722b1fdcbb0bf16bc50ca87e5ba2b604a1b6b55d4342e9b93d6e625072541cbb91ea8f13cbacd9db879df9627e67b4dc3841c778a16
en-CA|32|a71e400ec156e9e0a15a1b58cde9b425b42ff047b71d8a9e39c039f1c31b5ba4e93cdaec6e8c9e9593663d83c1776b81d08515fb0308c2d3314e6d6975bf4ddf
en-GB|32|dc1429dc1d643f0ccec684e1063f61300cc9b388959b833ba0a67ab1c98699cca9da08ce2889c97f6e1c5ca93f58017622a4ec98359a4f1198532f58b4ab0d2a
en-US|32|d36b92a81fe19f3948df4bde3d2a4fabeae1232d9b0c95ad7b22599c652d0711706c19410a5c96f37386331fcfad62b1a7857014723f53d3fb509c653581e4e7
es-AR|32|862e49f8ac468a5828866fcc438234cba604fb98456619083cc699d1b01a67e559ab63986f1dfb95667bad4baeef2980051322eb3c6d0f9824470a2284c5d7fe
es-ES|32|5bb880e6ad8d533bd9dd08e801eb22d129e5fcafa3c4b1374089ec3c2349c2fc14e303151609fda27020d4ed30bc2bee0176f8bc240e82fcefa33bb2a81ce6c5
et|32|92bfe99badd94eb7996b569ce5c89564bc3ba025fd4feb142ace7ac385e060e7e98ce630c06677f46b436680ccba65088efb7e6ef4ab6131236261bad2a4ed96
eu|32|5e5b720f26492875f4f907dbb5b92bb7c75730f44c5758145791f7fd677af8d9bf321ba152269ba5b7149c80ec1f415fd05d321af6efa292d12596d4653f5055
fi|32|7d10e591f0bd8317c0d4404c86a4c02a7c9ead47471c1c1c2dec7db42c943b2c48f9f5efa3d372c2ebd15828c9fd8213ee1045833135ebed3ab48b8669dc0007
fr|32|529a3995432c210ad749d63658fc69704c136b6c1495fa2a023a4b7656a62d7e8151e54f1db8f7a370c3f3f1e858a9ed7f394092c575d40ff2691aa15c6653d3
fy-NL|32|c67623a192e334dda2dd0d765033f612175bcd09b9c7d0be5a02fbeb12e0f989942be5a3abfa458a2ea4ec88ed79b80ffeef63b3fcc3bd4b0a47d7179f2f6998
ga-IE|32|4ed60a6a01a3bbd058fd721a33965148a5e8495df4b955ee0b28cd5815ef84ce0f5996bad74a7455135b34a48eccb9f9083af8ac479d8a4124ea8ba2f52c42e7
gd|32|cc77a3cdc709f89b256589ed5d95adedcb9b969c9de8f6a5b37337082f7096c43eb8402c34017ebe0f208d7ecbd8dfcc6e78e7886b9372ead392119ef22815b0
gl|32|9ee159cb6ef5c9aafcb83ff028e996a5de59eda69bb2793ab4a2edad72704db63353e73c77357a9d3a2c16711ef09813ed406b272641b0b97825cc5964939dd3
he|32|8694eb28b5ae38813071dd342099d891fc0fc541ce0f0fdf109caeb64aac005288b28dd61c76a4a5ff0811c5a733232c08713a4d1cce730ffa2e9860bcf7f263
hr|32|f80392bdc14ab72c1d466c26165f0dc78976ee9508f263d0d208d3550f5c29b412ef6141a1444b343c3dcbaf69c9949ca8857752345e4c3b941ad2b6da78d890
hsb|32|f41e8e1e7446fc49085cb05aec4d9995f18e65fe73edc59ae6ecb9bd987ed9326a26f81e43310680df87d71741a4f49a9bd3be8f66894dc7156abc89154d4d91
hu|32|3d34574c17f7673f5df53ba4c012588341d67cd7a13c88e206ca3217f8b2afa8300bc2bdf3675e175434ae3fd178b90f081398e2170a8427c184c68e210973de
hy-AM|32|6bec4a013f7eef45cf928c930161cd63ee2a7e63698411f8a5785a637f6962750818efbf4d11011bde2bdc72945cf1f62d4d375743d832e8348640f55e536f9f
id|32|bffd2819db7af26a8c64c70dfd220147923cb9bd809abba03bc022b7217015601a1f5edfa47e2a11e6aa981f0e74cf97e3116f9af605d7dfef0ee76f4e9cefee
is|32|a92504938a354ce2544d1b1a782c90bee4175ee02b059bf015b8da0d67d2b893629de9cb8eb2e31e044f6b2906ce5767190e6fc46d26e3a4c1a13ef9121794fe
it|32|d3cd670ed53cf027462644d66ca50382e37b1d7d8c48fe749c66f2956f19885daf62414f4230ceeff4de03d864f90c1f6a90f8040d3365d133ccffab92daefb3
ja|32|23aa49955402bedbff38ec666ca05ec68a3416c2675eea25e094873643e04bee869d02d1bb5557303bb76d63f8aeadd5e40ce5a21d901c303506310ad9d0563d
ka|32|dbf8dccaf44cc7c9767175022c8231106df6d74d5a8fff95d1c5de70b0801775af790d50540208b6046912edd9103390114710ef493ad9bde111d53dd23a4b98
kab|32|f04b4456350888ba998d91e4d0251831f64deb757c0b05af2a69a69028b377245ee142fa63dfc721176aa2567ee14d386185084a5911e6857c794baf5c39650b
kk|32|ab7f46a546baf68830aace03d41ed647bf953987a6ba0be80cadaf65a7d7cd9b244dd0fe9acd828e3578eac1bc2bd6844a67572c07ce05aeb916cd60777c5630
ko|32|bb96493e1efbb77f42d15a897ef54110b3f4229216c7bc474e0720fda853aba9dc06776337deb0c1b57c2656460804924f5f1846ae7b1ab3e80047c74e9e9532
lt|32|b9f5cab06b06a189a944ad5bb68f15d25d3d42c8a47526993015a7580fb293987109f339f2626e4b5ef42b9383ab44e2fb9d4214be9350d3b6428a427b8cf8ab
lv|32|2632f705c09e185f016978bee522dc3375c5dff16a78ba2156f235d11bc5e4d62ea294036f0dc65091a769ef7e908d889a03926b38fbf1c594f95419c7f01cb3
ms|32|cfc2d638a59ecf101ceab41673469668c25c75d7a40f9659206e116324e8b71b96621cfd2461e7b7e00c09f0fd491ed2013b69664daf26aadcbbbd4edb4140ec
nb-NO|32|645e43c93be81ad1d3c23676ecb6cb842323644e43c9eeb62759f59020a9942f13d7a81600b30b691ae2574f45bc795aa07c1cb26f7e308e3bab4bec6ba13b42
nl|32|5bd2dd3dff2df72105321ac8ed6515eb62d75772e668cb88579df1c3301a18652e624716a12cb4aba977e98fd5302d4f98caac150004f3879b3382a8edcfac92
nn-NO|32|935a76ffca4cb3f77577cb3c4f645088aad3b08af6dc598e611906bfd488f3a514af6a8b916fcfc602cddfc83b65d707f764705f967bbe826386610d5095d79a
pa-IN|32|a0c5803ef81d6452017a578e393c461d0aa9583ea3a79680eb6acceea93267e9069ce5787f807735c7cfdcdca2f4c8e17c8a50db6c506a209b79cc8a37970ca8
pl|32|a9d2096941b6be4808608825ee84502cffac2fb78d4c615435df7391606960782205bb90fcfafac1b5109fb84fe03f3a8c592c42481b0e4adc5a59aae0fa151c
pt-BR|32|5c979c7e4fe1efa4248098d2c23d04d9814b3c6c40cce85d1c5390050a57f6c31a2c58c02e4b1bd0d26d3e2cb09be42769590b0e967dab6ad5a219a3b5cdd920
pt-PT|32|8d4ac9ac41924a97260b0cf185cc22ded76d1e51c7a7209127749632765804efbd37c1ff37a07d20d5b3a6a1f120479fe6e8fcf0acba80457aafbf49bc31304c
rm|32|476c4eff1691cbfd00506ef1a35f5e0c994a641e2ca235a695fe9cb65b6315f95384c4e9cb23e7ba639f57e16698f9e655914c87b2b33c8b367ff80dd019b43c
ro|32|9a8e170f89b6257cc8aa1120ea4c36bfd904a31dfcdf3e7fd8173458ae0883f7bec0c403274fc4658668d70137ec008f7d3e6bcd2a8103217508f4dae8d55ed0
ru|32|e763232a16c9a7796e95faa613182cd6c412272add4d77a90716b385efdb7993bef5b882b580d6015d3fa6ae8f28d987e4e9eb0e23ff785a1767d427934c186f
sk|32|ed888812445e91e9ae1ed7a95ee214577f6f5315f240f25587c93c09905935e91b21719ff87fb0c3ecf1b7bb9a8918e549fe06beb3af458bc9a80b0b9895bd18
sl|32|73eb35ba52ed2c870fd9b037d10303d41e3ab003cb68887ae1129946c707a37b4e03dea0b842bd6a328e68ffaba0dea29c97c43098b3f7b1f593cbd02d868f9b
sq|32|15af57a94f59902c599a820da9458309e4ea7b3ba27480ba6f97845390ecd266d9836675c62478e90eb61c19cd468307f89cfeb4a61fbd530cf5d5bd3011b58f
sr|32|8da32ec2134c39b94cf5877546282565bf3209a57fe954b1f77cefe117c2501fa4157cb4e98dc9c176374a094d22b6bc0052a6132ffd3917d9e8f5a8ac4f6621
sv-SE|32|331f6a1c29bb5e8c9d10575b62ee043ed2478b949d0afb9e95e848deca337624d962b2c52a2fd8f00595c506af5c5f0f6c99ff7fd26d435fa29c19f623a6ca92
th|32|f3c1b2513da79b22ace9d0a1a51106040c452d3a97922814eb7f082f2bcf13fa7778132aadef1f1a853e20ec7226ab3f0305048276f12fb341b59f1c48e2b99b
tr|32|d7131f9e25d01344d0a22d9d0efd7d23db715a987c18ae8644eaf270cca7ccb5218c8b7e7dcb20ce2acfd8bb2d282dd2760e287c2891a6baa620a201c7e46806
uk|32|c5c685646a69ede3712dca00f4561e476e87a300ff963c6ae148fb1aee747ff21df9b42d8b8841a991fdc4c8354eebf561304ca7d9f9345b120f9800cd78e723
uz|32|8de05134c8df787d0fbc615361443b70428e4b31c39f8b155d6c5ca66ce2ab9677935fadea7568cfebc689502075cd3603efb33f164c8b4bf8b3b36ff8d30c0c
vi|32|5d055364fa4b57e5a0610b981952813ccff0dece28d2cafdc90e1484dfc4ef6841ecc15edd4b3217312b2e03e7b6183fe4e6c9369d6946ad4a37959d63375a41
zh-CN|32|4db8ac69abb7c69cb58085a3a6186561f3690ccd1d77818ca20897718d53797e35b95ccfea670a9dbcaabfb3b2d880e172635593eb4e76acc037af10079f8330
zh-TW|32|b5b77bdbe47c71350c6184f91d380218960f1a8456c6ce2d3cc965c3d9b94cc529d0b64615a590a26b2b9ca27fe30e9b2020f4b9e0890d8d8346384c89be4f81
af|64|c6521111e03b270112b25312600b1fe51b0be5319fe6b4451ebe87deaf84117451a98b18563f0d58e8a0dcf35b1c569e8ac4d5cded8782351f544182db9e73ee
ar|64|056f52afedd027ceb53c2db3809b7d4bb33dde6a1d29817cd87e26fe228ac91ccc8c8c65fd1ea27fddd8ff510b4f455cd498391339ac76baac5e0d2b9e77bfb3
ast|64|0a2b60d5304e160d2359dfcbc8b7dd62337e0f5c940850e46ac7d7fa408d5db4e8ab966210f7c007490b2f874b7d96510d9eb2938a16a39c50b5d5c68686a4d8
be|64|af01ce7da68814710eb5b72b4d795ce44bc337ff96a14ab5f060ad48c9a963811f0a68135c496a5af2693044d7ef930594a45973f912e38551c108555220cfeb
bg|64|b362e6329c1c45a8e31f78084be4fcdbb668007cea284c16faec227b9365e5bb29d9273ff02868a81b05c8c9b9126e97342d1798c0917c51bff67603e27c52b3
br|64|39ad97b322574381d1683362fdf3a8dbd2fc42c5348d9768e1e50ffdcb605d4885eeac22fbe22ca7b5cca9e0cd051c6a18314fc764066e1847d994925a183b07
ca|64|80c7cb957fc67a415667e6777e830d39083c1045dace9fef9bea942ef6f1c2273f3defc98affebbf9f7ae63e0597c06a28ffe982d25f6268e94e1167b8faf5f7
cak|64|84e5ccaa67d246dc8f2da38ed856d69fc915bf17d166a2c73694724c4179a55892182a4ed408cdebd87e65843202b77acbb9f1bd757ab8df8ef4af1d6fee7dbc
cs|64|5b57fdc8a1e05f86027dd59871bcd4ac92e2b4fc43ed201aa7766ebf33535ba4e00e3fefcaccd8ca7d68027ade0ea7d141ff11f0d8c3ded54990c649affc71dd
cy|64|f97305f59da7f1fa17be8ce9f0c0910d7aaa183c93a7a8eb512a26343a1610fc6f256a9353c50be06a9cb3e9deaad7953b8526ae16027f36dc86991491421422
da|64|f3b4ed1876a31d643efecaaa005b40c8e8a87e8c5bb9c6d9883283839eb691a87527c2b71f8471af62354691a3ecbcfb9b9fe3796025ffe89ff96e2dcf260e77
de|64|e7f1f6ce327458fbc79be159d7dc4e2a3e6abb5e57b28c12d2b73f3396abe4aae3cc0c5f82b6e57199a5a8419426bee12dfe80bb3e0096e7cb519ee064d84637
dsb|64|d2cf9c43ed55d0a434edd40ddb22f034308a072f27a1682d3a86aecbcb76faa2efd932bc26185ecfeadd59c62331b72156d705a9624e16779777a2cc454bcc17
el|64|ace719426da612b9253ec17fed2ed7594d299c6963638a9f5c15f3d13e9aab8fc4167f8d8b93f8363d07ec2a249d133f3cecd3d2f63d1c91151042ebe6a1d611
en-CA|64|ff2ec235288c7c3e72650cf4573ebc91f1fe262b8e315aa64b25de0e6cc704004eba5d5dd34ffc375d578ddaa13fd7f4fe581db2ac5871ee9bdc56aceb6c2bb8
en-GB|64|230eb5c1c20f8c8b18e74089634d696dc6b2b9dd12f1f22517b9ef8ef02221478fdb254ff155e38907fadbaf0bba5ea6bfca9e566b5cf7c646eb284d1bfae9ee
en-US|64|2ee77bb44ba7c3dc370c7bdeb3819886baa109227d0e5a21b424eb205fd5f597603855f5422fa39f498ab89a203fa663635b305d23b3637313ebdfa606dbbcc1
es-AR|64|3de15ffdc9d5dd530bb44c13c3e0eb565d249281a33edc4a649a6c971f32f442ac2f6c200851d96dc173d272d7b358965b0c7819c364f7cad6ba928ad33ea8bf
es-ES|64|b38b16034108261e17ed53c53a3d0c99781574f9d64324e21c5e689bc3bbbd40b6f89ecf1455fce4558cd6df0c009366b9e4a926e535c253ab2092571df022d3
et|64|28977c39edad85486d72e13b8fc538f73200375d1c544221f498802bb8069ca1eb0856d7c7b1ddb0ecec84bc38a9822537e88af6b407402761523598bc262175
eu|64|33342895c8a17e6e5af2f485f6fa9ed3ab61480a0534531a6246e5433b8c80c957962bc1286749c211bf69067961e813a4815696ec614d8d12a9cfaabdf8ce05
fi|64|f244732d3d08f0857c2ef5375341cc882ccdd68a7f621c0753f1ebb06601cbffab479af0bdabbd403ee0c4359ce00161c9b9d1cb26f111edf5eb8e098662998b
fr|64|3b8303b3f6f5d486f0d143dc4b0dce32c030228d452386028943a35a7a0547c84cf60ccb4fa03d49384e1eddab34f0aa001fd06b5db74b248af5d7d4f72ad04c
fy-NL|64|930d38194200b96ea643c1576758a9d6f94234e68376efbdd45c72f6a37562465e3172be74135dfa2891fdb3712a7a8c4c7f08cafea2647e739e6722427aef65
ga-IE|64|797a2ec34f864032401f2bc17bd92e8d41e7100541e5fc09e2d6e5c4e9405d4dded024f4594cfdd992ba3c13b6a31fa7021735b7ecf75f44b15f022230c829c1
gd|64|8fa3adc58c8b4657f87ecc6ad32ef406d58306e77fdfa5fdca15e96d642ead4050b744ec436e77933b81f578baca674f8056f694941f1c8526ea204206abe279
gl|64|7e04bcad10642abc0a0b5d518254417daa7fd64ade0210611c38ce4765624cdf6554a82aba08f71ca6a0caa1c6c25a97c57c49e27d2597df8d6b51881c03c09b
he|64|92090dfed612f6b50710d09f572d369de1b6e48aacb5e4d189d7b2c471539be875ee1d5273527397fc077a9b616b75b8f37667fc47b30ced73f91c5b89efbf92
hr|64|c8924bbd14cffe99281a7b409c29cd09ce708e79239a189e0d84e4b5d0861a3426f9970f77c6a7f8fdda5778bf592a4f232a8b2e9d9153e998a832c83d62c41f
hsb|64|76807341d81301b4641abc3ca2733d1e17bcf1a9ad652a394d35ca372cc783ef122be6cf99a76f452f51e7cc454627aacaab92cbfaab779b476c53c3e7291faa
hu|64|b1ab0681c3e311c60b58b98c05e51bda750f2804f0ac5dac98bd8d37f09003e258979cbadf4631ab8d097b7f8e66978a3e52f75cff001d2c89157541f119e37a
hy-AM|64|9bb6a4e53d2d264f11b20fc8bd6dff64a2a08ec23849c0c381df9a556eb87078d4ad9f524ab8f8c28b70ac30909389f36944d28d5a7b4bf36a7409479de676b1
id|64|1beb3c69b8a3f0d6fb228b2fe846d6b84d988de66d7ce054632c98f1786fac8a88b8f18380065bd7b50a3ca4ea72c9e2e0c1da89792a76016628a3c2dad27ad5
is|64|a6d20f840867202dd2d433ac93dbb0fb1f283b637176b508f6d59827e70d77b6177a829cf10a0b4a5fa38aec0bd2826c3a765e922ef5c00e71af55a0f45c1479
it|64|381ff43d784f8f4093947591485fda27c0c5ea0a7909093daa6a7890b8a8c5d27b0b425e4177473c68e64f36c1e7165deb9a673d78774e017a796ccc83cce01e
ja|64|149e19e45021c2510e79f1bb81328e037b246d745e2378b57a83466abbd30c9c45b0f0f84c4d831c086ecb853d1eb2451854a1c0d141524ed615acc05691dc97
ka|64|a0731bff8098f365bff709e68bb489516719ccf46f96a8501acdf1599bf79dc95748a11d10e70227ea0453e6ba17a4748d5aabec5e0207b345da5d7bf8b0978e
kab|64|d4948e14242eee2b64d4308edec9f811c81aaf0e6c528d37fe0def7d804cfa9da4e640283c2cac9264669fdcac8eeef0de839649530ccfe0935113bcd20d2cfe
kk|64|0766c27ca60c456c7d6319373600d17581afd7dfa4bd726d520cddb2d7b25dd1ee9d18b1407d9c29710d805a9473b2f22131ec422b1ecfc9b2d6659db593e355
ko|64|3ebc032f4dfdbd96563fa8fad77e18f35112bffa1f8a72a12a12ff76b3e431b2681566c0973147e9deba2c5bdd064376bc22a6a198472c3a87402abbc4190ecb
lt|64|8b8d04a36f3e389bff1348313a41bf06dea2cd36790895e983ccce2b833c96a1f31a48ba41513f0034c4d5770cbf2d611e837edbd3975e5916170fe45ba72e77
lv|64|31ea70d7488178bfa4ec4b5ab44c6d7b3e5ea71aeb9a924aca5d62965fef3a4d6abcc3b15740c7c8582a706c39c9f6d0fa631a1988e6a631176ef0e00c76df78
ms|64|f48657bbf6585c046a089d8e0adbb1dff2226838984bbcd5df0f8688a35ec2734f4e5a9899d475223e0d41e3dc21e100a196d89b6a1d64f1e9a81f53dab70039
nb-NO|64|211868ee38c32887c9efd62cf6ebf4219424cf1b6ec1d7dc1ae70aca89f2944e1622a595cbe3817873dfc4fea905c10c456640a51d832e2f56e21c6c25592350
nl|64|25d56f6f451e512e588c0d779458c58faf2dc2311a75472c439219fc92dcffb12973b22fed6d635627dac98edd957c96b4dd180672bb53930d73dd01c480d688
nn-NO|64|c704ceb9b2e666d2a10b1a305eef9108f3b4dcf24d8ab4a575ab3cd0bec35b57e5eb8f6321b2fb55fd105f5d7695ab8a4330a74591980ed5cfc5d30e5192e6af
pa-IN|64|a130234ca5ca68c947425789b351af5cfc9ed3e8ed1727eea34b2d792ef8d2d03cfb095cc40fd2645ac2c3b29322be76fe588a652a5df80abb4a40f7633a2c1d
pl|64|43b5b07449d709e64ccc6060b7b2cf1f300897889c1055c67256d97dab30ad7895b2af31241547986df93bb897d2bf9d5d8aa7e8778803dfe10d37a1b612bc29
pt-BR|64|05f421f38a55e8b40359eed9f5a578b4bcc9da519b7881ad5ffeedceb6a6cd5774103c0a96776ac97d943824bbf365e771037e6025c5dac351d3fafb367c7088
pt-PT|64|7e3059ce4076b6c384582a633e3fe74f17f0dc4a0fe7602cc32bef11d4783bacb649fda47c9e048b9094707b06843aa13c2dcb16550d5243a160a40109e857e1
rm|64|a68bae5bc502208ab7e7a5c7e246a788f977958d48561c2c517a4c1749cc5f0e97160c4ad88fcb113d758b86323aed4c174baf07e31b4ceeec571a5748ac1dfe
ro|64|de0a10a0eb693a7b563e737b9b97b980d98f3a0a4a183cf4290c4ef1f6b9ca6cfed405c5e1b53e3a17284b2fe7d540e01d1bb882b993b96e34e0a20a09bcc4ff
ru|64|4648f8c0a7e02cb63fbb4a148e4edf5206cab97a55e2617378304c4ac765ebf98a49251a061b6eb16514c4c415fb60d9f1ec268adf9d72490254d24c05bca305
sk|64|8c6f636ca6caa1b91415944467d10264a088b128a4a3385d47542db3a89f605562045000e319448c425ade278433d4e0506dca39834d43f877f3ee4dff0f8b66
sl|64|50b0d10dada3f74bbc25bd3fc39e4dd07f15d4da7b6edd1e133acefa01891cf7c066901205d0c5b5bc1730bae11dddd247ca11a933b94c2f786c5870885a5cf2
sq|64|e0be4b749d7a0c0f4088fb141f3cc0652f57772e5ae334d1e385d7854e2b8681042ac50136c50360392a37307ad40bad837ef21db3d175a24af91f097d09720d
sr|64|75a3d2c57d07847b96b741290a76cfb4ad75abbb396ecda1edbe94c79bb490a3a87fe9e9e197d363df5334ce5c691b72758c245a648f7e4560fa59551b0f30f5
sv-SE|64|a7a8ffc765cc18ba910b1a5e58d44b579f01fe03642c57f2419bcb46f1de58b1df36fc08abe45aa3b33c53e9ab19372bc6ff823c8b68fba8f868fc3483974c5d
th|64|7cdc6133d91a13110052ade9674f164c958f188ee67bd2deb35e974e939e6ebe4116be4b514ecc1aad632f4695ed4426040e81a83b63347bf27452950cb4e6db
tr|64|dc3574b7562415899bd8cee779a906c490ce112e9dc28f3577741347cdbce4c0da75368d69783881bc9f3e18d1c468183d7a6bddf9c702942a561fcc10c7d600
uk|64|2625a4656aaf2c343ee5aa071e4957cf5b23da5a1fb5f9a8dc9b9d3ad4603de293f117779b5a91e88f2b5b5c29aa66c8bca5a74ee74de38142f0d2d7252966bd
uz|64|021312a0a2b5eeaa41ca449a19f88734a9dd2e9a3d57f0bfeb470e29b9daf20e2640d5c0a502ff3d7222e8e3f888b1180a90842d0b14fab30ec5baf735d58eaa
vi|64|11dc7a97661294b626e0d3ce2398d534bb6a245bed169a41642c9541ec8340efc8ae938b8455f10a5770d6739533012d49257817b6846d8d737db1b0de055455
zh-CN|64|ebe74340fc7032f55c8b78884c12bb1fac4a3a155ea16bd9c9444bec9acd7c4c6e192468bafb3aa651e68bdfe1b5a7f8f8ca899dc8245ba723ad02deb6ed3f4c
zh-TW|64|17608c87b216f89b69b57169b339f046ab5b00bbd9ce99bfcddfeffdbd506c989993bfce467bd00f0c81377bcdbc2d3ed4968ce58d29198ddb8b8e5f53bf5e52

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 11888 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 36210 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 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 27000 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23753 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 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 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 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 18715 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 16594 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 10126 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14038 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10394 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17193 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22049 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14086 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18415 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 21220 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 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 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 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 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 9235 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 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 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 6004 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 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 12297 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 555 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 5681 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 2430 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2438 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1466 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 1507 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 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 630 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 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 690 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 446 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 462 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