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,474,161

Downloads of v 68.3.1:

18,168

Last Update:

24 Dec 2019

Package Maintainer(s):

Software Author(s):

  • Mozilla

Tags:

mozilla thunderbird email admin foss cross-platform

Mozilla Thunderbird

This is not the latest version of Mozilla Thunderbird available.

  • 1
  • 2
  • 3

68.3.1 | Updated: 24 Dec 2019

Downloads:

3,474,161

Downloads of v 68.3.1:

18,168

Software Author(s):

  • Mozilla

Mozilla Thunderbird 68.3.1

This is not the latest version of Mozilla Thunderbird available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

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

>

Deployment Method:

NOTE

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

1. Enter Your Internal Repository Url

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


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

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

3. Copy Your Script

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

See options you can pass to upgrade.

See best practices for scripting.

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

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


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

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

Exit $exitCode

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

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


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

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


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

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


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

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 24 Dec 2019.

Description

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

Notes

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

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

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

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

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

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

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

    Checksum = $checksums.Win32
    ChecksumType = 'sha512'
    Url = "https://download.mozilla.org/?product=thunderbird-68.3.1-SSL&os=win&lang=${locale}"

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

  if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
    $packageArgs.Checksum64 = $checksums.Win64
    $packageArgs.ChecksumType64 = 'sha512'
    $packageArgs.Url64 = "https://download.mozilla.org/?product=thunderbird-68.3.1-SSL&os=win64&lang=${locale}"
  }

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

$packageName = 'thunderbird'

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

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

    Uninstall-ChocolateyPackage @packageArgs

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

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

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

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

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

  $packageParameters = $env:chocolateyPackageParameters

  $packageParameters = if ($packageParameters -ne $null) { $packageParameters } else { "" }

  $argumentMap = ConvertFrom-StringData $packageParameters
  $localeFromPackageParameters = $argumentMap.Item('l')
  Write-Verbose "User chooses '$localeFromPackageParameters' as a locale..."
  $localeFromPackageParametersTwoLetter = $localeFromPackageParameters -split '\-' | Select-Object -first 1
  Write-Verbose "With fallback to '$localeFromPackageParametersTwoLetter' as locale..."

  $uninstallPath = GetUninstallPath -product $product

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

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

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

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

    return $locale
}

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

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

  return $false
}

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

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

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

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

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

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

  return @{
    "Win32" = $checksum32
    "Win64" = $checksum64
  }
}
tools\LanguageChecksums.csv
ar|32|6d472184ef1e1d2b103059d05df88ff0bbb2e7c100115dc2f8ef199ecb41691f93c1b813fb0bfd72b1ac706100de930a8c2875a93b009f581056b9d3824d43f7
ast|32|2857e6fee98b446a281ed1e50f562bcdaaea48a4222d271b10c3f8febcc753ba7963cc2fa48b43d0c300dc255b28f6bf178e34e92f15ae64806dc306dd43a9d2
be|32|0b5a1a3fccc93af29f3ff693a501e1a344216775f90d4e8939910f844acb6d372cda0a48907742636f876e1dc7516bb254478218d512ed7d577724020cbfb615
bg|32|d50598dd919e98c68de4d65f0b5ac3c78b284fdd8b7c4d8740dd4a4c683e05748063533b8f7be8cbe21d866bb546c8da2186e714ab35f1b2cd3d9edd3e133272
br|32|e43258b7ff483bf74cdd8bb46421d044773041cc3a2ee1376bfc11c84747a9ac2d820d50443d8db25e882ebaaa2547a37baf33fdc20b7b7c1c637c01dd241494
ca|32|bb1898f2e4c5e47cca467dd9874ccba066bb1989b747335c0c01431f1993d01e7327c58e14333367eaeafb224b596f312d87ecba3c92887a8ef5dea118f8a54b
cak|32|676c25999ce3278a20a1167a8c1f2b3bcf57733e88a0a4299d08253dce5057bee019c246931df4497f7277f24547662d2dfb3500d7454f33604bd16a2168cf29
cs|32|f8ed353a08e58cd4288ac301d5809cd94eb4caedbb2d0025dc24271b87bbf921093b7c789218497f46e1ac8c16bf8bf16f22599b2886ac8b6175047ea9977fef
cy|32|7e7aa9a65a911d214c8e0b751093dd5c153d39710e5c2c108fb8c5f37e94df4bd37ae51e79bac13dc1e0f14d72db999df4c54562985167c112532f0a1b8a2c19
da|32|2ecbacadaf51fedd0b0d22d5bda94e6d5b3edd6ded688748558768a22f69944a2ba7be3298afe2f3c4bf7be4d860c5b9fc382d718193d38e8b9a8710afb364ab
de|32|1611800417a18da22f411644158ca667bc71a4b045ff6bcefe9f72c0f5ce02e4cf8c60e9f541cd6d8cff6074ec9c1f68f65b25ef07d6a3f0d269302e12b2d2fd
dsb|32|557476f813780829c4a10fae2526d71be002b6168bd561de9b91edc4c38d427c24bb6875283662a453f2b6b46463abb8fe51b5e6371115131df2ae86e91014d4
el|32|f18d2aa3f27675d969422b619013d54dfc1d03deb6280192677bef4d5816592de0ebc10654c52c0f7bbc687853556518afe533a416692ae7e8ae5194a8453c49
en-GB|32|780287fc7bdcb0fb7c525ea17e835873dbd659367cb55d68025fdd64d8cc7f4ab12ec919b84f3105a54fea69e504ae54461245a9fae58314c5647abcf9de19d7
en-US|32|4f53401f4ffca9630f35e9f8b71c3c51b8006bd740f4709cfd4a15d075aee92025e74a1fa7187e493a67623aa4f45b2c55559d036502c869a8cd2c31261b33fb
es-AR|32|55a383dd3c5d63bd2bdb118477e3821dc70e0fa11cb8a3c05a3625193a5688653f61d628183d019dbb5552c963c4e06677b6710ac9d228098f28fb7b59110282
es-ES|32|a888010b97ff26c457ea7cf0df82d1bc616ba50e99fb09df3d20c67706c32ff6780d1410ac4bf497d8ac4f986dcd118d53baed2dcac3f0261f916d0e9eec9530
et|32|854b2946af0da1d52004ce44474a036998a9f17ced4ea555a5c294fbb54fa42e50514474343c60fa4c9d61b02fe7d0a92658ede521d77d6ad761f1589008202d
eu|32|485738ffa14610830f43f9acd9def3e6dee677fa0d30ae7b19f8381e3ccca75b4330c1d713bb814eaf084804c11a927db9775aaae86d26d5be449c93664d0416
fi|32|40d21f61f1e68cb0936525a17f0f23c6e543a7a757547afba9d34995152f818c430a28cbac08f19333e4af9efa023d4620e9e71ea2ec2b4ceca3fb0dc5ae0ba0
fr|32|53cb12fd2492373a09a13304e6262f6b84b537d1ef4f0e7d683d0bbbe2f354c1b4d0aa7304015c6c0e07b02cb940f819d7cf72e345b3525bf234971cff9e1465
fy-NL|32|0108a979d7bd94f0e3df7ae844d26fdbdfa3df5abc510dcf58a76c1d8e7a61f4d996a2d564e838fff8833594cb48d23812cc2b0af1b65ab51dcf4cf946193f4a
ga-IE|32|f7458c991bbe294101611badbc1540bbb92cd7401874a90cfa280f80460b6f58c81a768023a3591bece96fedeab8fe10963122860a3923d60739a233fab33ca2
gd|32|2b1268642527fed8b3a403db32de1d3daf092007522c8d60c2cf3dc7be405492a6a8e9528bba27ab7aa9ce89074404782abb66d962909e8cc114503f4aa99a7c
gl|32|cefc44df57a9f706d8a4d219d7761d2a70b76dacb055bd4c1d4fc832141a02f42293afb16fb4f9380f141831a965f6d34524d522827c69967beff51270eb451c
he|32|b8275c01c6ee1bfe091352d24f4b7ecb7d82d791af4fbd73dba3e177c4c6deab7251c3c10a97fa484d68a60d7a10c4749d58d75d90de750cb957f7e550a41dc9
hr|32|60075bfa84702eee84c9345e0883ce4d4620fab0cf479b11c01839b29c3d98de5da47b967ca741ea945f2710d98e63a2b80bd4a89aa95746b08bf79b4f5cbf00
hsb|32|979580a977f24467b31f444ac446eae83b02a7fd04a5f87010c092a3542e848f52bda88d06c422f50ea1ba6b0955960779160963d5584de1f15250210db60704
hu|32|1d3ce5260b9b540923d877103f1077c06bbed9e52a52d501a6291dbadd9044974b8ed7b29d22de7f4b7696e70a209ee2844ffbdc753824d682fc6629517056a9
hy-AM|32|01509e9641b56dbe68a8ff6bae672bcd38678d8980ce9487a9c91f1781bcca5b0f9aebbe75ef61e17d77bb2b2f5da7cd2c42115d8ce0b7e50a5b938ffb952415
id|32|4f01a83555e3041a46a604713d6eddc2b78a607672f1a080e9641d6a98c52b6c1764fcf4df9ed4a67c80ae377039d96413fbc533a67efc96f34d74cb40a0926c
is|32|ad8f8e00ce0578f28e7efa0cd69f39ad51b080bbc34efa39513bc1a68e036bfe475a9fa4c908073f2b5d4846069d81b2e833ac8cd113fee253145704792b8ba9
it|32|b54e6c3dd4a472fc80560e868628d6c6ed0ff4da9fd9bcc450bc74a550c9b88634ca293033d746f334c95881715272be8dc4ddbe0d4e8e3414df15899db4a90a
ja|32|00401789d2d089c691f5fd3a54f959bb6e076fb3db25fa891671368ba4721d89aa4c13cfdc8c97cf571dc3269515578c7587e774730e8d994c2b3badc0aa5dff
ka|32|6af8baf787d04d04395d81dd4fc741c8b546adcd539a156155eb3cffc1e749b4687f3c2d197e94a7ba610845ca9aef2c704e0a69ab94b0643de788d9d3636247
kab|32|1fa179467dcdbaa9923172db39cade35b5d69bb1ca85c9d5a254fcde0341d40a71d5616c5db53280047501eafba1d46d3cac0554bda7306633be78f831633277
kk|32|c1823052a0aa4d32ba3a057a4139b68769d75be7c6bfe91fe47452ced015e5f109e225fc0d32cf4bad28a8bd100f6805aafa81d944d95729068e3cc832bb1db6
ko|32|674e38c2a29faaa489a6b7804e9d55c5a4ff1d3496e1683ab850563726759caa2a64276360ee68f8ff9e6754c5b6c92558c8a7cc0120c292b6232e0a27066826
lt|32|ec45a89c16756f07b823a4b0c036813e4c016eb5c3d320082325ed272fe2f3ec485c4d51ebfb282403b3bfb0f604a3322c98b8d49b68b03fe56eb13137beaea5
ms|32|5d540237b0494d3c776bf22d928cd064f7211b495c63a306806b99dc86984c96122efa0cb03c23cac558b7cd5b4a48dac51f25f1755bde346addba9ca934cdcd
nb-NO|32|96839a69bc76ff7c5fd7c2c5b6c0e5d7c8e5d02e3f2f2efd958e149459576c79167b423011cc519404d79f97707fb5d55e49c9e705449b63804e67fc5eb47612
nl|32|8f8e71eba9ddb49120c4d85e61c3c77cfd7cbd37648198aeb5b3e6fc41b5b6b70c8c0f20cf92d45d68ba4951e5508cdaff2277c359a332d95a4995252a0ba6e5
nn-NO|32|06f36a769de12a679ac7fd360b4c91f7e5e1471df71df4c3f1afae201f6428feca25b4fc813eea756fa77790832405521afe817fb2914bf1b76123eebcfbdb8f
pl|32|7f66c8ea473423c9d3d1215c604de54c7fa37fa69255a7ad3d95b9ae1b26fc4498cae910dba91abe18ba3db2c4a8b69c82f703d9a005d6f3f7ce365dd8a02eae
pt-BR|32|a666859298f075dda3a7dbe24bdb40fb370167809fa2646b7f9e7eda1ead0557df33f414fe0becf548824ec1c588f068dae994235f121153e5b09fef6781e1fe
pt-PT|32|7918694f379e46e41203233ab6c6920d900db990a07fc189b6575e96ca5b3631d8ff4e9936e301757636c30592dfffe38725adec2c78801023fda01681579d5c
rm|32|c98eee3ddbbbb3414d79cd5e0c10459bdb30e26602ace63fe20772743f9c8e94079fec6af7a1391869ee49d1bf82304c44ff2b27da977032a75ac2f870b42e09
ro|32|60c2100f21a5feaea8eeaa1248c02c3b2780d63d922e4679879e4f08f0604c2eb1e0185750eb7680696ff885a4b49fe62367d515ecd9633fee51fdd408a73cac
ru|32|854829aaa0f6d3cd4ae1a2c7d6974f0656e81f0f9b196ab7cd6b635e851044c23f720e171f37bcca986eb17028db151ccaafb3d2a45421d906ba02b376ee7c27
si|32|5bbcc2cc2e4cdcc00b720373cee170630e9b86d6a49f30ee45b1cbbc7f2eeb13ddc03c1beb5736fef5829a936eb6d4d6c351de4906d11dd9fd72de89de6c08d2
sk|32|1206488879793010117996b508d9017783813bfc81a417b5c76bdf969859304b6ccca72b060d17b6053ef3b3a6f642c552fb025ee73d09cca73a2550f8752c5a
sl|32|1364df5ce6aa2a1035689d00921dc6b3a4076cb83d51179dc952647c457cede9219dc8e9fc757f88532e7678c31d4b1ebda7ccde8376364047c72868a6237e81
sq|32|050cf81094a6166fd8c0dfb1d80a880b5d64dac10c1eb79e6ea612ce7dc12842435dd80af0234121b865da6a160a2d04f76bbcb527f0f72399bdd1d05c73f3b9
sr|32|e3905d34e69fe3753bb230c3918551f23fa3c73eb58c665fb326a0eacc9c83ea9539564d1215942ef523f2babed21e2c08476fb62da85a2b21c2dc90ab3c2e83
sv-SE|32|30649011bc058aa51675ca39c3a85dcc0b439509ce72982fbfb258979f9e52280a813e40b46fafcbda1a7cefc7a95256c3fb1077119a5d6deac02e11347f6752
tr|32|90816bdc4eae2f17d6394d3f73f85202db49e22d20f0909024033629a195a7ca6be76530ccc5460fbcac8e95088a229b4b033d202809d31cc6855134c1e47041
uk|32|528410d8c5149d018b7266ee1da308a7d5e9604b0a92d6e8e69ea313fe5a72c178b73530805b1865d2190209c9a1e171538df7d77ca895b0b682db896442875f
uz|32|b4e17ffa9f59e6b13d4325554dff95925e077ab8ac96b3161e89d307577904489fedcc1227ca55583f695acf06f238062fcaa719bc0cf24354330423c122be33
vi|32|4ff1fae0448b820c4957c8e48ef8bb104dcf1335dd04b40fb5e4bc2a58ee57687e57c68901481e233d95e3bfd15338945c61e758eb8e5d68c54c10c95dd7ef43
zh-CN|32|4aaba87ccd8559d25d392dffaae939e0c96ad49c3c965a2d75b6332758d368369d6fb68d8d6cd82336eb2370f6794adccc5e7435f3e798df46c225427dcdca3c
zh-TW|32|ff5bcfa300ad607c7a88bbce107deeb04ebcdb3de1b86dd7a7d922fbc1e9c63f65aa65659908e600b89421dd34838704a2b5e443e203f50ffaeca940aec0b2ed
ar|64|50add03d1ef9fa2efd13c5beaeeb2fa3858e15ac4d9c129ba298f730c68171867cfdc9c98e96b754cea4961b9553322457de87eb16980a76e94798a5fbdefd9f
ast|64|337c6ce3bb97574a3a2742201001224b950b5b5104788581cdd66ef01eef32ce00b1fcbe3d943385eba9e931cf57fa5704a92b10e7acaccab64026b9393cf529
be|64|7acee2edf09e32bfff41dbd7f2a20a3704e4707550aec22514f6738f7822b7c5a0441486540cc925656f71d44587d5a14536de350a5869ceed4e4bf20de7d4ef
bg|64|afcd28a8c60b92a40af1435ca3f852e8996117332ae6fe3fcbeeb54b76e54a53059697b9b9f8638cfd19f4129c53b1da3bb3e679c13e37121e2a586dc3a69cd7
br|64|91946c73afdd5aba17b863af49b78d6c91c01a63032f34fdcf7343aec7206165fe2c67d2a862a79ffeaf9993d4a94df353d65e1d1ba11d55b67492457bc7743c
ca|64|b86b0f227339705f567b797ba45b5913905907e1a37ec9ee4f7e92db0a4c8d63070b0243704931a70abc5fd4030d559067f215862aa2af13ace44b402382cfef
cak|64|121182a9bf0a4648ccafdc4c1f3862803abaca1fb97d9a8b59dbcd6ea715849f2e3662a92fd3cb98e95c24f35c6f14673b59085d0e880104ebb56fcfb7aaf978
cs|64|eb548fee2549ea0cd48954c4d02e337b9430023e37c9a3eaaf380a8ecac4b87ba97519f7985ac70965a47c0dc5eb278e0ea9239cf3bd5d65ff37c1587616344d
cy|64|9bfeec1ebbf0b349bc3d2d51f3a375f0da1e44847d0f53a6c08e033bc431b6a78f6fe4e3e4a4de67ef1385c26fe7a3b3853f7ac999144161e38a963c17048965
da|64|85eb90e39c8e7344e420d3f1a2f54f538e14a8cef7962e1171482e6452dfe8c774f103b98305066b57af5e8d8abc195003a66ea5c5f62b6955218d1676c9673d
de|64|31fb3d34c6e98fb50d1e000224820161d4aea1e72591569030bf2b8feafac29e2c75190fa91be29cd9695242a7b825b75bcf44f68f54ad0291349c02318b16f8
dsb|64|5c39d8858338fd2f846834b48bb52c5eed12722e3e18ba63960fc80fd48114da92c7245d1c82ba6ad69d598a16bb3a79a9a29c3b6f454949445724f6f0ddadd6
el|64|76c41f43192931b49fb7b4150a91bbe675a22b8756833334a5841e4039595a0d2fe8f38ddd530e282c6e489e6f8f761f3e0021cfbed8dce2352bad44cfb4f61d
en-GB|64|dd7d80d2b7db80c9aea1b13e6592ddfb5dabb75ffd794998f3f7571dd094cfcc2edeac0b02b2a57c7ac95b9832a808558048badacc5f2ffeece5df6cdcc41cd8
en-US|64|1357f36a539d93f107575b6b1f006a2454ed13af78ae0da8eb9a7698bd97428a00c6b28376e9e1dbd2bf5f466199c397354b51ac36b66f8f279e5004b42e36df
es-AR|64|cffa08df12428d1b141b260e0794cb636efa894d9bec2ac973b77b485f2fd1eb126b3808062066e963bd7714a071897346afe1db345e984c1cd2627833b61478
es-ES|64|aaf3e7e355061d83e39d3b502dd27e74b082a971a238622a07fd8f6857ab08446810c5a95afd42704355b3e07dccf4402f13bc9ede0ec5177d659d409307c568
et|64|806e26d4d38c4788911b0e0e92535925f68a32422d876705a2e9d0603cbb5da6676f56ab40061475ed5e0bd0b33e8fc965435066d7905c5ebf8ead2379847e51
eu|64|f1d92edea5bdf3af6b22842299ffb4845482546cfe0aa9d13cf663de0c97bf881a8f0ce1ec282581ec8b213710e780291ab75c42db49e74c49f548469da5ccfb
fi|64|6d1cec45402ec8e13819e58bc4ffa9c5bba5fdf4a0322872759de8655631ebf8e6a36c7faaf1065cf70791a2c921b74965f126a6ca09e9d75f1506a32be7800f
fr|64|7d08280636f22e85e785b112f43b9167fb339e4e3562f64c2c4b338f64a82ea2b88892c04b5e6afa2dd395c6ad3924875703c904c600191ea69a1f8c802d9303
fy-NL|64|550f95542c66b3006228c0faba8b01661285429190052b0ca687a1f0a0567018b801b5bd2f1bed0bc63a820d0686af1608eb1c21edd7951cbcb0e83f2f035774
ga-IE|64|2b5dcbb1e6dd508c1df248edb02cd9074ba221fc12b0e52b1c661a7763f745c3e76e8ec3f12893fe702a00de00d5055a97c558867789335fdd299e0718c1e7bc
gd|64|58a16caa8fddfa3683492d8c145f8b611f6512a3a92b90926353738401b699470cf7d663b467aeb207c1a0bf5f7cd87e295c78eb4f937646bd8c0ae2a5f6c778
gl|64|7377dc5d2e25c1f1a38000d962de865dfbf1efa98a9f2572aaa7500a85ac10794bc3b5b0c68c94a17981658c47bedfec45d1a74bd7e40e39b93286bc4cbb9157
he|64|05a5e0ffdd314971fb5a20981844e1860131317cc2ccdc51e292c3a6bd7f475b2824ff6247eb0146c9bc861f684b398a7f2b776f1fa6f2c088341abddc19e9bb
hr|64|5703c764459422b47a717d801cbc1b8d3835c763efd09c5c2832da79f616fb3b4237fac7c5e3806fd6ef8cd6ed184c6d265ea3038420d40ba09a74028bcd95d0
hsb|64|c39cfb0c41898bbf6050479eff8f12c820e32bcd9816884e2e02a68fbca95db1c454f5909308031a486d535bef9c354f83f3c886c89c8a0c67486823defc47f5
hu|64|fabf5d48535e02cd7abc618fdb5b4aaf58a6ee7d898d36503c7600405e1e317d525e6e033938ec3a7827ee3168dc847b1052b9c271e1f83d78677fc4eed6aa83
hy-AM|64|2119f6da3d112efd318317568c600001dc38545211262ac97392e0c81719766e90e3cfb7b20e2c168c40221c7ec4968aa00cf412f0afb8274456d5c1c268be84
id|64|b23544b863d4ab9b588fc3fdd1066282025ab622224fe7196147184653f134b8b4ca0d44ffcb647a7814696526036a9351b57a52dec13153dcd6640901e798e7
is|64|72b4e323f3f923862518441b23093c63308255a8981421075878e50754513d8491e872024f9df2d95e7eafe1355e86c0e9ab5860b119bbf961681654268753a5
it|64|7d6c30ec72a570cad4684e97e21e023cf8dbc75c5fbb6cda2a52587101332f9726ec78e7e602084cdafcd3a0f29144487609880ae5baaa5c3d98a5d7351ab3d0
ja|64|db1ea0eb3ed30efab38d5ec12721886320f65303913493f3a4c0bcc27aba81563da51084dcd4832cba20b8548f5cf6dcc8d060fcf1b1062954ac161978f008bc
ka|64|f80cc3c5e8c0b5c7f7fffa5052f0787e21b842fe77fc5b28834ecc2b854c8139d8d61585dad228676e16e409e9681029e8a44e74a2801c781afcabb597d2c85d
kab|64|0cce968e5abe509e6d5425525a2f5fd3c7535f01dbefe3a53458ad6bce099533d80414e1b420ccae1ec49a7baa41e4cec5b251cf179a25adf39a2a1d4d806e97
kk|64|c2a81ead5f9cd632b539f216fda3273d7bff70898f1e605dab382621a96951855e228a7ec055161c732426caaa2793d7cd5a09a71a10295c25e4dd712363532b
ko|64|55bfdc2ceba9c8cbd690454d2fa7ef0d08545c721b51b5993cd7626f5b2710c2e9766219b6ed483f6128a720d064d8a19d9e6da2b20f74b0f555ac5392df6be9
lt|64|83b0c7655a4d8d41fd4d89b21fe83bee0dd4f4b9546edead767ff0a43a45731650765bdcb75547de7e592b779299d051ce598f7ef7475982fd76ef1c9ca3ab71
ms|64|7570fdaa719f6366c9c482735bdc640eec2cc6e0e8086239d939bb73db5dedcf665fc1e8918a732716c54c76315283ca052889818bb378ceae42e1e9de2c219f
nb-NO|64|87300e025dce6319455c303ae24a41d034257ae06b2e165b02ecedf068f0d8fa9941e23b9552c227a771e068b46b070bcecf3b577f6da970b033ecb6fa7b7ada
nl|64|506ac25402569fbff5430dd9d446f870c594643cd47dacd1e29c432a10a1c56d60fce85bf6eefdb6888139ed19e02fe8e8d1bb7019f41f40d7428734ce7f8fbb
nn-NO|64|65a52d718566feacb9015fd79b49e7a682515a59b6888504ce1fd1d7249a17baffd8589918f08325e05601b192213bb4dbaa56549223f5eda1a1d338c50199f3
pl|64|dd279ff578370e5e389d35ee2635393c55f7af83c154036ec5ab783218ddde461ab35d704b084216d28bfd47f8137aeded560ce7ad5d189d21a2826e10a5c57e
pt-BR|64|c655c332cf9c5b80a72c485c45c85cff768dd72c14501ac697868473358771fe426d229d35bd1aab5f2612fa4b4290c3bba0cdf00ae407d0049aabd0a3729684
pt-PT|64|58ae9e87457d83c80d7577dd90f55a742177b10136e7718d7d88ad9e9308d59621fa2f4f847610b663764604beb327bd0d5ba21f30009eebc42be10dc2659343
rm|64|c4c573a56b1cb75cdb1031d34ce6d6c784fcf0c128911b92f70d3126e5d425e18da5c06a640d0bf6ebf440f8baa50f8763e4cc9a8ae9b46d4095d57c62f32737
ro|64|bd097d48fb67bcc3e82b786c14814b7614fd6b4768b4b93ae14059ecb4d6413ec97aec8fb0b00fdaf93cb50776f067b4c5b4040d87d11e64477127589923f728
ru|64|fd0b52e103e68eae922fd0549039a12f8ff01ebc9f3276aeeed10da8112875d1ae5ad31e7528f86699aef81bb99c9baa3bdc2caaf3eb6dcd361226640a73f446
si|64|d69b91c6f4ec57f900c050ee5b5f39a0d44eaf152e85ca271c7ce405f4499bfef74441941c7f88067d5d12baf111392904274771a52f32a185d6b383712a912b
sk|64|09a71fb4ca1c659dc5eb88ff4bba32a3d9a5f3e6924618cff41133c70616387299bc070b1c92686f9d76619883d5f75d410e36d447b3303d531f68faa1fcc77b
sl|64|0c36bd9103a6469169acc71b771ba97fff66da3557ee17f2840a315b62dbf98361671c9a3a64127938db29aa8845e232d8377e3c2ae8ff19432e380d1dd671d7
sq|64|0a33db915a61ccbb9786433ce6fcc14a29074a423b39132d413c6f313e1abcd67985a6f86f3864f29de020b6d95b6d6e1fedce549e67f06dd5373bc67b7c044c
sr|64|6c6c45bd638d62217c57823d24f15b324b4851d57e1938e92d0ea8228bbe098a0b9697f22c679bdd12efd7bad7a6e95dd175d4231e4941a11476d6a3a7afe2b7
sv-SE|64|7a781fb27d7b440e3ec8bc22b49bbc9a439ab0c62f6d004e3affc6027ddff162b6083845b88554a7ecd6f6666611b362c1dc489b21ea8cf8c90e4beac1049414
tr|64|5691ac5eeee8258ffa1cdbd7fb16b2b9a2fc7d6a4a92f32bc8e8d30c542317e00e8ffb5515e11663f5de29f71d89d6bca78f4419a0859bf71070d397ee794a55
uk|64|10eb3db3cae1bf28a21814446e5f92563e40c3d54f9d96f2d75a2fbd3d39d3a9c062c30b0ef316063a1ffdbbd7f0694adaa93c00f3580597185fa9d7fed4a582
uz|64|3ad9bde6bd2a070b164384d7f2260035f2ce2f042f41dc3889e7dc8471a4b3cbaa6127c14f25a589b5d757f19be8d13b2682ba25e4b9a3153bce4c7ade0493bd
vi|64|28c77ed430d847ee838a78c2caa38adc4fb92144f198924a61d9df76c0d1be646f1d05c89e604c938c28c295637b72023448ab4037109b9cee692895d46c970d
zh-CN|64|f943ec7b242757bb2beb0727a5385d4e8c352de564f0c514c5c319471c3b8a0979547b24c06bfe1017820f4a5028b018dcb32f0938da7be5aaea3bdd22885558
zh-TW|64|6a217d21f1ad00d93a40d17a0ae67eef6f5dc6f07731e1d5c7292053dfb364e46cd0d1de958d36b0cddb588c51349f53fcb55812631323138ec3fd09d4daea5c

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 27782 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 20175 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 27747 Wednesday, May 10, 2023 Approved
Mozilla Thunderbird 102.10.1 28999 Tuesday, April 25, 2023 Approved
Mozilla Thunderbird 102.10.0 27104 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 25083 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 16783 Tuesday, December 14, 2021 Approved
Mozilla Thunderbird 91.4.0 18883 Tuesday, December 7, 2021 Approved
Mozilla Thunderbird 91.3.2 27010 Friday, November 19, 2021 Approved
Mozilla Thunderbird 91.3.1 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 28781 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31888 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 21141 Tuesday, March 9, 2021 Approved
Mozilla Thunderbird 78.8.0 18870 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22957 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17625 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20302 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 11714 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17160 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16189 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 9562 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 18412 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 18624 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 34973 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16904 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12466 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 17544 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 25983 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 20020 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45017 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8110 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11747 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8083 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9101 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4662 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10665 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15302 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9157 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 10552 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16915 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 16327 Friday, December 22, 2017 Approved
Mozilla Thunderbird 52.5.0 14508 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 6387 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7222 Saturday, April 15, 2017 Approved
Mozilla Thunderbird 52.0 3990 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 4822 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 34633 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 435 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7791 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5830 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6092 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 5677 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 3299 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1878 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3653 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 785 Friday, April 3, 2015 Approved
Mozilla Thunderbird 31.5.0 2893 Tuesday, February 24, 2015 Approved
Mozilla Thunderbird 31.4.0 2553 Tuesday, January 13, 2015 Approved
Mozilla Thunderbird 31.3.0 2427 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 984 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 1506 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1092 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 509 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 624 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