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,562,667

Downloads of v 115.11.0:

14,696

Last Update:

16 May 2024

Package Maintainer(s):

Software Author(s):

  • Mozilla

Tags:

mozilla thunderbird email admin foss cross-platform

Mozilla Thunderbird

  • 1
  • 2
  • 3

115.11.0 | Updated: 16 May 2024

Downloads:

3,562,667

Downloads of v 115.11.0:

14,696

Software Author(s):

  • Mozilla

Mozilla Thunderbird 115.11.0

  • 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'" [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'" 
$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: '115.11.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  '115.11.0'
end

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


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

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


package { 'thunderbird':
  ensure   => '115.11.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 16 May 2024.

Description

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

Package Parameters

  • /l:LOCALE - Install given Firefox locale. See the official page for a complete list of available locales.
  • /UseMozillaFallback Makes a request to mozilla.org and reads the supported Language Culture code from the website.
  • /NoStop - Do not stop Thunderbird before running the install if it is running or attempt to restart it after install.

Command-line options for installer configuration. See the official page for details and defaults.

  • /InstallDir:PATH
  • /NoTaskbarShortcut Do not create Taskbar Shortcut
  • /NoDesktopShortcut Do not create Desktop Shortcut
  • /NoStartMenuShortcut Do not create Start Menu Shortcut
  • /NoMaintenanceService Do not install Maintenance Service
  • /RemoveDistributionDir Remove Distribution directory on installation/update. (This is the default behavior of the Thunderbird Installer, but not for this Chocolatey Package)
  • /NoAutoUpdate Sets a policies.json file to not update Thunderbird and does not install the Maintenance Service

Examples

choco install thunderbird --params "/l=en-GB"
choco install thunderbird --params "/NoTaskbarShortcut /NoDesktopShortcut /NoAutoUpdate"
choco install thunderbird --params "/UseMozillaFallback"
choco install thunderbird --params "/NoStop"

Notes

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

tools\chocolateyInstall.ps1
# This is the general install script for Mozilla products (Firefox and Thunderbird).
# This file must be identical for all Choco packages for Mozilla products in this repository.

$ErrorActionPreference = 'Stop'

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

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

$pp = Get-PackageParameters

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

$sa = ""

# Command Line Options from the Thunderbird (and Firefox) installer
# https://firefox-source-docs.mozilla.org/browser/installer/windows/installer/FullConfig.html

# Always prevent Thunderbird installer to require a reboot
$sa += " /PreventRebootRequired=true"

# Prevent RemoveDistributionDir by default
$sa += " /RemoveDistributionDir=false"


$sa += if ($pp.InstallDir) { " /InstallDirectoryPath=" + $pp.InstallDir }

$sa += if ($pp.NoTaskbarShortcut) { " /TaskbarShortcut=false" }

$sa += if ($pp.NoDesktopShortcut) { " /DesktopShortcut=false" }

$sa += if ($pp.NoStartMenuShortcut) { " /StartMenuShortcut=false" }

$sa += if ($pp.NoMaintenanceService) { " /MaintenanceService=false" }

$sa += if ($pp.RemoveDistributionDir) { " /RemoveDistributionDir=true" }

$sa += if ($pp.NoAutoUpdate) { " /MaintenanceService=false" }

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

$tbProcess = Get-Process thunderbird -ea 0
if ($tbProcess) {
  if ($pp.NoStop) {
    Write-Warning "Not stopping running thunderbird process"  
  } else {
    Write-Host 'Stopping running thunderbird process'
    Stop-Process $tbProcess
    # We make an assumption that the first unique item found
    # will be have the path to the process we want to restart.
    $tbProcess = $tbProcess.Path | Select-Object -Unique -First 1
  }
}

$locale = 'en-US' #https://github.com/chocolatey/chocolatey-coreteampackages/issues/933
$locale = GetLocale -localeFile "$toolsPath\LanguageChecksums.csv" -product $softwareName
$checksums = GetChecksums -language $locale -checksumFile "$toolsPath\LanguageChecksums.csv"

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

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

  silentArgs     = "$sa /S"
  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-115.11.0-SSL&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs

if ($pp.InstallDir) {
  $installPath = $pp.InstallDir
}
else {
  $installPath = Get-AppInstallLocation $softwareName
}

if (-Not(Test-Path ($installPath + "\distribution\policies.json") -ErrorAction SilentlyContinue) -and ($pp.NoAutoUpdate) ) {
  if (-Not(Test-Path ($installPath + "\distribution") -ErrorAction SilentlyContinue)) {
    New-Item ($installPath + "\distribution") -ItemType directory
  }

  $policies = @"
{
    "policies":  {
                     "DisableAppUpdate":  true
                 }
}
"@

  $policies | Out-File -FilePath ($installPath + "\distribution\policies.json") -Encoding ascii
}

if ($tbProcess -and !$pp.NoStop) {
  Write-Host "Restarting thunderbird process"
  Start-Process $tbProcess
}
tools\chocolateyUninstall.ps1
$ErrorActionPreference = 'Stop';

$packageName = 'thunderbird'

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

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

    Uninstall-ChocolateyPackage @packageArgs

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

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

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

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

function GetLocale {
  param(
    [Parameter(Mandatory = $true)]
    [string]$localeFile,
    [Parameter(Mandatory = $true)]
    [string]$product
  )
  #$availableLocales = Get-WebContent $localeUrl 2>$null
  $availableLocales = Get-Content $localeFile | ForEach-Object { $_ -split '\|' | Select-Object -First 1 } | Select-Object -Unique
  Write-Debug "$($availableLocales.Count) locales are stored.`n$availableLocales"

  $PackageParameters = Get-PackageParameters

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

  $uninstallPath = GetUninstallPath -product $product

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

  $systemLocalizeAndCountry = (Get-UICulture).Name
  $systemLocaleThreeLetter = (Get-UICulture).ThreeLetterWindowsLanguageName
  $systemLocaleTwoLetter = (Get-UICulture).TwoLetterISOLanguageName

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

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

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

  foreach ($locale in $locales) {
    Write-Debug "Testing locale $locale of whether we have the information or not"
    $localeMatch = $availableLocales | Where-Object { $_ -eq $locale } | Select-Object -First 1
    if ($localeMatch -and $locale -ne $null) {
      Write-Host "Using locale '$locale'..."
      break
    }
  }

  return $locale
}

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

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

  return $false
}

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

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

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

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

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

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

  return @{
    'Win32' = $checksum32
    'Win64' = $checksum64
  }
}
tools\LanguageChecksums.csv
af|32|8903cb87ef8823778b6e300346107984c144ccc38a41e7c48e94e61eabbba025688527a95500da56d528780012152d5588e5d05a12d20cbf7c9b8f7640fe495d
ar|32|988c78ed29bf1346c3c7f219b7c0900425ae129844dd4885e5bdbd2a62b89f9f2b6ba4ded9c1e271946c89923254e22491e6665323f23b1446168910bc672043
ast|32|ca9c01f023e8a0e74fbde2c5476bfd67ab41f35564f815a1df820de8af9bf554a1e46d22deac175653037da96bc9dec03d0dadfcf5630daf65ab61a787ef9044
be|32|dc60e0af2d13285d95320b9008fbd47ca9e42b6e6286c83f27071e526d9f4f5527e452b64898d1dcd1fbf75c9bf46d7786169fa79859be90ca848356fc9b51ab
bg|32|8bf91fbf3142341c0a733c0d716f10005dd9ebc08185eeab582e45417636b701ff8d98f15770b9cfffbad8a2566f4fd8f52f76945ce82676d171e5264584f6c3
br|32|2204b2dd7e30fc8c5907a5eb3263abae657cc67e22e2f274715e5b8f67b69b7c7e82da35f27f658b25fff0ace4a7998e710b3265aa0a411dca6c5b089d412ab0
ca|32|e8c5aaa483b98e3b2ed906e0bd6f761341a545e58d9f02c1d7dd6f4dc80a7c4a2215161ae13bb99e87820bf6311fef88a9cac9f21eb7612300e494794d28d45d
cak|32|165ba9025ea184c7408b8df6c4eb2f01f155037a4601c5929b2e243848f399210f9ec4994d63652bf5ce6e0aa3a2918e7ed2e5507bb081b5acf978ed34d247e3
cs|32|00a11d850f981901814f8ed80b48f8ea2ae29d6d89ee2544c6addf85675d1592a15cfbba0cf5158aa33bb745e3d45704cc75191daf61531154c877a040ca3aab
cy|32|d2139681d11085d7000ba7d612252fc4f13e0fb25b91539e5559e61231490a76649d442e6e1ef996d4b131d29173cef724f759c6b1c87d643601f4e189f8af10
da|32|32a6238b7969fb3750a14f600fab35c6359d9b68b7b916fb9226d5620c44016918394523201e92f8b71338690d0b7b76fb8c2ddaa6df966b8483c2656a6d251d
de|32|4872309103be4aac9c328bf912add45ec3b6665d3bd9b572f5c65ceda65d16fcec5993bfe4c4bfc4e89b4e5c39c14e7c42d8c4fbfe4160ddc1a81b52fc86b1cb
dsb|32|1dfdbf98944f1dedc1a5869b573e5b5480dca6df7e28112e44c34e14cad5b607df9eed69e3f462c9a4cd08b3207ab5ab6f0080bd8d3c14adc300dc0dfc5ffe76
el|32|f9122dddee06d7863785fd8da4a8817c7d964ca6217f12465e7be83389800fcfbf6bdbbf714a40b6abc9048f0ccfcad9b3ef7b93294d127df57216ac8f11a879
en-CA|32|e17c94f468a0df9f13a34cfdd3c31b0e51ac9bbbe67ca45b83fa45f66326cec95086aa3ccc21e1ec3293e6e6c0b26bc36bfde98027441c82904f127b74aa97a6
en-GB|32|6c73371401f2f7ac32b2654ff4e0124dc079f552030713faecf42771eca6a6d30e433de217261bad7d64d1c6e92569f71d907e5cad8f8d02ba848be85420adb6
en-US|32|41a19bacdb1fe0b06c008304b1c95c7c2deb067539728400a9c3a935a5e793ec40b42fbb44c547a0efd35af661d48c4d83a445b3f38f5c545a374ca7375e6e0c
es-AR|32|0e480a3bb8ef5eefaf88058b55225b242a475d5003d91cdc8e18a24d9d44b5ec1acd07af67c3e112010226b00ab40d35d4e51b1df5b06a01d02167e1987813f3
es-ES|32|9f982082fb7651ff6ab483510ab802022fc9595170188d6250bb71ad740dc6d3c49b01913b2daede43fedf2bf5be6f382461abc3484a5166c279bd5bb825e8eb
es-MX|32|6813034d7e753a1fefa76b25d3daad7746c6025f01b5f3e85e12ef642bbc465eaec04a53bb5ac8c8b9773008e8e4d8139b767873b94af5e475bc36d9c2b1972d
et|32|0e30ff993215c9483487978a58f7f66f99c3133fbaef91f0fb7a38598e9ea4854ddd1da1038a072d4a19673ef75617f41a274a019364cc6d44c5ae9087994642
eu|32|de17bd410868487c2e64b67b263ee135c49a7b2b62d94ecf787cacf9f817f8456903742bff24c378cb37f1c4e657dcf831529453c391e6339988647f92d6eb8d
fi|32|30345e0e54949f74f59169e1e3cbc8ee7d3f1c65451fd56bf12e0adb316edcaa6ba1080790423e3758e85d32057d5ce7ae7101f044a47c75d8e7b46dba2c57e9
fr|32|4c6c65829ba6be0187e2930b9b90c3de11da39cbf9ff6e39ca3d2f17fe76e503fafd9be3e6e52b6364b840342f3b8609238c26ce5218c287e9290314811670e3
fy-NL|32|31179bc521bf6c5634fb187bb6d1a8419e8ba9a66546b9f09dca1792196bf868961fad01a864621d69ec04b5203c79434ec2d1432ebe71b7657b02e64758c261
ga-IE|32|74a489ba07e941dbf4aaac8afe868c169d1cc05ad54fdd37dcee0c640a70f3b33757a660cca23376251a3fe883c6eab8e6e39dbc8a6a88c8de1d76d0884d6515
gd|32|0d64eca5a56ca943122fd78ce700b68f25be23899ca769dd2d0ae0092cb7fbdc423e3bfdfdfbe4212a105a9fbd539ae036557beda5e5739917382dfaab00e728
gl|32|6ad7df0a433e6b0716203a1ef3d95a83fe6bd1f98d15c3f056ecfbd8e7d32d8439c949c36e56bb3e3766ed835e7e8c637764f3ee036e0d7f12b17258f52840b2
he|32|91b09c615cf5728761cb86190b1ad8dbc039ca582927a67b2a79376e3600c361e31b8f62887bfe157aa967342c139d9702c079c0a907319e36f221e9422c92ed
hr|32|2dab249c1ee9967b950d00c0011824b19073d4b974eb23d13d1638bf5ceb0b9d1e5d3f8a01ee90559fdb331e3785dfc2be43d852d229efe71dc46ca2fdba2d3b
hsb|32|d2005528f7dfd9bd2a98dfebc1e0e590500660f6e29fdece1b4fd3a2157aa95cea0eed7156f772767d3aeafa28ab88326dc11f3150482441f12469735f4d9643
hu|32|bca570fd1e69d730f875f6b1cadaa376d3a5fc6a2deb5cfda6dba40e47d0192b7325a444ed788a38c35f3675d824598a6d1b1081be8aba2a6fc32a6300b5ba98
hy-AM|32|2f600d561ab8f82e24a2d6187666192f45b95b5496a24d7251cedae648c2d78cf6595b47e7543316b9e8e85d63efca1bda53c6445d4d88d7256d98a872689158
id|32|2be854eb62655b466e438c2bd9496e501e459a58228bea99444c539d21cdc5cbdd694c5981bcaff6ae5c59639b7df5144c33c150254070da4f6f752997f0fc32
is|32|12f66e27b13b58f6ef9f729b02a1850750b002822d76b8c3bda28cd3342148b51ed8b664de551b35c1d1c459b6bd35cd560eceae9198adfbcb1fc87fb61166b6
it|32|674a2094f23f19a7d68f53d7a92c89be13894eb739cf66940d117e3309fbd598a55e615ff26100ea1a613174d8b6c9ac677adaa50c8fabdc04647583f600949b
ja|32|c5b6562a34f95326ce576720ba72383ff55da21bd8add75845764b733fb411ad0e5fe906ea892cd8ccb2349adc9dfcf0635adadaa7f6ab95479110fb8de326d8
ka|32|11244fbff05fa5a5a2ea55748381da3f6875568e4399b2936d35f6b4710c70b7e97f7eb6ea2b9f983fc6f4d04bb349655bac19f7b25971698631c90fe1d9a6fb
kab|32|f56f32a7cf8351b4049b55f6e66ea260d49c4a12bd98e8f6027dcc36de1b2a5eb10a5ff66563000fa6b024e5e5c8a0468a4bfcc76e6d8ba9d11a914d90ac83dc
kk|32|60875c75a919ac9311b56054b80c2322f6ecf0ff36170212f1cc2f9b68ec46f7172499429c27a61ba0d4fb39a850b4ed614233593e4898d0447a8e7f9096373f
ko|32|d0185e570ee3b5592b02148140233c5d7f6c986ace3b70bd7397b6ef8c81709a6ec4564c6420d8fdbadc4e1eb6aeaf5e63a7a70ba9a01fc6b33b2787006adba7
lt|32|4fcdc12d09cfe8657130ffcee6598e46d8749a931e4f53cba23ebcb2375d9ffb421dcaaf3d324d06e161105351842ee347cdde4cb71afee5db3ec7d9210f58e7
lv|32|772215dc4693940df18a89e3eb70c236b6045a57a34cd6926b9873133704f7a5569619b5a635af0140d2c25361d8073c60a0320f0eb885ea0985f497e924a158
ms|32|93e2abffb88342164fc73ca7333d89699b5d0571c202c762490fd09f327613bf2ba2e22e74263509b669d3ec3366fc100332f03e9ec444dc39f66bb642e37b3c
nb-NO|32|413f59377435fa8333003d4f6a7e5cb1bd852917f0763285c16bb428355e307f333a597ab379828cb279c832901ee00918882cd1285f32e78f1f9031190558a4
nl|32|919ac36852367f38305574bd268e1f32ba233690a687a8e8d9ede1b1d77aa72378244d969e3830971b7a23a0604939d07eb23a1f8ed97897c001c0a18f19ee01
nn-NO|32|1a1660d5ba0319145d4524f3a0a92f61fb2119087cc091098410ab0e0087d70bf43f3bd857c90cf9ea48216e2ae7708069914efc074bf6742ccc5d7729765fdc
pa-IN|32|4939768044e1f599b7af25cd4ea4488bf4acfd484dba3a6118b862f4968a31753f9df6615203b70ad23259ef3bcf2ecc90ff34a9975afb2f01360e9384e5bcb4
pl|32|4a187f046d07838bdc987f26d3d98e11ce48146b739411c0d85b6059ff2e59d2819d2d3d7b291b7bf84dae829cc37a4d31b491a6258b4a3ac9475a223bf6d713
pt-BR|32|e090c5de58dc05b5eda668e3d243d52c6451789e98f515b2bd9f9ab4accb78b7c5b4be4586ae98225598b8fe6ffc773f3062d263bb90817e4399f5fa246d60d1
pt-PT|32|6bb936bc7ef29618927ac9bb95bb4dc788a009788bb9a6da75b8a400d8a6bb510153ee77647d4e844bdf1b8cd5e86ae435b976486f45bac06b49741ec608e7d8
rm|32|9296fd2f2254deaaee1e79810e75ac745a0c5c0e480a1b50eae52bafc71e7c41dc4f1aeb7c1032e461a306155ef8b1721141f8968791cf228cefdeea005c1062
ro|32|ae3fae1e083f56d897714a2aa3138ddad94b4de41cc189e4b643b7a80eb842f0bc1a78ba8fdab463ebcfde22db020cf959e72728bab9646d6081515be7d366d9
ru|32|93298071b61044e0cf0198fa6329e9141e39bd8bcf56f4b437b87cffaa79657beae9e7d1a8358c410a09d344bf51e117ddd2d64d89e27858138a8660f87f9ca8
sk|32|f88dcd97cf79aece577e16c01385150ea3a31b39783a5e3177c10e5cee9a81073d7c20622e10720062c49645f10afdc14a6c14ea19502a277f1be23c5368a395
sl|32|223dd5753e9583a1a0ebaa9f6ead23abd51812d0679e4e5391c6c8354bb52e889da852b3877a7a487257ba1c10c3ace3448b4df46c924680470a5071f031b1e4
sq|32|4587d199e40775763ae4a566cd7f4486796bbf8b646b1fcafcef185cd48830c6061021d0bfb5390b54f4ed62ce16c24f43a92b37d97f7906145ebae99b138d87
sr|32|8f2c8db0ac390d41522d5b1b01d9f1473b06e458d64f8c56bbd94628d75855c4485ed2f58b54abc34dc4f606f6a319825d6299a985f4b08fe626dda59b336969
sv-SE|32|c6dac21c15e56437af8332ff92aa6d1f2a2ea90b9c95a969926b62e43d3228b3ab9b7a7028d18a04b3dea3aba39fef66effd60851bb16ec4d546a33aa62a3e8f
th|32|ed9eb18f4514e98fc66be989f4b6803e4561bfd5ff84eb42a38fa5079d7741bc0cae07f1d9e533fab98676442b0b0bcfb6065b67ccf94d1c7f68e430278cb578
tr|32|d63c8d01d7c640598ffe4008c867b5b2315e52e7113f6451ec089349335ddb709e90b8bcaeed2565c0a25ae836c892144738d6f65068f69c83d983e5e390216c
uk|32|1ef1cb51ec6758996845694e728800aa4747542f94f1c345ca2a70f54a9dfd8e59745b1dff34ca5c1a7e908deb41048799a511c2b140a2a528087ae6c68cd381
uz|32|872c3b2279d5206f6bd81193582af57430baf107bc2b9df960ae5fedad43286bb6f972518b2926832e3b750cd669452f8b2945deea8b95b788890b21709caaed
vi|32|49a9d5a614e68af0913936bbd9b820d7756d36a175c73179853ce2c91f37261076b4c3e6158b174b6ee08d4f576962ad645bc929bcb0e97a8c108db13f05706e
zh-CN|32|33ae262482b407ebbc577c1db4e15b3c50e0017e893394df3eca58db73b993d4e792bd7b7e36cd66ba03f44047048869f650eaebc681f20181293217b8ee923f
zh-TW|32|72cc195dd3e6237aab4b0e6db133907b7940fb6a84fd3313182c062b0ecefd23aafe9dcf526faa4aff16933067fc81714b459f9708be4eef3c453c6f807fefcc
af|64|aa2adce10a39ee502726acd9c78f48af8ef81e8a798a582b3b239753d1c6776cef1e7810f5eb5f1fc98ec3e1d60ca1fd1baa2da42a7cb04f672097484031e7c1
ar|64|32fe14a110f4197ea77fdc6b464d543bedcd6121bb12b45f8223a85ae63cfbda0bc8dcb5a12e0954e0a33e785dbcd8919f30dad637b8f75bc8fe1de857e26189
ast|64|9f6bd30cb779bd696581931586697979fa726d817fd892237d3a67f1ba34d2be313ba6d706d35dfbfc83ddbf0dd7d6119bb18680c81a327acf47e03b32bf8b8a
be|64|040b0075cfcb89624d491bc549bdf2bd1f9b54374fbfaed19560dfdae6def09bac3479c21712d29a5d724842d2f6662ebf0e6f7f00a3b6bb5f2fc5c5aa7e23a0
bg|64|1b3ef4111e2d0d57d8b932722fbe80f2af0dab00d67f11d41ea1fb678ccc8c6c5352b3831af1f0088c79cdad7f22f61d4c8c0f8f77cdbdadf8dff363eb18b6ef
br|64|a9a58bc0a34d39be72c0841eaf22c9da98ecee1d20fca890d8fac38d39bef3f763822ddb48d5936a5bddcd118ad8ee8ccd66e2f0a342e927f00995a04136cc6a
ca|64|89edc35d8e0c0d42617a91fe06ec0d0faee031520e914b4745ad391e3bfe45384ce379fa89ee98683466a63cf796f673cbe8df60bcbe3cbca2d358174a8bc3b2
cak|64|037393c2156b3469317032fedf9cdd0f51db7205c6d5196bacc380a61b97038c98e5967fba6a8c266d8f824c781499660417e469fc9785dd9653d936d3e19997
cs|64|afcac63cb4c127aa5bd09341f18b3adebeabdc17110f242262285b1d03affb49f29dde233c954c85eb6e2cd75a8a50843ab0502096e50e8528a6292eaadd1637
cy|64|b3daf955d50b7267c4609818c693421fcbc0dd1f866b977dad63d74244de2b8f15042261df8955c569b4dbdf36d6a2a62d2d5612919b37eb213769d0359971e3
da|64|f969e8b9a0957284f4df223fe1746e7fd3585ba2fe794395ad72e3e1cd54c24485159da85263414bbf9ca15e138ad0565f27a288700afacb72b232eb455232ee
de|64|a759ca6956dc5ba9b25bf7c6d04fb6b7e7ba490f94a06e8e3cf14734e3646c1f17040ebff429b68a3efcded471977ca9067243139e6074b280a6ee597dab9ef4
dsb|64|ae7750020157c9fc0d6a6bfd08a8af4a375e8dd12021b27835b3dbb3418895a01901d40be4b50ce7ecf6bd5f9b784538847c85b123c9b410aac8421cb01f19b1
el|64|c82ff3e9f557e61ab673be1c28aedaef53014f330db132cabf547077eafd44bd97e1a0c8c34b0f533941325ccfd6203a2591647104aa27c960904324e6335e9a
en-CA|64|effecf9e9974ed34e03bd537a323c0737c24bbbe1ebc9d7e8c4c3fd9d4ddb8ec5c04edd653bbe56a683cfcfcc31e41c62ff064b0af94330147c244580ad6b7c0
en-GB|64|c91e5f551ba8a29085487f633e8a2711fbc984e1ecc8895998604266db989bd889fff9e7b0483e64f86fda9c73308873e1697113d9e2a5a8a65a8c9a3cfd56b1
en-US|64|71de52b5bb605e28fd2f1f9c1cc79aa0b0dd503d959e09d77fa668749bd0fafca3a0d11bf64cc9f033fd957361d25aaf54a7d3f76edc6fdc4c8327f07ec95eb2
es-AR|64|025512555cd687f5fcfe32c08a8b7667c36b7e1a555b212dff8aca94714cce6f14d40cdb4d9a15fcba6befd03bf1e7606b82c4e8c1b650be13f4c9213aaeb4d9
es-ES|64|a3b79541bce46b7bf03e7277ea5a0594ee3d43d9549a3544906de92819f740b2167c399001b435cae9eb9a2ff2749bd75288b256dffeb0a9d3c60996297631cc
es-MX|64|4a2b97cef6483a2a32088409e8a49960e16a6b647df5a52de9970d0f1999f179c2bb1dc2f06454e7ff5934b52e73da0f73c87d4866c24a190fc34c2a029d49e4
et|64|17ff3691c2e6150a0deb49fcbc90c8a339e92238c84d814b8415a87b85eb6e24e2402de2fe617344c9f888a75580a81628a14f1a4d212365c74a2c183249feb0
eu|64|8f027abc8b94d751c4a411ed6f58e4491005d73628c7d51fed0bcdf9a94786191d6c83e82af9502bc8a8fac94b474eb5a426c07ed01d5d713404b9975576b13f
fi|64|b989863330fe98b0a20fae0bc4edfd907c0fd3ec9f1dd0eda6b52ae4269c7f66e6c7dac562c57c969999723fb81fcedec1035fdcb2901e48b8e9509e8098d30b
fr|64|45fc2ef65f0e3e977df37529972a7cf581a3c038087528de83dfae78a4efffdbab191cf507c1c4ae1c35c97e2f65bec28336d56b00a8e4437537bb8934955040
fy-NL|64|eeba43df0599b4538c94d8db3432f31edbf12a10a9e007cfedf2c24808b7e0853a24a9a23e3b41a8fdd82a32a4889c4acb8d4653d3de8bb36a5716460a15ff6e
ga-IE|64|a77f0ed241ed2b2829c80c8803bbbd7298d94156b0881f145a419e1b51a3aea4271c6b5aa2f64ae9e0d037224c154b9176a733c7f32aa6d88085f47eb534cd16
gd|64|cb35cc3993235d799c43eb2617804897bb413b6b6f5fa6ea3136f5838859ebfa092678f5920f30e31d9948555b262dcd4bb82152cec4f3c0cca9b9b3c184aba0
gl|64|7267db76a16c86e0e7eaadf9e3960d29ce10359b6cc52ecdf849238299383144b62d88f216bfe68c96863a7b9cc5b0869d9c7c137ab6e81d69e0d5779156065d
he|64|710cc154d7c8bd4c5235c3ed819c88ef2c536f89f676a63802daff9dd3b56ef2fb79320f41e7de2e0a0aeb87f9ecccc419f6cc0ec226d6e98d7c11d46ed7102e
hr|64|c87ebe680f4f663c120ec6f08067c54b15a41521ae6bfd72990c002a89fb77948bb10ed23fe3476bba620772dc4d7288c80f49106335f6717666af535fe18d06
hsb|64|06afe7ec24676e947aa47253fd33c3a660155c8dc2ef782403838ce2dfb2369294a34bff5c345a46714f547c37b42a41921d3bc7a30d411c3969c02b9a46c2e5
hu|64|18fbcb5c6b300b01f70909fd7103bfd76fa0982496bf7a2fa016fa2d5dc50a830a6dd0ddd1bd68632005e715d9ae74a505fdc6164ecdaa8342c131e3f908d30c
hy-AM|64|37e0548cc89bb80e3229ade112357d698b66a6e5b53b9b2bfe47d3f411abdff3c21cc8ab512165e68ae56bb161d99e117c08a8a9e86d93b3dc27c3e780fca4ce
id|64|c0be15a4b5eb6bcc60f9f83d0a2ebb439b32cbcb24dadbfe19b113bcb58e137f3dc5bbab308a10f08bdb4dd514da3921c908fea4e5adb190ad12dfdfe8da33e8
is|64|6562eb5f1a51de2a9453d7404a3532812ad35f12a0d0935d49f23481cb5a241ea9e36be87bd0668ac978534b448755f5c60af854dd2827a1f9c73e2eb1c0690b
it|64|1ba35f2ede7a7d94cfa22170f3ff116c99e17e1989198d160eda2952a6c6f512e0e7503a6b7ef1e17b31984ab432c2503766d38d54a5ea48e858c3b9c17e3fcd
ja|64|a9d089a05c634f7d26bd4483cb4aad75d084c174cc504e1e727ee55830174cfa20983cab705a9aacd4e0233ef2bd5ef33f9fa86e301996c9ab1b28416285485e
ka|64|57a97ecb8ffaa9f21a8d41ede2ef6f96cbe6c867778833e6336d7cf7d15497dc4e289e006738e18f9a0ece322edfc6a0a4e4546767209e86edfd30c9b26c287a
kab|64|a2f69d478246ab0884926c0cf6e8612aa046213744eb7ca3e2c27e351c404ad5f8d7dcfe0e362e0002f20682135f126de7504192401ee7d54c752434ec53ab1f
kk|64|357c508570fad1b65a140231c7965fe11f20fa401cb70ddf42815e3ab5111b2b8b4eef40bc578db1fb3eaa431314e58205f8534ab35cf4e4c63b9dc48a82e78d
ko|64|55b5c6ca0b792d9b97b473f264ba471f0fb0745ca5a42ff11fbee23c8ee2ecb68961e9968149a5cd7d598032a84033cf6df2759ba564764a73d8b4947bbf2b21
lt|64|265f53711f105a85718fbe553c82c62568c46dbcedcbade4c802020c7c3925de2c3a0df62c985eb9a6774c0638362c53c3c6a9b12ab9fba0a9ae22bbd80e10e6
lv|64|1b956e8c7637f51eec8e1d4eaef4abc5ae6da9e1bb132068e6f3c511ca21009aac26ff5641dd600ed6d9d5b73f03122c7f0d952f31f02bd22da9fea9411e2047
ms|64|bef4ff0a6046c560ab653969c4ab2ab1e597c7921036fe4e485e905b945aeff957182fb6c647fab99e4a4174a32f67e70847dce1f18cd69b94a3802a7f3fed5a
nb-NO|64|55e5a2cebb41c999c8dc372a385ce52c7e4cb138c99ca3949fd50a78a2ab9ab5dcfd4fdc9aa549ec8530f0c7aac28d59a2131ecbdd5433ff3e8bf0e9b4d749f3
nl|64|ae1342797f2095fd479086ceeab472a5a31a8905ac095bf5cee4ba1896ebfe56fdc2db47a1e9c0ce7f0f5861ca3f9c3f544a749049fe13e2507b1fd2bf3dc17d
nn-NO|64|ca033352330185b83ba4d62d2f55d6fc634df278d125175391bfbce370f2db55c40afb84df5944eefb097e356321b699209e20c60eae714048de6a3ba8ece2a3
pa-IN|64|f23ccc0fac1aef9142e078cdc34a560fc1ccdb73cc463dd05bf6e17f6ccbe84f9dc3a456cc38261ee10c9f83c350af85a3d2438508c175467dc2b0d45de6b7ce
pl|64|45a3559f6d34ba3fa0591e7e2aa87414aeda9887dbd9ca6eddbad939845e803f014c23c150b8ded94a6e2a7425e4bced07261ce68bd6880768c076422ca218cd
pt-BR|64|7de67eacc162afa3895a7fe89d525a73177f5173a3681e54e483c1b08d0c85275aecf865d1736b47993b8e6158d863ba2ddf54727c6cba0e112bc30522da376b
pt-PT|64|a8e55b67b0789727806c34ef0ebd72f8625f7e2f01912499b36c64a9927cc239c8defa259bd1e9dac7217a998c76e47320a8950d946e6d941d88175631e8bb99
rm|64|4a8e561e1ab5627c99d595009ec38c511ea7dda007d1023cf564644b981e89803f7afb4946c2aa9ce4f9e7bf6c86cdc9e3328f7189d40307b0aa0e085afa351e
ro|64|3892f3a059339e15b15fba21480d93949f94daba5322b5c1ecd83704ee85a5d450c47a6641feba9fce0174ba621d7ab8afca7b0825c3917623005f4baed5b323
ru|64|81b81179fd054c0f982e69892df53629eb7c00f330d976f216b69c25a299aa13183bbe0202f3d062b5999ca5e3c2764dfb5c94e89b40e32d43a5f5d59d1076e8
sk|64|f6b32f91c654a10e6cd7dc69a0013741e66eed18ba651198c8af612a5cd219c59c8076f58136cf9cfb3fda0e0cd2b76ab0fbe8758605fcab4bb7f6f461808ffd
sl|64|ec55b3c48474c2d72ddbf50f8e48fb85186e8d981eaa5b19e5efe216d90c9189e9e1b2cbfa3fc856b7a59ba33eafb63862671b14bed1c82fe97f6b03d108818a
sq|64|78e4254587f052d39f1c3d74c89c53af1ea669a4035a1486c3e07cc0f27db46ae48b0fd25765fafaa89f2ff902accebb9b73f3665130e3e9dba1bbfdad5fd8c5
sr|64|325c1d0585731be5bb00ff9935b02ce84063c526a2db84661f85dd90fc09a3e87bceeffc0942a4a516ae26457c882f554dd141bc89a15f9e030ae6b57f5c70c3
sv-SE|64|b4711cb3995f0e909d26dadfa99bb77a98146eeadfc96db946d3dee1e1be052cd27d1732699560578d687505ae84eb7b3fe4bac11e86faa0d361a872108edeb9
th|64|b4d8928fbef97eef6aaa9a30c2b6755499121a5340a3f9f909d992e14dff6fdbf6674ef3a4bb1eea3d1b925c17564b4d3c026aa6b2ec9f60ebaad1126a15c6dc
tr|64|5011efc4bcead32c48154e0782bf80b4e1a8a1b7c87dd9d6e426a3e5bfb61dafe4414b7cadef89028b3f4a52dc23ab398b96867b09bf25aa9213d1b3650c103f
uk|64|b9ffa714e7a56d52b5b22067b0aeaeb1339384f3e9e6d82660f7e38b7debee9830b504ab9985ed953887f9053f4c5c7dec6d19609ef1149e69eb68764ca901b8
uz|64|325d9dd3cd5e9d1aa5a2faaf3edd8e30efa6e9bdbdb60abaa99081e1eb165e9f48dd8705a5398ed88101bc3faa73ff5058356f4f5b2636980e4ec8a5ab0b03cf
vi|64|f7bfad4028331c2361802d4916a9bebdd42556979611b3d61fa895bd3702c07644faffbe958306f267f4f93945e1e21651cf95f70444f5de3e0249a9ec99fbca
zh-CN|64|b336398c4f31fa17a4b3faf883698f6d6f888c188a3ce58b9560be448d7d6d488cdae0a11114e767205c0c5a40b8cbaca3615653f71defeb1431138c4257bb06
zh-TW|64|2782543563d020d1382cbfd927bdf44e5ecceac1430e3f783de00c63ff6426d686b5c5a98ffbd8d999078f5dd47170658582b95439210c990a4889b52e0e1910

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

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

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Mozilla Thunderbird 115.10.2 25230 Wednesday, May 1, 2024 Approved
Mozilla Thunderbird 115.10.1 23149 Friday, April 19, 2024 Approved
Mozilla Thunderbird 115.10.0 11895 Wednesday, April 17, 2024 Approved
Mozilla Thunderbird 115.9.0 34022 Tuesday, March 19, 2024 Approved
Mozilla Thunderbird 115.8.1 27802 Tuesday, March 5, 2024 Approved
Mozilla Thunderbird 115.8.0 27122 Wednesday, February 21, 2024 Approved
Mozilla Thunderbird 115.7.0 36216 Wednesday, January 24, 2024 Approved
Mozilla Thunderbird 115.6.1 27367 Tuesday, January 9, 2024 Approved
Mozilla Thunderbird 115.6.0 29841 Tuesday, December 19, 2023 Approved
Mozilla Thunderbird 115.5.2 22367 Tuesday, December 12, 2023 Approved
Mozilla Thunderbird 115.5.1 27035 Tuesday, November 28, 2023 Approved
Mozilla Thunderbird 115.5.0 18700 Wednesday, November 22, 2023 Approved
Mozilla Thunderbird 115.4.3 20184 Wednesday, November 15, 2023 Approved
Mozilla Thunderbird 115.4.2 22752 Wednesday, November 8, 2023 Approved
Mozilla Thunderbird 115.4.1 26006 Thursday, October 26, 2023 Approved
Mozilla Thunderbird 115.3.3 20810 Wednesday, October 18, 2023 Approved
Mozilla Thunderbird 115.3.2 22135 Wednesday, October 11, 2023 Approved
Mozilla Thunderbird 115.3.1 24336 Friday, September 29, 2023 Approved
Mozilla Thunderbird 115.3.0 12355 Wednesday, September 27, 2023 Approved
Mozilla Thunderbird 115.2.3 19531 Thursday, September 21, 2023 Approved
Mozilla Thunderbird 115.2.2 21648 Wednesday, September 13, 2023 Approved
Mozilla Thunderbird 115.2.1 6749 Tuesday, September 12, 2023 Approved
Mozilla Thunderbird 115.2.0 25415 Wednesday, August 30, 2023 Approved
Mozilla Thunderbird 115.1.1 25981 Wednesday, August 16, 2023 Approved
Mozilla Thunderbird 115.1.0 24920 Wednesday, August 2, 2023 Approved
Mozilla Thunderbird 115.0.1 27019 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23768 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 16000 Saturday, July 8, 2023 Approved
Mozilla Thunderbird 102.12.0 35800 Thursday, June 8, 2023 Approved
Mozilla Thunderbird 102.11.2 24976 Saturday, May 27, 2023 Approved
Mozilla Thunderbird 102.11.1 11230 Thursday, May 25, 2023 Approved
Mozilla Thunderbird 102.11.0 27751 Wednesday, May 10, 2023 Approved
Mozilla Thunderbird 102.10.1 29004 Tuesday, April 25, 2023 Approved
Mozilla Thunderbird 102.10.0 27108 Tuesday, April 11, 2023 Approved
Mozilla Thunderbird 102.9.1 26552 Wednesday, March 29, 2023 Approved
Mozilla Thunderbird 102.9.0 25481 Thursday, March 16, 2023 Approved
Mozilla Thunderbird 102.8.0 35694 Thursday, February 16, 2023 Approved
Mozilla Thunderbird 102.7.2 21422 Wednesday, February 8, 2023 Approved
Mozilla Thunderbird 102.7.1 19922 Wednesday, February 1, 2023 Approved
Mozilla Thunderbird 102.7.0 24099 Friday, January 20, 2023 Approved
Mozilla Thunderbird 102.6.1 36192 Wednesday, December 21, 2022 Approved
Mozilla Thunderbird 102.6.0 20238 Wednesday, December 14, 2022 Approved
Mozilla Thunderbird 102.5.1 25100 Thursday, December 1, 2022 Approved
Mozilla Thunderbird 102.5.0 26025 Wednesday, November 16, 2022 Approved
Mozilla Thunderbird 102.4.2 24258 Friday, November 4, 2022 Approved
Mozilla Thunderbird 102.4.1 20787 Thursday, October 27, 2022 Approved
Mozilla Thunderbird 102.4.0 16162 Thursday, October 20, 2022 Approved
Mozilla Thunderbird 102.3.3 20301 Wednesday, October 12, 2022 Approved
Mozilla Thunderbird 102.3.2 18378 Friday, October 7, 2022 Approved
Mozilla Thunderbird 102.3.1 18893 Thursday, September 29, 2022 Approved
Mozilla Thunderbird 102.3.0 19816 Wednesday, September 21, 2022 Approved
Mozilla Thunderbird 102.2.2 23183 Thursday, September 8, 2022 Approved
Mozilla Thunderbird 102.2.1 17984 Thursday, September 1, 2022 Approved
Mozilla Thunderbird 102.2.0 19363 Tuesday, August 23, 2022 Approved
Mozilla Thunderbird 102.1.2 22231 Tuesday, August 9, 2022 Approved
Mozilla Thunderbird 102.1.1 11479 Saturday, August 6, 2022 Approved
Mozilla Thunderbird 102.1.0 17239 Friday, July 29, 2022 Approved
Mozilla Thunderbird 102.0.3 18722 Wednesday, July 20, 2022 Approved
Mozilla Thunderbird 102.0.2 19777 Tuesday, July 12, 2022 Approved
Mozilla Thunderbird 102.0.1 14116 Thursday, July 7, 2022 Approved
Mozilla Thunderbird 102.0 20691 Wednesday, June 29, 2022 Approved
Mozilla Thunderbird 91.10.0 31592 Wednesday, June 1, 2022 Approved
Mozilla Thunderbird 91.9.1 21179 Friday, May 20, 2022 Approved
Mozilla Thunderbird 91.9.0 26203 Wednesday, May 4, 2022 Approved
Mozilla Thunderbird 91.8.1 24080 Tuesday, April 19, 2022 Approved
Mozilla Thunderbird 91.8.0 22314 Wednesday, April 6, 2022 Approved
Mozilla Thunderbird 91.7.0 30213 Thursday, March 10, 2022 Approved
Mozilla Thunderbird 91.6.2 14311 Sunday, March 6, 2022 Approved
Mozilla Thunderbird 91.6.1 23253 Friday, February 18, 2022 Approved
Mozilla Thunderbird 91.6.0 19930 Wednesday, February 9, 2022 Approved
Mozilla Thunderbird 91.5.1 23614 Tuesday, January 25, 2022 Approved
Mozilla Thunderbird 91.5.0 22091 Wednesday, January 12, 2022 Approved
Mozilla Thunderbird 91.4.1 25565 Monday, December 20, 2021 Approved
Mozilla Thunderbird 91.4.0.20211214 16789 Tuesday, December 14, 2021 Approved
Mozilla Thunderbird 91.4.0 18887 Tuesday, December 7, 2021 Approved
Mozilla Thunderbird 91.3.2 27018 Friday, November 19, 2021 Approved
Mozilla Thunderbird 91.3.1 14280 Tuesday, November 16, 2021 Approved
Mozilla Thunderbird 91.3.0 22534 Wednesday, November 3, 2021 Approved
Mozilla Thunderbird 91.2.1 22520 Friday, October 22, 2021 Approved
Mozilla Thunderbird 91.2.0.20211014 17815 Thursday, October 14, 2021 Approved
Mozilla Thunderbird 91.2.0 19163 Friday, October 8, 2021 Approved
Mozilla Thunderbird 91.1.2 22915 Tuesday, September 28, 2021 Approved
Mozilla Thunderbird 91.1.1 21689 Friday, September 17, 2021 Approved
Mozilla Thunderbird 91.1.0 20827 Tuesday, September 7, 2021 Approved
Mozilla Thunderbird 91.0.3 20665 Thursday, August 26, 2021 Approved
Mozilla Thunderbird 91.0.2 10478 Monday, August 23, 2021 Approved
Mozilla Thunderbird 91.0.1 14196 Tuesday, August 17, 2021 Approved
Mozilla Thunderbird 78.12.0 28785 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31894 Thursday, June 3, 2021 Approved
Mozilla Thunderbird 78.10.2 21029 Tuesday, May 18, 2021 Approved
Mozilla Thunderbird 78.10.1 19260 Wednesday, May 5, 2021 Approved
Mozilla Thunderbird 78.10.0 20995 Monday, April 19, 2021 Approved
Mozilla Thunderbird 78.9.1 18526 Friday, April 9, 2021 Approved
Mozilla Thunderbird 78.9.0 19269 Wednesday, March 24, 2021 Approved
Mozilla Thunderbird 78.8.1 21147 Tuesday, March 9, 2021 Approved
Mozilla Thunderbird 78.8.0 18878 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22959 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17630 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20313 Tuesday, January 12, 2021 Approved
Mozilla Thunderbird 78.6.0 20523 Monday, December 21, 2020 Approved
Mozilla Thunderbird 78.5.1 20576 Friday, December 4, 2020 Approved
Mozilla Thunderbird 78.5.0 18719 Thursday, November 19, 2020 Approved
Mozilla Thunderbird 78.4.3 14896 Wednesday, November 11, 2020 Approved
Mozilla Thunderbird 78.4.2 10866 Tuesday, November 10, 2020 Approved
Mozilla Thunderbird 78.4.1 9268 Friday, November 6, 2020 Approved
Mozilla Thunderbird 78.4.0 20214 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11722 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17168 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16198 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5299 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18574 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16601 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9569 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18428 Saturday, August 8, 2020 Approved
Mozilla Thunderbird 78.1.0 10129 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14042 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10398 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17195 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22055 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14089 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18426 Tuesday, May 5, 2020 Approved
Mozilla Thunderbird 68.7.0 21878 Thursday, April 9, 2020 Approved
Mozilla Thunderbird 68.6.0 19686 Friday, March 13, 2020 Approved
Mozilla Thunderbird 68.5.0 28032 Wednesday, February 12, 2020 Approved
Mozilla Thunderbird 68.4.2 21224 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18628 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18179 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13350 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 34985 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16911 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12474 Wednesday, October 23, 2019 Approved
Mozilla Thunderbird 68.1.2 17512 Thursday, October 10, 2019 Approved
Mozilla Thunderbird 68.1.1 17712 Wednesday, September 25, 2019 Approved
Mozilla Thunderbird 68.1.0 17554 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 25992 Wednesday, August 28, 2019 Approved
Mozilla Thunderbird 60.8.0 34706 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18401 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11134 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20032 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45026 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8115 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11759 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8096 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9108 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4669 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10670 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15314 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9165 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9240 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11048 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10560 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16925 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24443 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15828 Wednesday, July 11, 2018 Approved
Mozilla Thunderbird 52.9.0 7463 Wednesday, July 4, 2018 Approved
Mozilla Thunderbird 52.8.0 18803 Wednesday, May 23, 2018 Approved
Mozilla Thunderbird 52.7.0 20355 Saturday, March 24, 2018 Approved
Mozilla Thunderbird 52.6.0 23734 Friday, January 26, 2018 Approved
Mozilla Thunderbird 52.5.2 16334 Friday, December 22, 2017 Approved
Mozilla Thunderbird 52.5.0 14516 Friday, November 24, 2017 Approved
Mozilla Thunderbird 52.4.0 19510 Monday, October 9, 2017 Approved
Mozilla Thunderbird 52.3.0 17558 Thursday, August 17, 2017 Approved
Mozilla Thunderbird 52.2.1 12719 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 6016 Thursday, June 15, 2017 Approved
Mozilla Thunderbird 52.1.1 9445 Tuesday, May 16, 2017 Approved
Mozilla Thunderbird 52.1.0 6396 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7232 Saturday, April 15, 2017 Approved
Mozilla Thunderbird 52.0 3997 Monday, April 10, 2017 Approved
Mozilla Thunderbird 45.8.0 8818 Tuesday, March 7, 2017 Approved
Mozilla Thunderbird 45.7.1 8739 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5628 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7048 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11797 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2140 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2320 Monday, November 28, 2016 Approved
Mozilla Thunderbird 45.5.0 4829 Monday, November 21, 2016 Approved
Mozilla Thunderbird 45.4.0.20161024 8497 Monday, October 24, 2016 Approved
Mozilla Thunderbird 45.4.0.20161023 2229 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12309 Tuesday, October 4, 2016 Approved
Mozilla Thunderbird 45.3.0 34639 Wednesday, August 31, 2016 Approved
Mozilla Thunderbird 45.2.0 52862 Sunday, July 10, 2016 Approved
Mozilla Thunderbird 45.1.1 559 Monday, May 30, 2016 Approved
Mozilla Thunderbird 45.1.0 466 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 443 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7802 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5849 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6101 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2785 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5547 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5686 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5549 Friday, August 14, 2015 Approved
Mozilla Thunderbird 38.1.0 3984 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3306 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1887 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3660 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 793 Friday, April 3, 2015 Approved
Mozilla Thunderbird 31.5.0 2899 Tuesday, February 24, 2015 Approved
Mozilla Thunderbird 31.4.0 2559 Tuesday, January 13, 2015 Approved
Mozilla Thunderbird 31.3.0 2435 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2443 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1474 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1076 Wednesday, September 10, 2014 Approved
Mozilla Thunderbird 31.1.0 992 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1549 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1510 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1553 Tuesday, April 29, 2014 Approved
Mozilla Thunderbird 24.4.0 1517 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1107 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 517 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 879 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 630 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 641 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 631 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 610 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 674 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 605 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 588 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 17.0.5 562 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 16.0.1.2 695 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 451 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 469 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