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,473,034

Downloads of v 78.1.0:

10,122

Last Update:

03 Aug 2020

Package Maintainer(s):

Software Author(s):

  • Mozilla

Tags:

mozilla thunderbird email admin foss cross-platform

Mozilla Thunderbird

This is not the latest version of Mozilla Thunderbird available.

  • 1
  • 2
  • 3

78.1.0 | Updated: 03 Aug 2020

Downloads:

3,473,034

Downloads of v 78.1.0:

10,122

Software Author(s):

  • Mozilla

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

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


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

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


package { 'thunderbird':
  ensure   => '78.1.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 03 Aug 2020.

Description

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

Notes

  • This package installs Thunderbird in the first language which matches this list:
    1. Install arguments override parameter if present, e.g. choco install Thunderbird -packageParameters "l=en-GB".
    2. If Thunderbird is already installed: the same language as the already installed Thunderbird.
    3. The Windows system language where the Thunderbird package gets installed.
    4. If Thunderbird does not support the system language, it will fallback to en-US.
  • To get a list of all available locales have a look at http://releases.mozilla.org/pub/thunderbird/releases/latest/README.txt.

tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'
# This is the general install script for Mozilla products (Firefox and Thunderbird).
# This file must be identical for all Choco packages for Mozilla products in this repository.
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

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

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '78.1.0')

if (Get-32bitOnlyInstalled -product $softwareName) {
  Write-Output $(
    'Detected the 32-bit version of Thunderbird on a 64-bit system. ' +
    'This package will continue to install the 32-bit version of Thunderbird ' +
    'unless the 32-bit version is uninstalled.'
  )
}

if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {
  Write-Output $(
    "Thunderbird is already installed. " +
    'No need to download and re-install.'
  )
} else {
  $locale = 'en-US' #https://github.com/chocolatey/chocolatey-coreteampackages/issues/933
  $locale = GetLocale -localeFile "$toolsPath\LanguageChecksums.csv" -product $softwareName
  $checksums = GetChecksums -language $locale -checksumFile "$toolsPath\LanguageChecksums.csv"

  $packageArgs = @{
    packageName = $packageName
    fileType = 'exe'
    softwareName = "$softwareName*"

    Checksum = $checksums.Win32
    ChecksumType = 'sha512'
    Url = "https://download.mozilla.org/?product=thunderbird-78.1.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-78.1.0-SSL&os=win64&lang=${locale}"
  }

  Install-ChocolateyPackage @packageArgs
}
tools\chocolateyUninstall.ps1
$ErrorActionPreference = 'Stop';

$packageName = 'thunderbird'

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName 'Mozilla Thunderbird*'

if ($key.Count -eq 1) {
  $key | ForEach-Object {
    $packageArgs = @{
      packageName = $packageName
      fileType    = 'exe'
      silentArgs  = '-ms'
      validExitCodes= @(0)
      file          = "$($_.UninstallString.Trim('"'))"
    }

    Uninstall-ChocolateyPackage @packageArgs

    Write-Warning "Auto Uninstaller may detect Mozilla Maintenance Service."
    Write-Warning "This should not be uninstalled if any other Mozilla product is installed."
  }
} elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
  Write-Warning "$($key.Count) matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | ForEach-Object {Write-Warning "- $($_.DisplayName)"}
}
tools\helpers.ps1
function GetUninstallPath() {
  param(
    [Parameter(Mandatory = $true)]
    [string]$product
  )
  $regUninstallDir = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\'
  $regUninstallDirWow64 = 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\'

  $uninstallPaths = $(Get-ChildItem $regUninstallDir).Name

  if (Test-Path $regUninstallDirWow64) {
    $uninstallPaths += $(Get-ChildItem $regUninstallDirWow64).Name
  }

  $uninstallPath = $uninstallPaths -match "$product [\d\.]+ \([^\s]+ [a-zA-Z\-]+\)" | Select-Object -first 1
  return $uninstallPath
}

function GetLocale {
  param(
    [Parameter(Mandatory = $true)]
    [string]$localeFile,
    [Parameter(Mandatory = $true)]
    [string]$product
  )
  #$availableLocales = Get-WebContent $localeUrl 2>$null
  $availableLocales = Get-Content $localeFile | ForEach-Object { $_ -split '\|' | Select-Object -first 1 } | Select-Object -Unique

  $PackageParameters = Get-PackageParameters

  if ($PackageParameters['l']) {
    $localeFromPackageParameters =  $PackageParameters['l']
    Write-Verbose "User chooses '$localeFromPackageParameters' as a locale..."
    $localeFromPackageParametersTwoLetter = $localeFromPackageParameters -split '\-' | Select-Object -first 1
    Write-Verbose "With fallback to '$localeFromPackageParametersTwoLetter' as locale..."
    }

  $uninstallPath = GetUninstallPath -product $product

  $alreadyInstalledLocale = $uninstallPath -replace ".+\s([a-zA-Z\-]+)\)",'$1'
  Write-Verbose "Installed locale is: '$alreadyInstalledLocale'..."

  $systemLocalizeAndCountry = (Get-UICulture).Name
  $systemLocaleTwoLetter = (Get-UICulture).TwoLetterISOLanguageName
  Write-Verbose "System locale is: '$locale'..."
  $fallbackLocale = 'en-US'

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

    foreach ($locale in $locales) {
      $localeMatch = $availableLocales | Where-Object { $_ -eq $locale } | Select-Object -first 1
      if ($localeMatch -and $locale -ne $null) {
        Write-Verbose "Using locale '$locale'..."
        break
      }
    }

    return $locale
}

function AlreadyInstalled() {
  param(
    [Parameter(Mandatory = $true)]
    [string]$product,
    [Parameter(Mandatory = $true)]
    [string]$version
  )
  $uninstallEntry = $(
    "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$product $version*"
  )
  $uninstallEntryWow64 = $(
    "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$product $version*"
  )

  if ((Test-Path $uninstallEntry) -or (Test-Path $uninstallEntryWow64)) {
    return $true
  }

  return $false
}

function Get-32bitOnlyInstalled() {
  param(
    [Parameter(Mandatory = $true)]
    [string]$product
  )
  $systemIs64bit = Get-OSArchitectureWidth 64

  if (-Not $systemIs64bit) {
    return $false
  }

  $registryPaths = @(
    'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall'
    'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall'
  )

  $installedVersions = Get-ChildItem $registryPaths | Where-Object { $_.Name -match "$product [\d\.]+ \(x(64|86)" }

  if (
    $installedVersions -match 'x86' `
    -and $installedVersions -notmatch 'x64' `
    -and $systemIs64bit
  ) {
    return $true
  }
}

function GetChecksums() {
  param(
    [Parameter(Mandatory = $true)]
    [string]$language,
    [Parameter(Mandatory = $true)]
    $checksumFile
  )
  Write-Debug "Loading checksums from: $checksumFile"
  $checksumContent = Get-Content $checksumFile
  $checksum32 = ($checksumContent -match "$language\|32") -split '\|' | Select-Object -last 1
  $checksum64 = ($checksumContent -match "$language\|64") -split '\|' | Select-Object -last 1

  return @{
    "Win32" = $checksum32
    "Win64" = $checksum64
  }
}
tools\LanguageChecksums.csv
af|32|89981aa92429d3f57df298b6fbccef738e3fe4c8add7fcbbe1fca7fad4a88f064734e7231e9ea1eab5788080648e1ff7614e4e7b28581d0bdda98417cd75caf3
ar|32|db5ec10cdee68fc44d06559d974eda7e09fddc1126cd9cf12deb2d01a18b00f744c41f89a23cc298ccfd2339e794ade5028c9baab669df30f9018b0f4e5cd7cd
ast|32|2d4f8072cf5fecb4d8ea2090528397a041c4db017bd63b3eb9af21e691b569657b11991326e4241a8df3755e185a28cddb98e2a6e7dc2cbfdf60079e250ab662
be|32|9cf73117b53ddff376df6d3b0e37efb70fcfd79afa69177bc49ada3703dba81c09d89be540c6bb0c02b29a90a7a6947351a46fed47bb20358f8be69442a809db
bg|32|2280a36f9af187e4ee24948c0a03dc27c226159dccf093b0d4f723b99b6cd9ebba9d5f9b5a3fb7a0bb4708a5b96ed22b1461a1071b682944c89ba819b7c9ec46
br|32|bb3d22a981f334d9826d9198372d45f01418ead94e0537087293fa2e9935d490fe37edfbf4bb20d7e927bf03c00081328ee94ef075938c7674bc31d014a1fcb2
ca|32|28e7bada684093d73341408683a7952e2c3660b2e35f1da0aee373ceb63f402612ae22bf0f5573e8854d5cedf69daac9948e29fe03805613b77ab6ad3f3adc59
cak|32|e01d22c4eb2c15e60a840ef9fd506d8afd99948d4aa88b26dc22bf7cdd3ea23d336843477bb0378974e241f1ea8bb79e303fe3678ad7512f8e642895f201b621
cs|32|c4e76842709c04d75eae4f5a130a4a5cc3bc34c2120d740b4200e9089cf1835191a812182640013aa664264afa0c88747b5d9e3ce346152b8deb744cbb1e8249
cy|32|9f7842fce8542184474e89f37a364613c227e1eaf3ddafa740d028871b52237ccf6b7ab81f72cbefa1e8fee5f2c58b30c0b5fe08e51f2f8ede59408eb18301fe
da|32|84fa892c7c6a989b4fed43904da2a44824d4a6f5bff931a7a2ea59ba51e6bf108cb3fa1bd87e2f661a2a8cd2514d20bd34ffb851fa40e5fa643b381036d22aae
de|32|ec10ec875386c16d7a3d7bab08287a3ca5567a19304cf2d7c4f2d30facbd67ae001790beda51a1d64cddfc50d5a2d41804da58e3c0181d2209fa4adbc47fcc90
dsb|32|a14a1be8d7b0e03d588ea51b5f23a946d6aeb0cdc55580795d7490442d767272f7a4a398739c5c95d3077fcb64d9ed9e3c125da33af529b8753bbaae4c81d8ec
el|32|d683592eadb3375a3484f054ee8d22839c949230a37c00c1c745508e8809d729923e3d44bb9801f94900eda8ef113ca041411532e41d6907a5115213ab3f5aeb
en-CA|32|7c4c6a6f2f84a713609dab4859e6626a41c737c06f2749599ec8a6643de69e7396e977557c9cb756042731a72297cb1282f450f0c6631de90e9cd5b78f5e1f30
en-GB|32|a09b3b88915faaae4ace6ef0d686c1f2328947999b29a3821bfae6c8f4506afe3753342e30e28aeb893bfe38a5d399cd332ec26b7eb0e28e58061fdde3198a6e
en-US|32|2586db46342a6fa9f602a44e247e339e2770287426390404411ab81137615e3a226ae4d528dc553e9034ffcebb7c76e738636ffa6c18ffa7a238d7c64c16f900
es-AR|32|a7b9ef8f1063def3a85c0922bceed14dbb83b61752c13b2e7678e61e36ca1a348bb9dc5b678411986871f4d6e284d67aff08696aa020e2424bded787e1842546
es-ES|32|d525d4b5548d00da9ecd7ee9e194a9198fad5b869686f436a12df782a5b0b3ff9ccdbace1df8a8a9c794bcbd8be03fc03d0d6a98c66b8777865e1e008f4866ba
et|32|d34432d9d2f684299c803a7746873b08e485c70c7abfcf530411ddb16c5ef50be2fe26b38dd6c3654d763e32f01f340a1ac6e42b25c80453cfcc9801774b7274
eu|32|c5226685711067b506d80ca804606501cefc2d7fe6c8ced90f414a5ccc1bc5282b8074dfc909285815f108cdcf53ecfdf47078f96b66bed101c93439c547799f
fa|32|01650bbb717705079afd31b991deda2429b9085e206b0039c7e3aa8785fc1b6391dd0f034bcd30bdf3ed7b28b8132f9f43d04a5463f5eecb67f9c3df0d4316c2
fi|32|aa40405caf0bdea9e12bca71661dd2677d9589931be5528dde5368f66ef19eeb4f7e840c6cb1de75eb2fad5e5f46695b3d4c23a935481ef02e370c0f89b7c080
fr|32|6a3b502090cfe8bfa8294e28bc9f9d784ebf2c133282d5deda93e36e28bffd1471ba866cf4d04a2a47718d52374425a482a2393e76af45cd72264cdc0235dbc6
fy-NL|32|9f150c720a61d29907a258a7d3d51f56372bfb56194027246bf8f20b895976d1e517a945969305dc621b52d6ed522f83f27b4d0db8d6b60b225602a7f2c3ffe8
ga-IE|32|7da006274c33068fa887ba72e537ef91c1825d2d5e89e2bd8d4d7fd266c788814a327877f9517995c2d11f83878d7fa6ce81aade812c45e5727fa17f8a14bf59
gd|32|3c64cc0628a1ccb6e15959faec55f1ca6332fea72679d922d8e7e01148a06542a089ddfc0337ac32390469f2dfcb9ffde5c5e48e54f5c1cd6766c5a8569c4d70
gl|32|90ed59b9f294c1f677a24e5c443a5595b412b95f4aeef5dd3cb3984530a19ece0f11b563cbc708a6523f8d1431fa65bee5a19ec1b6524ec246251a436f605acb
he|32|c06be695c68ab535c4a3f81a8d1ae47f268d03b6b41a853e0498869f8d1d2fdd1370d69385764cdf881460eb34a6988fa41bb5d32fd072c29488b37701eebe20
hr|32|0d2107dc86494ca58c5c1c15f2b1b358c4d4891a644c3a549ed7140670d9a53d30d9f9a46556ff6ff791595767714ca8d4f44c6c982e75a781643a300b899d3b
hsb|32|151b6ce1ecb89aa90a831401757962ed7f0b64d8976306cfb0f58f85f4c7f459cf2dfc54a0e3d2e35880e8be63aff6a040401bd956772729b6072432000cc078
hu|32|89334226bdcbcd0fc180ca00e86e1e29d03ea50662e3623a3b7fe05ff934a68ffb0201096cd4f80cdff9d08eda616ea40c5994cab1a9b575e2a6e774a8ca81bd
hy-AM|32|7ceaf9eced55646b7d278c58f8ba28fe31cb8456e028df246954816407b2f12c9db365e0d5761d45271d2323fe80424fb969a99ccec544e838275d2886291da7
id|32|0641e6f361afac93e9a2c36243b8e75adbd7e15650e805a11c6186dd71cce9ef81121d22ab5ae982b650aa92cd0acbcff4a1e836e9f59bd2db10078e5ce49c7c
is|32|2592a449ddff11ee60a23667de10aaa16ea92700f77c27d280f754c699e1ba6a2b529f82588e9775bca754fadfd23da996718a76f954bebb42af678da5779625
it|32|4be22801050953956defa61e5c1a6e63c736c2e82bf23390afa1352f24888d63799d3e0bab5272ddc7da501102ac59c526d47c9ff59e693fbb1924dcef1106f9
ja|32|168128c126cf3909aa0439b6bcfb424599601f70012c3253a4684c899882d895f95f74aaf103f5e3f581aab946b477dd46c6bc978a7acc6c9a2cb8390e030a50
ka|32|26ec27c12f0d37a40ff14c433d594f7e393cc64884575f0b23b6f96423bafe4e60746f3f9019431049125af11dcd37de743162320602d5d20695f0bb7225feff
kab|32|6b4323f45e5288627695bc282ab06df9f66a41807676e850cd166c8924253df3ac5787825b0933b1d831b62a53667090a42b02acf652de53264a106c3ca92f54
kk|32|aa4f0048df2f7121fa6e2e4e466c3e72e7736a0111caee31a345ac626e0bb659bfe991b65157e4cdcf8792ed97e13bb8b26b52fcd76ff75b2948f758c3decbbd
ko|32|2dbd741b3fb5f2ddd2e59bcd3a5dee2366b7c4b3031c36a1a49a233676bc7df2234619809ec3142b35f7ab1d60bbb307a14503ad8e660eb5484d905a8127ac18
lt|32|29d3d7cf89847a1f43d12989f5b4d51b5b3b46720209ce2784f62de119f73e1f01b92271de86541d18f42c545dcc61321fe507c579e03bce3514e1e89a9ff2b0
ms|32|7b89731e03ea0ae119206d136135363768be94e6ef9995f94cdf7bd218d680c670f2a8e9e8d4e425a97d5beda481c902d864a72b2e2cfe9dd9fff284c465899e
nb-NO|32|81b5b75ac7006bdebd0e64546e21798bb42d3016ea8f300d208849e2cd17e0121cda1ad502d42a43bdc34bb3c79f3a5a21aa40b9ef03a684322519f9b389e7e6
nl|32|948a60fa1191f7fb20b69ed357ddb98bc39ba2c5fc63732fbcfb2fdd4ac5f55ffee3460becd0c268141523f4c181797e6b65fb3a2c9f111829e6e8b59a0f426e
nn-NO|32|dc572bed6419fdb420cd1f228067baf1790a16470d51aa5f415149ffb449cc06264a8f5597c9c83f658a452fa1ca7699073b014dd97378052fdedf0e506c72ed
pa-IN|32|52df402b656adfa204eba000a2cbf43f6f62ee0d13ea897563cb63526a3303709e5077bd435caf540db491125e6cc7a2a0d5838a94280dd9ff71c411aca1e831
pl|32|a55727c75e2149308d2c5fdc702489c72a7d80dfa87a7a8a0614a4171ad4d33e1c0c2ba123738791c1dd2b4c50e3eeeb506cefc217dc3985f1e1b9e94b8e083f
pt-BR|32|b5d15608ac74e89a210586ebf305272c7d44460acbde6937121e412d6d66ac7710672ddda0b455602c0e0e89bb437a2e95442dbabf2f10569ee03f0a0b98f0d7
pt-PT|32|49357450814e9caad1545ceba3beb43b640d7264adb700a84109fb468e03ed6f3284df760707ca983ca2e7cd924e14f9e4f5fb51a743b1c083a1b7783ad0960f
rm|32|2d15e0c1134dc719c24dcdf67609be565add471c67816040c4fb1a367279a6de18a23dc4bab18efc6622cb999cd8c677e05d7f2bcc9d4b905b61d96df0f83248
ro|32|1f1e063227791680d4a0f186f2fbdef07659b84096f94592442c452e4f54c8f130b631cded48dd719272b9a7f6de2a7e4881fb28de8de5eaf195b1b290e1aa35
ru|32|95d75d1f3cfae8787a4ab9ac09e0272343024b3dcc7dc2ffc19802a828be3b490726d06aa2f1c676f414be363eab4b4d2ff96501cf4aeb5f69769df77a5dd08d
si|32|1ef714d69f7d535997b94eff6c60f48b1497bc08e5833c415d5b93a39f6d713d401e10750920160181bf9da758dcbc18390f0e6039efa2f0f9c773be3fbcf3c8
sk|32|815c47e706690370738c2600c88c7147778a8b904fa0a9ba7f9b30983845d82d05358d0788bd23652f8770a09c26e9e4a95c79eed20b4ad3821188774c9953cd
sl|32|412540ab32d7cb9891e5a33afec9a709e58d96e4b274eb0d36cecd2a28b4893198b9414c63f64811d91eab52d11027f41e61068271c73a89f3affbde69802eb6
sq|32|36ff7931b0e65d5dac5309f3df33af12e5346f08c8ec94b262d7351423e434f6dfa2821d703cc98f07951f1c9d2fa7f6b19ca79b9b94881b4c9764cf7ef3f85b
sr|32|ef448720243eabbf0c38a91c0606389139c92cd41cf1a5d94e465b60a417ef7bf3ae214d4b5a72e51e4bc8aeeda1f8d102edaca30f92ea95a3262502aa547968
sv-SE|32|a3878955b01ccfd028f4019ae2c7c08496971a1e88f1db28c2db6df3e73eb2c6ada742753aaab97414b16789f8250d7cf8392586c53cf75be9650e3cc78ed834
th|32|627231efa79b06b7d510ff917bdf31f6e4f2c6d3dc9d2454ddc98f9ca6fa830a3aa135d4dc82e44abaab2ad06ecabe8c734e89dc74220f4582e2df376cde63e2
tr|32|939ae59fac32ed7ad824a10ef13dc4e19d0c1e5df0ad2b46212af2910716af1c7f943ab20b9bf5c869d6c5183c6b6bf37b1ee17fc1c1368fe2e9f39e65dd5917
uk|32|4935e6f5f0f022e0cb2a19f36ffaf800e5cdad46c124764917f7eb84681edbd637c5dfac2f42cbe357e4477ca83e133e09993af2b1ed6ee96ac6d783f0c1dd68
uz|32|0a385719f3b4ccba218f8fc22b68a52b33955b12ca69526fc44ed039ae4445b572a44e7693201c4a9d4ee5d8d5258df8ee5856fae8af9d41fe10810a02a6ac53
vi|32|9f2b3b306374267b650aff4fc52c55da25234ddfdffc991e3e6a2707b79642e62cc504b609f4d3125f2558364d12eae4aacf764111ee1f7a624e9d837cb7f44b
zh-CN|32|63d01d6a46e7e5b5e8ecb9e7c23af4379eb28c1aaf3ba410acc3884e6072a72872cff30cd9dc5401901e346a949c9d910430e36f135531663db220dfa12966df
zh-TW|32|e3aa0c801541c051b0fded371f7c2b33279b06a183be247b86f5ed164de800b24aa7d031007951fc20a53bd979641996cd96570a46eadd8c731fd70162552578
af|64|4c6280bb3280aafc8bba5b0d63556183ab2d97ddadb711b6b58d2d3dee0de30063b892719406bd1af9b8bf0139c2b35c43dd8e86e47f366e364dc76f98584a73
ar|64|4c90224b5bf76c3de5ff71bea225919b51023990eef0358fc41ce0cf30d02cdd1f09419fc8af1c27e66630a09473ed95eca85dbf1cb718c2a25f1ea31d130e6c
ast|64|03ffe0de261d23a20e1141497dde5b13a0890b671f2daac7c648e62eb0f2f0a10a026a199c6bf872c50906055dd812c62cb3f57e93f4be4c941fe1b056c87f3c
be|64|0e089072853e9296fc460e0eb190eed60b1b8e730172b668a8d3df2d8b9341433dc54edfdbcbbbfe51866f011b848f70a340282e306107a2a795e7cb00f43d83
bg|64|6043dfd5bf1a69dbd5c513237861ca2ac4e1a92d21a078493c50cc4e7777e53f24d25fd4793d67ce29ab4edcba53e8cf8468ba30d15cd79db998390b94cb80bd
br|64|cb2da2df9581f42447525a4541338992abdb1bfd9f2d642e5125e94a434f81a25740a8537ea5d780f773cfb4d81aab8a7ce224e4cfa3fdd0fd45109b0c0a453a
ca|64|467bb83ddbbb28da38a0bb9eb6de54b9ca5582e9fd5f05764fe07c0c417c5ef63d361341af24818ebcdf1217ee778beafba15d97c4abbe27f3ef39275f061edd
cak|64|715e211704b7c8991d2d4250f67501be81a8cc1889e9242a24707ec88789a40a8317efe546f262db58231ef7a81e505b365408567b33edf4e5341d5eab56d46c
cs|64|e960c521dfd71aa41dc6bec5b2b691195bb03658686e0400c6c694e82312e05e2dd51bd2bfa987968ee46111c89b7e76f3c1d159ffac1035cdd7d30e980e354f
cy|64|805cd868502b9b1d9452e6e64c3294dd9aa83b642ade3a50559184e5d6386cd0a6064dece268040fb932aa11f01027893e2d15ce3c2f2c984f55fb21a5ca4ba4
da|64|80a6dc1a9bd65d683b0017fc19863de7e128fce61d276463e444145b97fd15431f04aaa80293d8ca7a8fffd83106606bec9eee9d48c94feda4938f0567247507
de|64|8673a15e5915d5441d9a35f913c3795b837ccd13eec1214a6b98522e2f6939b6b3dd3feabff23f79f4cc71b93d7fe584395b0ab204b0f6112214780889bd89af
dsb|64|ffbeaa0f80769904f00a03940e97b1fc6f04d8935d59603387a9d091af63e75821396a76d184db831d1d2e49682fdb176f1a6ea2bc34a186f07e267a008c6fc7
el|64|db60858e7c98fce762c46861a5daa02620014e31cdce3b8564deee360c05ddcb37ce2883843a6c7a14a45ab7add9f7e9a897567108a28ee6add05636bf23280e
en-CA|64|7470156d269e2658a80d5c21ce771b29204ca3b262a8efd8a1c1aca62c0fe5895201344aad2c6e300075a703fb4cd6873ee112f6179c0af446859ac16cc447de
en-GB|64|f9826e18ff2a5369418f76ecabc24caefca756ff0c232ecb16d498d8a6e5b4592ca378dda3888a544f0cbfe4e216224e8c2defd064e215f67fea8f7c6c54ee60
en-US|64|62056c5d30f0cffcd6cbde6df78f881fb27d71395cd559ed1d8c86eebe5ca9a9a29b426f965f4f73712cfa4d2523806781d763c20e28ef0144860d7d58a73827
es-AR|64|946ac80236dc9507bdd60286979dfb5e336395d3c4f4c43f776d40c5bf58d7c0b3f3c1db5ca6c9257f0d1cfde02c21ae6e5251cf8dbed5419c5281c6b7a14211
es-ES|64|bfe22cb95d690d6a905a6ac53418bbe324b6c023361a417a9fce13f4e461dbbd47407f67ebc1b7160155787efc49901c0a5d361f5ec4030dcddb6f0960557ffd
et|64|1cc494f862026a07fe79ccff1970ce547a870cc4d50d77146a46531e63f4f6694f64ea378de7c613dc2d1bab6cd197ecd3f8e04be0d7be6d920880dd3bc873f8
eu|64|fdf22950d2ede058c3fec35025d81795cea69038c307ce864ed7baf919ab66c468ce9a601861e3df920b5b6100d1be66e91cfd46aef249fe6d126adacde43b03
fa|64|3723ededc6ac08b8486631658896e1d07a04789c427c4d28a3dd64a5c5a753d6d67a001574020705a751d10eb82ea1aeb6949a6346759a5c00bb5a3f9fa0d21f
fi|64|4ccd7c56e1210a10b3794788713071ed6272c4b4bfaabb260b8ebbbffd0b5b3d85c55499528b09e981a3646f0bfaad441cd2bda9efa9dd1729ba079b221acccc
fr|64|281b7cf0f630e6a542d1c4ef74ee731fea18c91a0e9f525303b3055baf94b8afcf8a2a0069e89792230b6191b301195b3141200d13a6ebd46eec2ee84fe6b62b
fy-NL|64|c6fafc4c6e677ededbffa7b9f466f632fd1968334c72518898a68abfd08f591bce27714ee9ed95c7e1efcbb2529e1456785d525986d88d8ffa6595dfc833163b
ga-IE|64|919d99526f319eec55421875481656e29aea20b06299670d796f09ff3b96866c81179339e89938683138df30f0604c46a4b6d31533f71914a9e946f88c8885d5
gd|64|167d5528f73c288cc5cc276a54b02bbae96b405ab7a77fcf309eb2009f0ab3dcd2d66aa320300777c7e8e30045a6cbfc365e855a827bcacd54414402d72a41fb
gl|64|9890bed57e9729eac55b835628155436e5c5c4eea6d3d1f6ce6c20a65dbe834b615f1fe1c8957ea1498ae76f754663124ece1a5cf105d14f460c35d7ca8ab690
he|64|2a0415e063b7f00f4369c995517a126a7f67612684f1f728c95cba00785b4f3de2872ac840b81b11bec8daae8608affdc432ccc63341553d3d927699b2f5e180
hr|64|5266762e762be1ef722fcce9667d178e7b5c81fa6c3c6cdc4d85dc1fc1783503c71df4aa1d47b7d6ca8d98a03ac7f3110edf280b1afbcf8d2f33a86e70f87883
hsb|64|bff5e2773e922fe8b80e66869eb71bd28f8ffe13c7ea39ca54e1ff227ad16ea479ef9c2203e3a470d7544add3ef7dd807a51f454632662d5692d633a92012e9e
hu|64|92a4f81a98cc8abe9f8fe0fac5b44cf7d3d3a00568cbe16123e110f4e25110638ce35b3c7c5169ac04c66029bfbe30a7387e4790eaa35933544ca0d89000dac9
hy-AM|64|aed76658e9f709725545018ffe25465f38dae1b6f37828d8342ce76fb7d248047128e614522ac9123bb6167fd125d2543c11808cf22a85275a33e8fa7995f87f
id|64|2d9b6ff6af8b740da8d7045819be2bb0864ab483e3d9f869bb789ed2180d7d8e04cb64a617739ad71615c5c34f27ab9d1c570902f624b7acf9b4057319b02c9d
is|64|1d7f0e95b867c6fb40e34efd880cd187cdf0fdbab2fc7314e5579ff9158dec4d2197a32d35dff06584587da5ff7c301d818d89bca101d54722268bc451d687e6
it|64|cdf0cc37cde0e51196f514ebca8c4a49bc85db2883384e6a81268d553e0e6420a54386b5cf4ad8740395f301aad15f40ff4b01b0ee23024be9629f11d4e16e46
ja|64|4c663371a886b498ee9843bdca029fc202ef018154473ed66a4d35bdf4140a43f32d5a7cf46f03567367c54b7218114b6ed67a2a1a8e64cac9fcd253d23b5df9
ka|64|35b2f4cc5feab695329b0780c442a233af35cfc66308a09fd483c5aa731950901a3a1cf53c06ef1693b477cf65ae5d89cdb50bcd00f48103d35e11f3012dc5f8
kab|64|548fa0ed59ace2e9b9aeb672270bb38189ebd7ca32822f8b077b47290cf715e81d49ab0c38377260b287fe6c6867966e76090c271f282efb63bccb139362b860
kk|64|75da0950733eed8b371ef14d35964bda0be859f7a5aef146748a2da2328e98ef935c5955cced92afe2a87e056724c978f1106505e6b602922282b59ba515dee4
ko|64|2d9775c1bdb1f0af2113549528c697b6f2b485ab023ccc4bf1327bbcbf3dad61f6b8cf3778ccbdcc986ccb8f186a16a526516e290bc2627791cd178b2e7f3855
lt|64|ade72db81db6c0939b9bc51f1c004a8fb0c41881f7954ed7835ab1797a7a0c8dec0a66329777f6b6bf02b625a16b6d69854e4a19116197fbe5931428d8b6c0af
ms|64|8e5ba4679b9a94529767d0ea48eb3f3dcd0cad6103efd9cc98bd0814a73171e184d997088f2e40ede160616c561d617ce35ad5dc366cd35f0f33bc884e1124ab
nb-NO|64|56ddbaa7cd45eb005174581d56d36adc9d809bdcc767c722074ee9eefcf7d8d35832803f5d48b0fe81cc28527e5f3d2a4e9c4d19117d40d006a450a0760be607
nl|64|35b303fa04a89597471b05acf081ea70d54c5fe154adb510a41a80a3188720d41fc216634fe04aae95387269331b48c956b9556f71af9b4e668b07fdca2fb329
nn-NO|64|148bc0658eaaf5287a19bb135a6aa349900ef091dc6b08db629889866dccb9a80c6eae567d727d8149802dcae47081d84404604e3d33ced9a0dbcc765846dab9
pa-IN|64|e966518f29aaa191ca8c56e582e26f85386942b5061aaa4fe056a963aea4167dcd62b1480111a802263634d37ff67bae4b3655d0dc6f5ba92d1fdd2a5c990cf9
pl|64|8ff9462afddfe91cbcb22d463aaea5d7c791619b8856d868c0ce372b7e107cd3c564808e5f2905c3b5334834f5398aa219e433443337e43a263b9ba8daa5f053
pt-BR|64|ebd44c8a2b58b97b7b885ce12e230d37070e1611c27a2be0155ac11d4cfe62f4f93efa7471c66397a126b6cb0984287191f31c5ac8825a64f47f72400901c6f5
pt-PT|64|2fe66e7a1ab7e92ca5af92a0e053eb9ece3592bb268b8d593159072911cc8e0f736c97beb7e541a931fd22759bbce1f6e8e84700158f064b4ce64b97dcae1473
rm|64|6d5ea89a31150c822a908991bde787ded84f8a91aa848f9d55a84d2d686cc17333e0001c29d17cd7c6941c1c45153203b8bc488890d8bd0a2147282f50c2a2a7
ro|64|5c635c70f5b269de3b55201a69174c3999ccc49d96b44c12a80cd47a7d2195b30b475b7272ea2af92fa01cb3408be5b8120f679188f951453b311602fc47cfbf
ru|64|4bdd028df958420e989d7bd32bcefc037f5f3e365631f9d4ceb186de1aada2e77a11ae818fbb36c63ade4cf4f1cfc10c2af857cda986886f77de3b28cbd69812
si|64|ff8323f90ed069234089abfe25583f7e08cd6888040f67e53413c655869aa17db316a3ce820d9b3fc4d3400346a1dab5b9d8d01876af02f20739e6196f900541
sk|64|40424346d2d3cb9f78ebebbf111aaa669295c574eaf76227e0aa7563c65d986dd81924d0dd41d93a412a5884453dd6b1e4b9da536a7911f201811284d8f54562
sl|64|7dd306c1fce5e8b527089fb4113b76ba6a2bd764d421e5bc5ff9702b74ba08e210c8afa5313d40c0e158bc88cfe604f19cc5860f1d85084e9bbb0cbc0c7bf799
sq|64|edd3cfb2b8c5cef632a76af9c0eba14fa3a1e839a92fa343b49ecc6f90118ada66a786dd9ca4ac974538cf33287e300ca1b57d0c1b6265ef683e1bf4dcfa899c
sr|64|7cd4f0d1b2e2c6fba5ce827f23576aaf6d2b93bdc8119a7945983f05c5e9e4c6a86ef960445d677ddd2e0509dc58b0c060da6c3aa87404416e33d0a200acb061
sv-SE|64|23f15a105575b0da15fc0fa770a2da99eb4c43897dbf25dc46906ebd7a9418e5d44ae41229d4979a4e4a682e19b6d47ef96fc07ba86794fe17b8547b022e2a49
th|64|5cf05a63ff9c9075f0097718e0332c8f373de2f38527c51511797e03ff19ab55ba07eb98f7483e0d8ffb86e64e77bf8dd7ac2d77c4e7941396f2e3b5d093f344
tr|64|1c59416da28ecc32fcd84cda021b0b1be7f5d5bd2777e59d5abf7d139672b2c83a76471495b5f1d16fbb80b877c12edae2aaa0839271704ae6f3be847e38c17d
uk|64|5b11c10c84864da6b856b36ca067e18f4eed39de22927a95493c726beee6c7a13a7d3f2736a3d3567ad0bd9f017eade1cb05e351ed54ff456c3ff8624669c126
uz|64|3626c56667fae9880153c428cfbb8ab50e7336e3cbc6f30aa01b96a28410c42662706777447218c48af00dd691de7c594f78dff16a2d2c6d1423a9a5f6587992
vi|64|fd45b83287c5b983bab431c67b09952bd97b3b0a7408dea4e4eb7b5c276bec1268e7ad469e76132cdbcd40609c8a89b2faa38f46498314a38ca6a4aa4ccb2d34
zh-CN|64|d8bc4324fbde70268b67e47c9cef31d75ad9f0f79b1d94afa760fabeaed756a0e147e8ed0e7f7390b5e1e1b2a3e45397948640cd99868e91f29103dd367e793a
zh-TW|64|c3400ada4ddce14981c130b674f9f36adbef913a67dfaea45b957be742853e1bf32c80b2a9b122ee77174850dc7dd283507ea040de8e8064bc6e22d46d92d528

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Mozilla Thunderbird 115.8.1 27768 Tuesday, March 5, 2024 Approved
Mozilla Thunderbird 115.8.0 27108 Wednesday, February 21, 2024 Approved
Mozilla Thunderbird 115.7.0 36204 Wednesday, January 24, 2024 Approved
Mozilla Thunderbird 115.6.1 27358 Tuesday, January 9, 2024 Approved
Mozilla Thunderbird 115.6.0 29831 Tuesday, December 19, 2023 Approved
Mozilla Thunderbird 115.5.2 22364 Tuesday, December 12, 2023 Approved
Mozilla Thunderbird 115.5.1 27031 Tuesday, November 28, 2023 Approved
Mozilla Thunderbird 115.5.0 18695 Wednesday, November 22, 2023 Approved
Mozilla Thunderbird 115.4.3 20166 Wednesday, November 15, 2023 Approved
Mozilla Thunderbird 115.4.2 22742 Wednesday, November 8, 2023 Approved
Mozilla Thunderbird 115.4.1 25973 Thursday, October 26, 2023 Approved
Mozilla Thunderbird 115.3.3 20804 Wednesday, October 18, 2023 Approved
Mozilla Thunderbird 115.3.2 22129 Wednesday, October 11, 2023 Approved
Mozilla Thunderbird 115.3.1 24330 Friday, September 29, 2023 Approved
Mozilla Thunderbird 115.3.0 12345 Wednesday, September 27, 2023 Approved
Mozilla Thunderbird 115.2.3 19519 Thursday, September 21, 2023 Approved
Mozilla Thunderbird 115.2.2 21630 Wednesday, September 13, 2023 Approved
Mozilla Thunderbird 115.2.1 6743 Tuesday, September 12, 2023 Approved
Mozilla Thunderbird 115.2.0 25409 Wednesday, August 30, 2023 Approved
Mozilla Thunderbird 115.1.1 25975 Wednesday, August 16, 2023 Approved
Mozilla Thunderbird 115.1.0 24911 Wednesday, August 2, 2023 Approved
Mozilla Thunderbird 115.0.1 26986 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23753 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 15988 Saturday, July 8, 2023 Approved
Mozilla Thunderbird 102.12.0 35795 Thursday, June 8, 2023 Approved
Mozilla Thunderbird 102.11.2 24972 Saturday, May 27, 2023 Approved
Mozilla Thunderbird 102.11.1 11219 Thursday, May 25, 2023 Approved
Mozilla Thunderbird 102.11.0 27746 Wednesday, May 10, 2023 Approved
Mozilla Thunderbird 102.10.1 28999 Tuesday, April 25, 2023 Approved
Mozilla Thunderbird 102.10.0 27103 Tuesday, April 11, 2023 Approved
Mozilla Thunderbird 102.9.1 26546 Wednesday, March 29, 2023 Approved
Mozilla Thunderbird 102.9.0 25477 Thursday, March 16, 2023 Approved
Mozilla Thunderbird 102.8.0 35688 Thursday, February 16, 2023 Approved
Mozilla Thunderbird 102.7.2 21414 Wednesday, February 8, 2023 Approved
Mozilla Thunderbird 102.7.1 19912 Wednesday, February 1, 2023 Approved
Mozilla Thunderbird 102.7.0 24091 Friday, January 20, 2023 Approved
Mozilla Thunderbird 102.6.1 36185 Wednesday, December 21, 2022 Approved
Mozilla Thunderbird 102.6.0 20234 Wednesday, December 14, 2022 Approved
Mozilla Thunderbird 102.5.1 25080 Thursday, December 1, 2022 Approved
Mozilla Thunderbird 102.5.0 26019 Wednesday, November 16, 2022 Approved
Mozilla Thunderbird 102.4.2 24254 Friday, November 4, 2022 Approved
Mozilla Thunderbird 102.4.1 20784 Thursday, October 27, 2022 Approved
Mozilla Thunderbird 102.4.0 16157 Thursday, October 20, 2022 Approved
Mozilla Thunderbird 102.3.3 20296 Wednesday, October 12, 2022 Approved
Mozilla Thunderbird 102.3.2 18373 Friday, October 7, 2022 Approved
Mozilla Thunderbird 102.3.1 18882 Thursday, September 29, 2022 Approved
Mozilla Thunderbird 102.3.0 19812 Wednesday, September 21, 2022 Approved
Mozilla Thunderbird 102.2.2 23178 Thursday, September 8, 2022 Approved
Mozilla Thunderbird 102.2.1 17979 Thursday, September 1, 2022 Approved
Mozilla Thunderbird 102.2.0 19357 Tuesday, August 23, 2022 Approved
Mozilla Thunderbird 102.1.2 22226 Tuesday, August 9, 2022 Approved
Mozilla Thunderbird 102.1.1 11471 Saturday, August 6, 2022 Approved
Mozilla Thunderbird 102.1.0 17232 Friday, July 29, 2022 Approved
Mozilla Thunderbird 102.0.3 18718 Wednesday, July 20, 2022 Approved
Mozilla Thunderbird 102.0.2 19772 Tuesday, July 12, 2022 Approved
Mozilla Thunderbird 102.0.1 14109 Thursday, July 7, 2022 Approved
Mozilla Thunderbird 102.0 20681 Wednesday, June 29, 2022 Approved
Mozilla Thunderbird 91.10.0 31580 Wednesday, June 1, 2022 Approved
Mozilla Thunderbird 91.9.1 21170 Friday, May 20, 2022 Approved
Mozilla Thunderbird 91.9.0 26197 Wednesday, May 4, 2022 Approved
Mozilla Thunderbird 91.8.1 24073 Tuesday, April 19, 2022 Approved
Mozilla Thunderbird 91.8.0 22308 Wednesday, April 6, 2022 Approved
Mozilla Thunderbird 91.7.0 30208 Thursday, March 10, 2022 Approved
Mozilla Thunderbird 91.6.2 14306 Sunday, March 6, 2022 Approved
Mozilla Thunderbird 91.6.1 23246 Friday, February 18, 2022 Approved
Mozilla Thunderbird 91.6.0 19925 Wednesday, February 9, 2022 Approved
Mozilla Thunderbird 91.5.1 23605 Tuesday, January 25, 2022 Approved
Mozilla Thunderbird 91.5.0 22085 Wednesday, January 12, 2022 Approved
Mozilla Thunderbird 91.4.1 25558 Monday, December 20, 2021 Approved
Mozilla Thunderbird 91.4.0.20211214 16781 Tuesday, December 14, 2021 Approved
Mozilla Thunderbird 91.4.0 18883 Tuesday, December 7, 2021 Approved
Mozilla Thunderbird 91.3.2 27010 Friday, November 19, 2021 Approved
Mozilla Thunderbird 91.3.1 14270 Tuesday, November 16, 2021 Approved
Mozilla Thunderbird 91.3.0 22529 Wednesday, November 3, 2021 Approved
Mozilla Thunderbird 91.2.1 22514 Friday, October 22, 2021 Approved
Mozilla Thunderbird 91.2.0.20211014 17811 Thursday, October 14, 2021 Approved
Mozilla Thunderbird 91.2.0 19157 Friday, October 8, 2021 Approved
Mozilla Thunderbird 91.1.2 22911 Tuesday, September 28, 2021 Approved
Mozilla Thunderbird 91.1.1 21684 Friday, September 17, 2021 Approved
Mozilla Thunderbird 91.1.0 20823 Tuesday, September 7, 2021 Approved
Mozilla Thunderbird 91.0.3 20662 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 28780 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31887 Thursday, June 3, 2021 Approved
Mozilla Thunderbird 78.10.2 21024 Tuesday, May 18, 2021 Approved
Mozilla Thunderbird 78.10.1 19257 Wednesday, May 5, 2021 Approved
Mozilla Thunderbird 78.10.0 20990 Monday, April 19, 2021 Approved
Mozilla Thunderbird 78.9.1 18521 Friday, April 9, 2021 Approved
Mozilla Thunderbird 78.9.0 19264 Wednesday, March 24, 2021 Approved
Mozilla Thunderbird 78.8.1 21140 Tuesday, March 9, 2021 Approved
Mozilla Thunderbird 78.8.0 18870 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22956 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17625 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20301 Tuesday, January 12, 2021 Approved
Mozilla Thunderbird 78.6.0 20518 Monday, December 21, 2020 Approved
Mozilla Thunderbird 78.5.1 20562 Friday, December 4, 2020 Approved
Mozilla Thunderbird 78.5.0 18709 Thursday, November 19, 2020 Approved
Mozilla Thunderbird 78.4.3 14890 Wednesday, November 11, 2020 Approved
Mozilla Thunderbird 78.4.2 10858 Tuesday, November 10, 2020 Approved
Mozilla Thunderbird 78.4.1 9261 Friday, November 6, 2020 Approved
Mozilla Thunderbird 78.4.0 20199 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11713 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17160 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16188 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5290 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18564 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16591 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9561 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18422 Saturday, August 8, 2020 Approved
Mozilla Thunderbird 78.1.0 10122 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14034 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10389 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17188 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22044 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14084 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18411 Tuesday, May 5, 2020 Approved
Mozilla Thunderbird 68.7.0 21865 Thursday, April 9, 2020 Approved
Mozilla Thunderbird 68.6.0 19679 Friday, March 13, 2020 Approved
Mozilla Thunderbird 68.5.0 28023 Wednesday, February 12, 2020 Approved
Mozilla Thunderbird 68.4.2 21217 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18622 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18168 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13336 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 34972 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16902 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12465 Wednesday, October 23, 2019 Approved
Mozilla Thunderbird 68.1.2 17501 Thursday, October 10, 2019 Approved
Mozilla Thunderbird 68.1.1 17703 Wednesday, September 25, 2019 Approved
Mozilla Thunderbird 68.1.0 17543 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 25982 Wednesday, August 28, 2019 Approved
Mozilla Thunderbird 60.8.0 34698 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18392 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11124 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20019 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45016 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8109 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11747 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8082 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9101 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4661 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10663 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15302 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9156 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9231 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11038 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10551 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16914 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24432 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15819 Wednesday, July 11, 2018 Approved
Mozilla Thunderbird 52.9.0 7455 Wednesday, July 4, 2018 Approved
Mozilla Thunderbird 52.8.0 18796 Wednesday, May 23, 2018 Approved
Mozilla Thunderbird 52.7.0 20341 Saturday, March 24, 2018 Approved
Mozilla Thunderbird 52.6.0 23725 Friday, January 26, 2018 Approved
Mozilla Thunderbird 52.5.2 16325 Friday, December 22, 2017 Approved
Mozilla Thunderbird 52.5.0 14507 Friday, November 24, 2017 Approved
Mozilla Thunderbird 52.4.0 19506 Monday, October 9, 2017 Approved
Mozilla Thunderbird 52.3.0 17549 Thursday, August 17, 2017 Approved
Mozilla Thunderbird 52.2.1 12708 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 5999 Thursday, June 15, 2017 Approved
Mozilla Thunderbird 52.1.1 9436 Tuesday, May 16, 2017 Approved
Mozilla Thunderbird 52.1.0 6386 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7222 Saturday, April 15, 2017 Approved
Mozilla Thunderbird 52.0 3989 Monday, April 10, 2017 Approved
Mozilla Thunderbird 45.8.0 8808 Tuesday, March 7, 2017 Approved
Mozilla Thunderbird 45.7.1 8728 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5620 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7039 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11789 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2132 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2311 Monday, November 28, 2016 Approved
Mozilla Thunderbird 45.5.0 4821 Monday, November 21, 2016 Approved
Mozilla Thunderbird 45.4.0.20161024 8491 Monday, October 24, 2016 Approved
Mozilla Thunderbird 45.4.0.20161023 2218 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12295 Tuesday, October 4, 2016 Approved
Mozilla Thunderbird 45.3.0 34632 Wednesday, August 31, 2016 Approved
Mozilla Thunderbird 45.2.0 52854 Sunday, July 10, 2016 Approved
Mozilla Thunderbird 45.1.1 549 Monday, May 30, 2016 Approved
Mozilla Thunderbird 45.1.0 457 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 434 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7791 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5829 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6090 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2778 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5536 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5676 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5535 Friday, August 14, 2015 Approved
Mozilla Thunderbird 38.1.0 3972 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3298 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1877 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3652 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 785 Friday, April 3, 2015 Approved
Mozilla Thunderbird 31.5.0 2892 Tuesday, February 24, 2015 Approved
Mozilla Thunderbird 31.4.0 2552 Tuesday, January 13, 2015 Approved
Mozilla Thunderbird 31.3.0 2426 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2432 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1461 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1068 Wednesday, September 10, 2014 Approved
Mozilla Thunderbird 31.1.0 983 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1536 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1504 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1545 Tuesday, April 29, 2014 Approved
Mozilla Thunderbird 24.4.0 1505 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1092 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 508 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 872 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 619 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 627 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 623 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 597 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 662 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 595 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 580 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 17.0.5 552 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 16.0.1.2 686 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 443 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 458 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