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,450,389

Downloads of v 60.5.0:

10,662

Last Update:

30 Jan 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

60.5.0 | Updated: 30 Jan 2019

Downloads:

3,450,389

Downloads of v 60.5.0:

10,662

Software Author(s):

  • Mozilla

Mozilla Thunderbird 60.5.0

This is not the latest version of Mozilla Thunderbird available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

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

>

Deployment Method:

NOTE

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

1. Enter Your Internal Repository Url

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


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

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

3. Copy Your Script

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

See options you can pass to upgrade.

See best practices for scripting.

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

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


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

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

Exit $exitCode

- name: Install thunderbird
  win_chocolatey:
    name: thunderbird
    version: '60.5.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  '60.5.0'
end

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


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

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


package { 'thunderbird':
  ensure   => '60.5.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 30 Jan 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 '60.5.0')

if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {
  Write-Output $(
    "Thunderbird is already installed. " +
    'No need to download an re-install again.'
  )
} else {

  $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-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/${locale}/Thunderbird%20Setup%2060.5.0.exe"

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

  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|20b49a59fe16eff17391fee665ee00524418d19ee80f31eba9328ce418594052a40675fa17751af3b6f19e81ce6aa9302c33398e5bfb31cb7a08952de60e67be
ast|32|6a73cb7a0ad2cd4a0c50b4b67997382969a018bfa934b4479cdd6a2231f11bcc1183d779e1de1596795fc68117c4b41036e4f37725de25efcf36abdd1cd147fa
be|32|e665e8c68a8e4622f3c079beec4d590d0b4f075dc54b83a4c6bed1e65178a04b6ca2c6f6a987caa11787a88012b9a69884af4df85fa41651a5680ad33b342fc5
bg|32|0d1ffa1d9fb20201fa0a34cbdeda393c99d97eef283295539f88e8685cc16964975ce6191d42b8e6fff78a36955e176de6f4486602714e5adaf61c83a6882fc2
br|32|51e18cdd8f5604a4d62136dd1614bd768705f4667a789898184f58c4074fc30fdfe8581a6c26790ad4205a835bd90d7f16d8e90fdd60b891725f3b799ccc5d20
ca|32|852a7bb79ef02db906080bdc50d4c4db995339b2b8f0e55a6195d8e15c36b3026e8c0036bb4fddc7f27354998872ca8e4f9f894844e388384cd5af56e785d2b1
cs|32|cd4dbaa5eebeff5de5de0c4d1820451953d60a11dd598b69aca523494fb50093b887d7793c9c3c1c5378d2fbfe339978e584e83d676ccab9f519faa2086524ca
cy|32|ae60c3bfabc2687e3dd687b09dc997bcd3e005931a022ee63554a417f8e7b07bde8e5e01054fd385ba65e32f0c4c9eca07a19be7a0454ae7839c930166e9fde0
da|32|c64b2137f5aff36219a836aff0b54d7f9b186cbc735141e1b894bff5becedc0561f6bebbcd391a2aff1484c9c5e2b80e35640752a3b3a4685be7c1917065f3b7
de|32|b6257c74ea6fa7dc2598e533e82f2cbe80e2b1df41f69dfd5c94835435d13e79ca12545941100bc8bd89b8c17e331e88766e8880caafb9f1b3ae94b0448e1813
dsb|32|7d371cc5bb317cc35503291f8d7116a628e4bbeda719c6ebaa6f9e25887e5662d7d1cf1acd565a7d82848a7bb1bbc57559d272a15ebfa36db0648203593c60a1
el|32|113a16be791d4d8457a265f64d1a23b0d0d328c4202058086577440352bc01876304bfcf76df5529ad6d8223f4ed630ead30f82f120a8f2ada1c487a456bdcaa
en-GB|32|830110b9d287a4924fdced691b998c699dfa13b7a82faf6ef7d621f77d71fd1cc76a68b7c764b74909963fb8faeca67d67aa6ebe201c8033ae59e00e258a22e7
en-US|32|9595b9bd59469d1e8d93f19b82384f784f1b18a1baf5b5ea87b65ddbece78df15257398c5e4d062de0658190cb527e2d9eef8d9983fe2916788699027d835224
es-AR|32|b5560ed3420223dcc79d4d7e4f85fb268213e5504d5d92afaf9c15bbdfe6609cd424e86c49b96f2cc0bcbea7e5a95fc4b38d26367751f20b8132514905e2aed3
es-ES|32|fa0eb216b85a66716abd21ba212fe0e173eab147d6e82e37f253e31802d58b5a51090e2c7e6e0a821858430945bc85138638892dd0c107a505f609363138c2fd
et|32|fd002c68761f031a3bf2cae89b33d3cf4834a27a917ae178c2b1992709734d7d5524dee3c5aaf2f65ffe1abf443219bca65ec3f19158b9b582d4d3e22c000767
eu|32|1e38047413e28bee60b909591cec9ec797fdb2582098a5f6b89cdb4b177134b898a235ee24624cb6ec70f6329ec71a3346eb1a2d2f2ae47809ae4885e4e5c2fd
fi|32|69cc71b7d3753969678726a451b765aa23254b7d15693bf6220b01138ca6b5ce6498745a407ef26f5d15d3612ba3de96f6b53905e8eb5627c6ebcdce8b1d830e
fr|32|0ae8c7cc2e1812b7aa6abd7fbdf99ba736b5f86b0e75fc90d31bf761b36b01940e6bd4727b8c0b66c09e2c13fb87505370fc14ce42152509971cdb2b6a1c96c3
fy-NL|32|6983878b28ddf18239b8032b7344033993613833c2cc5a93f08a29cc1fe95bd27e101028b74fc4887ce47271cc4ed7f77a176ec1ea6033fd08eaa1d5a0aebec0
ga-IE|32|8a5553cb11085db7c8800fdbeeb39cc4f603eb44697a9ae5d1fc1eb738092d26be2b21dc74b85b8b8b9aff55adeb144832052771c0bfbd1bae67f6c9e5619516
gd|32|22a4087150e3a3e1d4eb5288ff2785cdc126cbe09d123a81d8a47427563c75a3cb50a1552ca32df5cbffbe5b6cf8fc9c1faf7e62aad9f3d6f0b3b85485c256c5
gl|32|0f16a1b3e03a0e238ced8df73ae4f0420d925f005ee2045860b137631366d50852ae7d60399dfe0eb8ee670172ff1570a6be915e8847fb1aea778834b4dc9453
he|32|1dba9b652f1fc3438a741d51aa2cc55d129aca88367a0296101d79d177dce826914da9acd0b5831cd73c4e7204ed07b22bc024a8eeb290b5e3d253247b50fafa
hr|32|4dd896fd8734efe733273582174415dc9014b230bc1dd68e45122ee1b6f3a1de35cf7f70d6a0ecf7d7c331d032985fa051a7016327c578838254c809d526f69c
hsb|32|8cb044b9d3465fe265e7a159056ea6583786b39690728ce9c15f493f88f647623a02c85a450bc3a9b14c897476d18da4ea98a72487e47f9cfa0a44843d74ffd3
hu|32|d664691e53b8ad910e72b81e781fc110d2661247d6f1df0630f38b173530a91af1573980b294231f25adce10b4c4ec856d81dbf3b26a59c9f0f1c290a080dced
hy-AM|32|6f32bae255fab90ad1678049b3727e3ec6b966cdf815aefd26fe10527825f50e5f7138cdb8b959e624e881b44ebeda434021e5b10a18e6c5029ce0bd52da532f
id|32|37460a59d687639f658b93de72a24b8d12b93bce4b2c5bea2f3af29430d1a282df7252317820c2755c52ea2f5815c6b61a3944037588cfdc89b67bd8370d54f5
is|32|3b631711593406c1f36d27ec7fbfcc2e04679db0502c91b7dd91e27768d478ed9397fc8642f3db8b1457ccd712e996607f96f672d2b9af81619e7e32858fa93b
it|32|665da110c4e0d94957809cad47c668d8bc6ec3b9899ba8046840aa2427057fdb6a2695455bea063e731b224db98707aa720b867f213ba7ccef2a901252b4a999
ja|32|05e450c2cb942479d3b442f53410c6f7ad1e3c5142777a797af96e98bbf39d3fb15886ec148534951b0effd9607bff1b52cc84705e3fd0aa0e36d5a2c18a8ed6
kab|32|bc5f7ad1bdcf0c89fca4d316462f442e74592f2bc8d7f76be4825ec898f47d0d7fbe36f0e98d02bbb773c3b56bafb1d9a8fea1565b7a47cf26b14f046f6fe2df
kk|32|ebb2632de9febb1cb047c21d39b8345c97ec8a48e37597e0d830bade563633b29795b6c45a2b1d1049f16429ab384539fe9a224e047029c5efa4621afbd552f3
ko|32|b8af83b310d178a022ea47053b8aaee8ce7ec44c5796072d983d3a3dc9fa4f27984afd6b19a1b5e5db6d50cfac6222a98f6ed7358919c2d86451f94916cc0e84
lt|32|5467d989440ee26218f1138c6c43119a91320120d9f1e84ca67fbf08dd7366f3bf04e5961c1d4c819d65c2e16b4f7670f8a806cdbe2a609954834584fa6ccd0b
ms|32|bf5e0a71ca87444cc1ae1be92d9545789bb7514bdc6360bb5fd38c9ecca0cd3198b02af1ce864475d3d31a329d5a48f89f42e27a87e36a90aa65d0b5612070dd
nb-NO|32|b6df919841479a0d4909eb4735741b48b2bd48b004919d3490ac6db3e13a67e4c2e9cf6c8dc960dc6bbc860a3068fb61ea690f847d4451b6005ad7d6f0cc3155
nl|32|03bfea5a2640d1e1de9a251d14c1c8a2319d4eb6abbf27f41e6c0a4859e672d2f2a6d486484df7eb6804f381c7c2840f53771f40c4a808b18a7cfed71c5ce3dc
nn-NO|32|0270bae7c1ab9ab68d3f1f7666a671108c57b970fa2ae901ee480139a06b69bb0bbf2be75bc927111b1219f420601d3a335e5ac5d3acc4dbf43765b870d2f314
pl|32|5d888a9a5319b3d79ac94d1fd9a0a1f8fa6f9decd5ce286f97fa6a9c60432ff9c988684459778d682bffc3bdd86196a8ce3ce739d6a8ee700c448346bcf72624
pt-BR|32|32492551a1e8faa9fbcd49c910fb6ea11c1ca8333cc10ad6f4915bb6aa8b85439751fe9006a2d70e740feeed8e5bc2ce99299019e5d8a428cfa9358e327a9cd5
pt-PT|32|c3f99dc7ec83c1fbb8ed208917f8f84eac2c199ea651503436b1cdbae0e2abb2af0b6d306e65508b783a1208cc2d2ba7300a2967405a3f7d9aef3edea1ba459a
rm|32|78b12774b4fdd37f232822da61956fdca4c44499bf7e999aceb467aae390540e63b30eb87a608fe85051003f866846e4d3ee99353b2e2475aaf74dee850d998b
ro|32|ff63b74529275707011204534cc0eb9b1be131be592a52a1b8aa5be41c0785918e57a7a8e61e68709cdf5dc368a51b26172dce0c89e1e3199af2a987a426815b
ru|32|252838ed3f05cdc7e0106781a6c7651ee4b69fa643babafbe409343adf3f5bc5a797c77a681d19cc5aaf637fcb768c427c9819406a5a20eb4c9375c6b4518c20
si|32|ee79fd6a3958dba4c438559770c3e43130ea421076e4445a265e53a9a2bbb63b85ce549620aa4919bf8c3684237dcfb4d99e6a8fdefc21d55816ed679fd43b59
sk|32|7ecd971da5c019a0c2507fb69ae8f409ad15e349a17311b95ce8a4fa5cdd38221da7bce42f1fbff94bfe0bbb48a1a7f448f640bd5b566165a65ddd7394e88465
sl|32|254e348bc40b5954c77518959beb6d1c5d61e0c346cb538e1322ea086711e935c5249131d7bea5735d608266245a61660245886ab80c566e9742648c88952a62
sq|32|e7520b52302c8bcd19c439a160ff3b08bb2f1249eedfa9c742f9fd29d9cecc94c74a2406a7e7a9e053a5cbae4bb9d8607c5b9e82f8ca21f61c70b91f18c2817c
sr|32|64e70ed30fb3886c8b9c51f8e0e00ca22d3cdffc85c87ada853d3c8e7907babed12b5c3e36671d6bc505126ee29f81c0f56517a218e3a3357312d147dc970fcb
sv-SE|32|3a0d30e559fe7d76c1daa866bc36ae75ca5b43ce8fe7bdfe1bb2d695418c60e2f8993fc2004d978d6a73e8e5de5709a4b0feb45cbec2a4291a286c25b5b97547
tr|32|3cf8151cf64ae55eeb584f6e61efefd2482f22894a8545a51a9e7532a51b8019084f102f000ec12119eca0760a165efbfb0cefdc1527989a66f0047bd8a22ea3
uk|32|d9332b0e76474832ce3c36c390c03260b92d760878d459db03ead29bbd16526d7160f58c13032e6fd19999feba4cbef6ed6918d23b4ab1fffe6e62f1b9384139
vi|32|09044426e885df3bdb332100a86d59c949f9592c5c3ec141b12e03c8cc92b3cc28f0b7d76cab358067266ced172467b865b334488c71254ef302cb0a77b64896
zh-CN|32|ea32e5515b6411c5c0c68cd08878aaab37b2eebe79aaef1e78a709373a50bb03fb4c2fc4faaeeb79fcba76277143f7690cf16245007d91782397ea85aadc6fb5
zh-TW|32|4e4d6fb85e35327de84b396cd1294fdd941d7a76159b9a3a0d29e563dbde5c2ad8f7ca775da9284eaa4ed0c23f7be349abeffac7523c822ce2df7c644c6f7b4e
ar|64|f34020f221ed3e7ef08bb17e69d78abdef401ffcf1f5548b5bed316788ae0e95e2a61e596774ccb06c261f94fca33879f5bc9178862db189d5a57a5471e05e54
ast|64|a2201046c683c4b9a3cbe459efcb74e1f3f51c0aab6eaf0bb1f0f64d911998aec1cd48237d8fcc0cff76425d7d57854d407fccfa3b8a3f12eca3f3839481702c
be|64|7c981265d848fa79d696cb4a26aff7dffa7029b6593f70c68f819a81fff068a5c6a08ff79a34642965989403793dfe259036732c1588c9aca9287d91c65929dd
bg|64|46f3e81c5ec5ce136bc82b329005c7b59747c910e00457742b1d06c954d80045664b2cc8bb652d3f911d0de6cda6a7b7e36b4ed5c11268c95b721193dfcb849c
br|64|d0020ead272344142b230c2173a406f35a4295ba711c611bb31a4720c494c5d83b22fb48252643dbbd79ed3e8eee8e8655b4471885e2c9c1ca1121c5c7d3fefb
ca|64|65e0472a6371500ceaa241450154dc3a0e7510c01f45b63d0c7eb10215779c1101d34e784e34d94ecd0d8df11b12cdab7d4e0ecf6cdfec8213e1c2389ffca6f6
cs|64|c2340b4ba97383f5eab6ba9cf24ead2ecdf8ddb9fa6082f89e3628cf7907f5d3e7e07d6bc63a6e03b9b5784cc5f605411fb556598e2f313a547f3961713e21d0
cy|64|40b3a858c699f8fa48e8d3d90503e73d9be0265e90f515b16e2f3d0fcc7fc8b27705f08a52568704ae91bc7d53483ab881dbfff290fb771c5490752b984fd717
da|64|cfdd3d55c8ee11332fec6f147060b4f0b92b81adb7671b6604242639e1666e5fd04c3bc03994f19c4080969fdceee9de2c4c344a1ecfcda47ff9a45ddd1b90f3
de|64|b3e4b992356524edf656d3b293a1000db244a094b5fab9fe65260b2ad42384e623282061ee4dd80bd2a95c951de7f35169358f4e1ae4d097518ad900ba5b82df
dsb|64|fbe9dfd800497c73e13ebcafa7136bb448b18fcdd4921bea806323384020528a849aec2affadf8473d902ff089faf52aa5c9d2552a3e683515714a144d71cd78
el|64|c478bc9dd4f196c551ec2fdf66bc57c6b879a05a023582f97dc81f15666b74871577bf19d79bdc817ba3a3007e7052de09b20d1b968f4ddfddd06df6562c1248
en-GB|64|dd301c57f88060ae5ac7db083f7a6c072d4f9542b0164d995d10b8ff1221e4c2e14e7483ffbb12c53a458036200b954e9561fcaf40d175f75cdf155c5597212f
en-US|64|7b79a2e5afa4aaf5921a794738c3594eb4c1ed38ffe597db7e859a53b76d22c290271798a9d9cb5218ab16c5062dab84e9d56823560dfd6857e781f66a4555c6
es-AR|64|ebdb18cd0db7250e51eae98a886399744d667171c9bcc466e6ccfb2b081b1284daacccdab8c21abbcc6babb93535549f75797130e3bf3a5638a16a9decc397bb
es-ES|64|bb63dd7dcd9044fa7ff4dffe1d481a59f38c43132f357b190b029c93c3426afdf531f6c2a97015e1198772c721a192bc2872d82b37ce230bfa51b251baf8a702
et|64|ede6cfb25631d6762b993470d7e90414cb3bd32829c4fe00150916734df02b28bb4d47afa54489e92cce5900f2a86bccf264a6ebbef5c18307b7e8d37dba2035
eu|64|4e8f77d37174283bba6f344967ff75d15959d292ee23dca0db6abba559f4d705a99f947ebac7873b22373499fc5fd5f32dc8b4bbb21c85cb18162f71f1f94b3c
fi|64|e071e01452ae991cf432bf87268bbafe6233b54134eebab65fcc2f72a33e55fb555ba2e7d2c792a7ff46da2b5ca5037c542688166321b039fe2a469f2ebde2f5
fr|64|8b37b5767b250d08db89dfcddab028e5c3319a368ff68ce3a541e1a91e5673168686c3d9a6e9c83a2dfba1a5372ddc8aa17ec1731a620538e185c9a037361f07
fy-NL|64|49901c5835b2c1669696a2d448941e9c25eb9108ff074f05ecf773ba61007df7f81dddf6065808a64c4c24ffe0a861a6e8d6f5b66f2b744131a18d4802f4a79c
ga-IE|64|0da6f0f337892306dfd982843101ab5f97a6a7582269b850d81530a533f1bd05f241f280c86cae7d1fa8bb4a7b4feead5f25d30c3142868a6477100ebbba2595
gd|64|a8d63c4380c0e47cbcf9c539bfe054dfa814b542dd96545479dc4051ef38c6baa215dd9c6bef8da71bb81e9c207a2b540cd8182de551cc20394c08a8635da235
gl|64|73b7ca04d30060aaf598edc0b38a1c58993e1ec7ea1a512d1994d85309415a5e77c2333b01bbcde89c4692c1158dcddebf9f8e70a8c7c0c6f982025f5e72989f
he|64|49980bc38da50d15322162af8f3fc11d3e6c75053e8439c9c272a4cd1cc73c4df3f543c5e5c1426997d209e94ae8ddc8d7544b552c9f4e49ebcea58c81f43952
hr|64|8adda77dcacdda3b8baa51e1c026b3f0c01cb59ba7f487a65416a83cf40bf00b292faf698a0b4d36916fb2c875adccb55a661ab4dbab8d1c93be6362f69c7cac
hsb|64|0fae7d304505b8ee66c820cf8fcec1779ed39b2984c9494feac00a35baa5ea01f77088e5611302441d837d86a5e55ecc59cec4493d0b24a06fffa8f57007421c
hu|64|c942437127e5726ae538efc2f22c6db25fcafdb11840befce8bb5cfd71e94b295bd4bf9b968b38eecffed8b26f6e040a434c86335f9299f1c8e388a5a0592f2f
hy-AM|64|465082d24afec91ea7683b8ea085fc36561334c5f3dbbd703fb77688f67704a4debe73d97e7e266eb0d84b1ee00213213110c08692efb4e109882638fa9f5479
id|64|8cce3bc159e5bd45dbd0648f8f7144907c1b93a26b9fdcbe75d9fef2f8a17132f2e1f17372ef7e59ea30899408000950d26793e63a8ac02697a5e32ffbfca8ef
is|64|1511b0ed6cb8900d784952cad3ca55d06f8c42e146d43e0a2759cc4e6502be80534976f3415bbe9c740dd3ed21dac2f2c3e0e6db6c18267e0ac1023481715d7a
it|64|3e25a319831bf47f9192c523c6f285e4cfb90fec86ab23360e9f15606e8e09c5d7922e3c377a2e00d9499ec13000070856d9ac82f4a30c41f104721e290253d9
ja|64|343046cb18fd54d2593d075cb4bc59330185b9c5021ac724f34c739a2544d8e16c6e649cd3ec12d81c77636d9a8675afaa775b11d98ab3d1681a76b2d1b59a82
kab|64|fa51f6f87686158a4750945655d0ac26fc9cc1d1199e6eb6f6afa2ce49c593d69497f850394d8069afba155e383cb8285bb32ac3d604524b615109cf2c87ab1c
kk|64|d923ea932ff9cc9127f055f52f8fa839b07621e3eeab2018c28a83a13e919bf09edddf2710adf0c73cf78d1b7854f459f9d40b256db82585b567d08a03564ba5
ko|64|c05c553b3788541698dc77a7ff72a9c6e66f48191a4e2da4f88fddcf90a141b98447c7761736d5a2d1aceeccc600f02f2f5fdb0da43f549e96003d3a3ff644f8
lt|64|af189795b730d11322ae3194722526e32777e5f75fec27441d34d5b31482fa3bc73941978da06e3c74a4cf5f84b0bd5d91fdf277c55e16f45a7767db5401abd7
ms|64|98e915f4aa2213b7370dab0b6ea99e1c41b82b6c5559d1fc2cfe8c9971fc8011d0c038a69936e8fa627d81aba96bd05769dea08eecab871246cabd1b7d068c55
nb-NO|64|b074b7290e50815944872fc3272b77fe6e64add70ba978bdcc52c1b5d4d48ce3ed7d21e5e56b4b07a36d959319928d885545e506801581bc6e622d82789ee403
nl|64|28881fbec766a6cd927a8862e54d9f88a99828771a927e40c4840b704d4d8fedaef892b34ffa4540caed8ab5903d55a4b63041c919f6dbfddc532f301f4d9911
nn-NO|64|2a8dd26ca726012c1c34a6455b1aafa93ae3374b6ae1ed6c5fefd7d2607ea8bf02b76a3801d8cf6d599f14e95812b75f99075e553c278bd1ac74d7deee6ac29c
pl|64|43fcbd5791ee58869a1e2880da57e87d7abea8c2aafb368e56e20a06727abd07b4a4d7ce7b38e8e8343aa1ae9999a4c67ca69ed89e1bbb0f9e391a752cfd7cd6
pt-BR|64|4a4af39e238895604b581d4da7688e288cd1d2fcdd3b33bbefcfabf5ffe26830335196f00a411f29b72ef2e290f91933fa14498cc5c439cda0562b75336a8186
pt-PT|64|59e8addf4e7bb0913ee66cfd9a9e88d02d942cb267cf46a5e12ea2b39a97ed7ea679047fda64da9883de39053323610fbb75a971ada7c6d48e9c08235f1a5703
rm|64|0d8ddc166000e2d8ed3c256c9294904575f29b131fee5ca1e27584acd784f22fa6df5e9a63dfd536383d9ec9c9e14ffd683192977894a4611ecdf80ed3d9c909
ro|64|6ac6b5ebfb9b2ef54c8d02162aaf9ff8f0f508eeb4544ff311d53aac1fe7c57ae7298a502b297fb464121dfdfff8275ed3d7a925dae355ae8e996cb3820795a8
ru|64|eeec83ac64af9ac8dcaaf34dddf7b553bc23a0e4dab1cb091d8c382318844bc4f4b432cd874ac977e13551c462af22882bd98c91854207840e3a00ee18c55632
si|64|229d5fa5bd4042bca0fbdae5a4a88037d00b41d5b30afde4460be428b2dd311e3bd221264f0123bed693f083029580c9b49b0cd6246b5bd9bee0c8cdbea83a8a
sk|64|a1edfeaa5ee7e076807271f14496f4d1bbfb245c838569e042bbb49c8f12302768f3dc77c3b21e15adc4411542a227dfa37d054bf2a1d67c850f0097150a80a2
sl|64|2b03e65a675f3f7fe15d876ed386c0e4f1ff535e77c9965a8b63c1ecf556725cb632d58af10e154fdae2231b88de03415b7449f800936f55e224757e3c472a30
sq|64|db68610f0e2160463237c9e96c0e3b2df779074ef43ec711a122c1319df9e63f4bda04e7f0ec2f3945955102a85c104374f4dfe46492650f4cf8c835c6a07783
sr|64|e1035c37e7e6f078abe65d1ab061fddabde89a7c26e48d02f3ed18f93f9f6f6a698885b6c7533f8f7255aa2a000a131717a3580c5ab34924ff5990faf492d9ae
sv-SE|64|b8c4ef13b8343f990e54e2bc98bb43ff8f19023c1990147076ba21c84e7bfcb58e05f0dccd3ed53a75ae85f5d34e6a043bffc7ff3784612c6c1149cba470780c
tr|64|8ae8f3428fa37f6d0f530c4009cdc32322b3b5d8153367077b9019b5e7a1a2ecac1f9f001a4f93d4c9c13d8348fab7f6b2152a780f9afbab9cda1637df8e328d
uk|64|544ef0d0de8e71a576f04980d94bf0a186ac49cae0bd55c522adffbce799d858a7d5f3c203ee24a4c28fceece2effb087f0de31c6723fc369cec3cd1fb82c3f0
vi|64|1c12621832bc05b411e264edb98e2101954a98809c45232ebb5907761fec993c9e00de027bc0a888164fc149f4776eec6a2a11d4ac1f890c7374aba009b1ab6d
zh-CN|64|230d04e58372c4c1b02eade33ef85f22a3b2b1aae89c4c08a7f0faab643e9fc131bd7ace2998a3c02b36de27f126bd4ed9adbce54fa6376dacfec9b68d66d9cd
zh-TW|64|dd511b01eaebeeb76faf56a44731db6159fdd22abff04e202d437c389e842630d8557a0674d1c81dc55961639ce7af283437793519e4ef9ddc9e00fc23b241ce

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.0 27103 Wednesday, February 21, 2024 Approved
Mozilla Thunderbird 115.7.0 36200 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 22363 Tuesday, December 12, 2023 Approved
Mozilla Thunderbird 115.5.1 27029 Tuesday, November 28, 2023 Approved
Mozilla Thunderbird 115.5.0 18694 Wednesday, November 22, 2023 Approved
Mozilla Thunderbird 115.4.3 20159 Wednesday, November 15, 2023 Approved
Mozilla Thunderbird 115.4.2 22742 Wednesday, November 8, 2023 Approved
Mozilla Thunderbird 115.4.1 25961 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 19518 Thursday, September 21, 2023 Approved
Mozilla Thunderbird 115.2.2 21627 Wednesday, September 13, 2023 Approved
Mozilla Thunderbird 115.2.1 6650 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 23752 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 15987 Saturday, July 8, 2023 Approved
Mozilla Thunderbird 102.12.0 35794 Thursday, June 8, 2023 Approved
Mozilla Thunderbird 102.11.2 24972 Saturday, May 27, 2023 Approved
Mozilla Thunderbird 102.11.1 11219 Thursday, May 25, 2023 Approved
Mozilla Thunderbird 102.11.0 27746 Wednesday, May 10, 2023 Approved
Mozilla Thunderbird 102.10.1 28999 Tuesday, April 25, 2023 Approved
Mozilla Thunderbird 102.10.0 27102 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 21413 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 25077 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 23177 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 20680 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 23245 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 22084 Wednesday, January 12, 2022 Approved
Mozilla Thunderbird 91.4.1 25558 Monday, December 20, 2021 Approved
Mozilla Thunderbird 91.4.0.20211214 16781 Tuesday, December 14, 2021 Approved
Mozilla Thunderbird 91.4.0 18883 Tuesday, December 7, 2021 Approved
Mozilla Thunderbird 91.3.2 27010 Friday, November 19, 2021 Approved
Mozilla Thunderbird 91.3.1 14269 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 17809 Thursday, October 14, 2021 Approved
Mozilla Thunderbird 91.2.0 19156 Friday, October 8, 2021 Approved
Mozilla Thunderbird 91.1.2 22910 Tuesday, September 28, 2021 Approved
Mozilla Thunderbird 91.1.1 21684 Friday, September 17, 2021 Approved
Mozilla Thunderbird 91.1.0 20822 Tuesday, September 7, 2021 Approved
Mozilla Thunderbird 91.0.3 20661 Thursday, August 26, 2021 Approved
Mozilla Thunderbird 91.0.2 10469 Monday, August 23, 2021 Approved
Mozilla Thunderbird 91.0.1 14190 Tuesday, August 17, 2021 Approved
Mozilla Thunderbird 78.12.0 28780 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31886 Thursday, June 3, 2021 Approved
Mozilla Thunderbird 78.10.2 21023 Tuesday, May 18, 2021 Approved
Mozilla Thunderbird 78.10.1 19256 Wednesday, May 5, 2021 Approved
Mozilla Thunderbird 78.10.0 20989 Monday, April 19, 2021 Approved
Mozilla Thunderbird 78.9.1 18520 Friday, April 9, 2021 Approved
Mozilla Thunderbird 78.9.0 19264 Wednesday, March 24, 2021 Approved
Mozilla Thunderbird 78.8.1 21140 Tuesday, March 9, 2021 Approved
Mozilla Thunderbird 78.8.0 18870 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22954 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17625 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20300 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 20198 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11713 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17159 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16188 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5290 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18564 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16591 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9561 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18422 Saturday, August 8, 2020 Approved
Mozilla Thunderbird 78.1.0 10122 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14034 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10389 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17186 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22042 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14083 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18410 Tuesday, May 5, 2020 Approved
Mozilla Thunderbird 68.7.0 21865 Thursday, April 9, 2020 Approved
Mozilla Thunderbird 68.6.0 19678 Friday, March 13, 2020 Approved
Mozilla Thunderbird 68.5.0 28022 Wednesday, February 12, 2020 Approved
Mozilla Thunderbird 68.4.2 21215 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18622 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18167 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13335 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 34971 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16902 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12463 Wednesday, October 23, 2019 Approved
Mozilla Thunderbird 68.1.2 17501 Thursday, October 10, 2019 Approved
Mozilla Thunderbird 68.1.1 17702 Wednesday, September 25, 2019 Approved
Mozilla Thunderbird 68.1.0 17542 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 25982 Wednesday, August 28, 2019 Approved
Mozilla Thunderbird 60.8.0 34697 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18390 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11124 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20018 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45015 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8109 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11747 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8082 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9101 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4659 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10662 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15301 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9156 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9230 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11038 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10550 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16914 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24432 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15819 Wednesday, July 11, 2018 Approved
Mozilla Thunderbird 52.9.0 7454 Wednesday, July 4, 2018 Approved
Mozilla Thunderbird 52.8.0 18795 Wednesday, May 23, 2018 Approved
Mozilla Thunderbird 52.7.0 20340 Saturday, March 24, 2018 Approved
Mozilla Thunderbird 52.6.0 23724 Friday, January 26, 2018 Approved
Mozilla Thunderbird 52.5.2 16325 Friday, December 22, 2017 Approved
Mozilla Thunderbird 52.5.0 14507 Friday, November 24, 2017 Approved
Mozilla Thunderbird 52.4.0 19503 Monday, October 9, 2017 Approved
Mozilla Thunderbird 52.3.0 17549 Thursday, August 17, 2017 Approved
Mozilla Thunderbird 52.2.1 12707 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 5999 Thursday, June 15, 2017 Approved
Mozilla Thunderbird 52.1.1 9435 Tuesday, May 16, 2017 Approved
Mozilla Thunderbird 52.1.0 6384 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7221 Saturday, April 15, 2017 Approved
Mozilla Thunderbird 52.0 3989 Monday, April 10, 2017 Approved
Mozilla Thunderbird 45.8.0 8808 Tuesday, March 7, 2017 Approved
Mozilla Thunderbird 45.7.1 8727 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5619 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7039 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11788 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2130 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2309 Monday, November 28, 2016 Approved
Mozilla Thunderbird 45.5.0 4820 Monday, November 21, 2016 Approved
Mozilla Thunderbird 45.4.0.20161024 8489 Monday, October 24, 2016 Approved
Mozilla Thunderbird 45.4.0.20161023 2217 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12293 Tuesday, October 4, 2016 Approved
Mozilla Thunderbird 45.3.0 34631 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 456 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 434 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7790 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5828 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6088 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2776 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5536 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5676 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5535 Friday, August 14, 2015 Approved
Mozilla Thunderbird 38.1.0 3971 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3296 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1877 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3651 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 784 Friday, April 3, 2015 Approved
Mozilla Thunderbird 31.5.0 2892 Tuesday, February 24, 2015 Approved
Mozilla Thunderbird 31.4.0 2552 Tuesday, January 13, 2015 Approved
Mozilla Thunderbird 31.3.0 2425 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2430 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 982 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1536 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1503 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1543 Tuesday, April 29, 2014 Approved
Mozilla Thunderbird 24.4.0 1505 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1092 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 506 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 871 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 615 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 626 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 622 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 597 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 661 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 594 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 580 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 17.0.5 551 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 16.0.1.2 685 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 440 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 457 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