Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

3,473,539

Downloads of v 60.7.1:

11,124

Last Update:

13 Jun 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.7.1 | Updated: 13 Jun 2019

Downloads:

3,473,539

Downloads of v 60.7.1:

11,124

Software Author(s):

  • Mozilla

Mozilla Thunderbird 60.7.1

This is not the latest version of Mozilla Thunderbird available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

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.7.1'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

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

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


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

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

Exit $exitCode

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

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


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

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


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

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


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

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 13 Jun 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.7.1')

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

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

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

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

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

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

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

$packageName = 'thunderbird'

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

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

    Uninstall-ChocolateyPackage @packageArgs

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

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

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

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

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

  $packageParameters = $env:chocolateyPackageParameters

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

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

  $uninstallPath = GetUninstallPath -product $product

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

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

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

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

    return $locale
}

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

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

  return $false
}

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

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

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

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

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

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

  return @{
    "Win32" = $checksum32
    "Win64" = $checksum64
  }
}
tools\LanguageChecksums.csv
ar|32|911ef4f5dd10855b8823ec6adef41180d41bd8e5e183c86905df6022f69ef04a90d43ac76177052e7481d7593491be91377c3a42ac9bf41defa15fab19dba3a5
ast|32|31c99c81076450ca744866c238a2a551a4fdb76897dc466ee255382862d8b430b7921a5f4638d595a87bc598343647b96f2b868cf2afc72fe6336d872add00cd
be|32|e7bd0af0a891e9c171891c46f3e6caf091799d53492c2a75ee6e520b9c5e9ebc99526b0041028d6171d96c41f12407131bfc0ce3c27fe50c0f3cee2ec447a51f
bg|32|ac47c497e1813522992bfb19e433b39a43a64bb9175165a8803f78fa65c9739ae8379423d7c1683ef32b8f52c772839bdabd2b4c63cb0444cec43f2b4a8dfa77
br|32|c2313262b30351d25975797792cbd986c22f9aa4c318a1401b6614ddd9d302be15a55ac8d788496a8e5c0f6ec8c3165285bf631939492a124178035b29408e1d
ca|32|1a3c1d30e7d4e9f562b29efda4bbe70e52f2d37100f1505db06a503962227fbfbf7c6fb9d02574ba0f0ac054eb99883e8b49a078b6c30cd8ed9c84bcef726f96
cs|32|66187ad58a75dbfb33e3e8e17847a3671fcb7da9c7e5418523516096d7bfb57d21a89736c16f7dd5b407d67bb57f860a723a2d09ddf31c11092f6aa358b9d33a
cy|32|732bcc428bcddff5f963297fc82892b4712982b745c30586eb65a5588249427594c0ae2f203d2afc2a61e8dd7e85a4f6a60ee79691173525e538f1b736df1537
da|32|95de068c03de0661ed4b6bc2456505220ffcfabe62e07df0fa3da3a64ec2be1d0b034f5d017008552f55def9b099d2cbdfccdc7181ff306ed9513d994652573b
de|32|00860d93047a815b01a5db7ff1a35d75587f837b6a23cec6eb30ec501df69d88e3c33733fc089913115ff0a58f0e8fd8e7226b7300dfd687f14d0264d9a2af2a
dsb|32|c2d453ce3c7ccc172b0c550ebb9280d4d4b65cc54fefd96a7ceaf65bdd8d891b5593ff2867ca2136e6d1b85eabd060b76ef9ff672c5c51cba097b1347eb34267
el|32|f1ca4d9984a42bac9e5e707ac6bf3276d461a859dfac0d61c5c6ce47013ed7fda36bdbf354b43134095ae3edd728e19baf5cb2514fe0f9b3abe140de0c3e5542
en-GB|32|d649fa9314d093ad546199f6406e14561976128f5e24d6f42663dc289c13a8a326691b5e02e8cde56f70f36ebf504770f4a71273a890ed6c628cb0f8c35a4f34
en-US|32|879a87840b522e99a96e77d321089ab41e9dc42e164ac76f201df35711ade23bc87d728c1a3dc447550068de82fca6976969ac44f3874a195559a8e01867efa7
es-AR|32|c8164eb51ecb75760cd17cc754a7509c5a6e2847c115ef2cd83b20155084ce28daee23564b54da2ab91a89fde4ed7526d2455116f28551d6078398c797b25493
es-ES|32|c0ebad6679e6c3bb512594485ffc3d950aea9e375f4ed646736e802e46ef91b65902502cceced62d4661ca09d7f6c00c80e2db99534f2321cf95c52ce3a0b961
et|32|9dcbdb644ba25ab1b31577674cbd6d64cfb79ddf3cd5cd1f2cb489bf90de4752e2d576c4d00a124c16f5f7650176896128ce5a4c895568784c890b2151185c4b
eu|32|a4c46f1be686da4d8a8174c036d088df741425c5bbfde0570bc1f22769221f17a584dbac71908922d4393a0c949957b15a37efd1f9d9941321995fd3b9994f78
fi|32|4d4575c34977c6c7eadf3e9ebab7b87d7fde2e1b07a6ebaf14695cde37ccbb4dadfc4c916365d0b9cd0c4f282d7fa3645cb3961e9eb184cfea9dee691c31c2f5
fr|32|9cbdb00c8fb2fb964873ba7f64c7d3cf7849481ebe20590a1ff3c95eacb22cf199d402785cc188829513ec518ad7df0fd995a691f67a781723ace7c5d746c49f
fy-NL|32|c88376b8bea0b38149b860c8d2f675b9ee9ad619352ec7580cb4fe0c1f04700518574177fbdbc95e50eecaa01669fc79006de0b84175f387eb083a616ef9313b
ga-IE|32|e1406294e1f0519e56223188b14d306d5a4a2cd872e5283c131d91c418dac4f601f18d1bed90e2bbbb5dd350ef7e8e2da3d6097ead4038524985a6ac3d6a281a
gd|32|fc5e9eb47cd64081e3e5338e60756c6db26d18f0839f45427e7876b6f2948b3007719ef08e76317a52db82bd35d4366d658e3cabc984239def1edb0e09e721c5
gl|32|516262888b5e877e8106e76b6a5ec19ff34d92e2ad3562a34864d59909971b4b8ee15b2cc9231e64cc609961106992ca955c34463f8e7c48619823addf818d8f
he|32|ed3cef82e5684eee08553fb84f64017b00f24cc86f32e5a13f8faafb87b6352fe0665402baba33b6e94de5aaf5f63588bf20909232502fd069cb7de7399018fa
hr|32|ce3dab72d5755de5968b41d178b112857fac959af63bdbd67a2b3be0a4d05ebe5f79d3afa37ddb65abb90c9cf5981f86c61bafa7ad60b91ddf59acf47e6812af
hsb|32|921a6636b4bf49e61198d7742a2e6ba311e46d571bac1e91621ad57600e3a7303ba14c25a00f41d28d3e6fd89869cfcd8193876afdff5b43e746692f30bc9b25
hu|32|b9f5a0450f368496a61cf6d5108f1ba308f7174de4206a15cd0c6204814aa67dd2429684db669ac431cb1905f15e29e467680ed23857a568f0e5a2a3860259c7
hy-AM|32|58e2e9812abe34802534569d8661cd78098dddef03ad69179ad60adf1ee8dae8e15c03a6450befd3c34e3446089e18eab27878f57beea99a252ba703b01fcdcc
id|32|0e13330494b466ac3bdee14e90283ad88af1c5025407cbe7c75762d1c7c793d80b42a05ce431afcd666000d77b1a95a91db869069dfeb39ddcade29ec82245f9
is|32|e5a621739dd3d00c77f2bbf52325fc611f6478a5e82f12f1546572a5ba8008c9d3ebd276dda832860e94cafb9381ab025d13d9ea2a1427a0ccc4d63f061ee01a
it|32|42b85dfad60bcef5779f3bc989276a0bb889c66eb11173dbf064f399c2a1e82ec55ccb6d8f463fb2d86dbd527d7b6608c1393442f7719c26b9d17433119d2937
ja|32|e9e02401823ba5871197e73c8f35efa28d617531ab0ddf959cc78918f2656d88607e2bd1a11f75ccd5704c9495767a4934cdafef7b17af903e4c8e0d66ce4a65
kab|32|547356322ae1b8dbb192f348aced161970f1c356182789509b55126f78d8b56c697b85c72e89295bfd14a6e2d966c1adc4ec66035a63912c256154a6ba4b89af
kk|32|c5af22260f7be5203278f214de3567995dfd33150717bc5bc9569fe0c0bc47ee092b28d4f98e441c7dad5a5a41f487f17ec939126d7a495d7ef592692f91c5c1
ko|32|ce7becfb581ae9fd779c6fd04ff3242d0de550b1b3392e2b40cdc31ecaf220c39e262ee50b3d4e3c1af58bd7bfe2004299e0e9220ea72d0f3d28eb7da3cddb72
lt|32|7a291c20f60dc93aebab1e590407bf3bdd2d2ae03c27e160790dad3669f8f6f18137d76d47234ce90cc64d3d530edf32e05a8046f804987a294f2252e960470b
ms|32|1992d4d23546718785ac82a8e5b990aa1e0ee97bcb0f64a2a2c6e4cfe9141fd460b99b698ee997c6e6e3f4f7fc2989752f317972f069ab509ec3e239ab646a4d
nb-NO|32|6f6f4c4bd0d6cdc09dcc2b9435fb5e32320bec4e09f17c19954bc42d836b186eb0b41268776979353c6f4184ad8caeb819f1ee258234f707ed49cffd7de968ea
nl|32|4acc588a5e36ce76080ee5427d993bc47d888a555e451ba73b7612329fd2d883e3cab07185454a8ec375af0d2eb354519842fce16d9ae04833e61e3f96276a0a
nn-NO|32|b73d009730730444b0124a6697e2cdf309a3048380005c3a0298734735d5f22b7700d4884c9edc3bf44be1aa1db4bf222dcab5eed67e4efe69716487b126473b
pl|32|0dae087dbf795f2699602b8b50c25723c03630655cd5af3ff4bca461bb3e66e9a439cebe29618e38216e9964df06b84dcb4d63dad2706f9b561cccdb3ff0975b
pt-BR|32|070c04424eea61b9ae4c7ed333b19d2ec0ad179c345ea5ba4e1fb6ad0e7ad338c99227df7aa0c9e21b75749640fd8acd7541df0c383cc9e1576587b869acabab
pt-PT|32|7aa2a5638327e4ff633dd1d6257e3e4fde719d5ecc73156c1a8866a7226a9bea9e608db58dba0e707c263c4a0e961a8d9f249faa4d6301b533904dcb5b4eca67
rm|32|c8ee29f93354eb6468f524e8fc80ec69f2bfccc35008f69c4438c6c210d44110e54a29f26516ad88117302960ddb065286b81322d095ea2f449079f85d1c0d02
ro|32|059c460b5484044a59dea9511edbc232dd561f49283e7e6537c5db232c67719a99a2a49400cb5e506a5d3572a91c79b044266d7417f462cdaca7067d62046aa8
ru|32|60b489de23560c9c2b08902effcc3499064972d0f46b035d95bff675e1d0cb76f94e8080187c4e86b5b0e05c5e070c520d4a947e6e1f8b11a4f2a2913da044d3
si|32|0f1cc56339d046b42089b4d5766d17aaa01c89746897ac8a8ca9cbff2ad2b1d69fc0942cb5d6aa65931f5a831d0cba38737d809340cdd7b5d2e09e55202fb2d2
sk|32|1e2161bbccf606182595c774ecd763b6382958cbe508149762bf591a97ac004cf6c646737363fe74825cec8af5f888ddeb8cabadcea4b4526b16fb142411b655
sl|32|3cc9a5b2399a9d0a4c66fe4811adce8b22cd35e91d4c9a27d918b72492aa5bc10dc3a852f382de983c0a6e2d0be16a8df80383d36efd5d4eaf8a21263c78e77e
sq|32|2f557c1f4943412ceb0e7c1db1d3f8ca85d56d738fb3382ded322423664d1a76ddd509cbe4bd96ac16968e947450fad386b4444afc47c6ee9d53fa0c3a013197
sr|32|7b88c40c0ed56cd0bad1dfb8754c6e9086c2912585577befe988d3092cddc654d5d578ad579a0a18ea5bf265e65f1ef05f86174fc572b1345f52fe264b7b4906
sv-SE|32|6bf66106e655954a93ef5c626c4b79f16f34a4429f0c9efeec0e47efe323ab0a21a3bb86825cb39ced4d864e934ad028b2aff6eb8feccd12e0b36daaa739d0ef
tr|32|d4a81cbd95375ad2ddae1d0c90162cc69b44fb94b1b4276694cc90d948a00e5869fc40a2af2fca6ab506a490cbaf927eaa4beb34a11aa7455c4a48f9556a76aa
uk|32|b12d1d5e28ff50f8e848e5ab62d7cdd3cf7e03b034573485cfdf295742747eda4636603def4402e6dbc35c10044329abb8604d0f16a4d0f5eeae2fe6b0aa5a7d
vi|32|5a1eb22bd6180af203b2b0a63de36f950d6c4c0d3065fd7589a3f4d49e26f42ee66283035549e68c7bd540153f580c3e43172043197f430c200ed8b49f4e5c59
zh-CN|32|487e6ac0630a5c963f0f89bfd4b9fc955e4f7617d8062ac6359e012e3aaf753fa9d3d2efd415a6ce0c49d14a5c896e0f9f250d088305d6bf52198eae91c11640
zh-TW|32|c664010e96bcc3120a2ebc0c570d44a84fa8d51a44431d2488b72f5e996eeae9760eeae48a2aba0adf8ee8126a8f53f6e9211230ae409d8a82cde20295098dcb
ar|64|eba6667d97a2d57a22ee76c5ba82478bf7ae4b9accd58bfd7fdb82effe85d2c9317e497ccb80b41606dd6eede547dc5de8910afc4d5a6f9232929fd810471818
ast|64|f91f11a9cac77ca6ca7625bc6109a2e1c64c4383185ee6e5c72b9c8e8b40fa50917e7d4000e5242b6b020c7a0bb054804f1ff38f413be0c9dfd053bd7aac45b3
be|64|44f629bd6b5329990bc7cc427bb3991e010506b554c273eb4f4923bf99346823b1c053539ab2b47d0624dda40e9808c63b5c305b6007c0558877a01f9517e428
bg|64|d00cf3501b754aecebe0c30f1ae0bb7bbb2c68d0a8e2c9891c006db726d9e1f91e3ada63647cf80729006c749bd7517cd3bf441c50582df8d9c448e4b2722763
br|64|523e5c29bf1ef606ee2a71ec01354b391bfb3d7fb0391077a4d9e60f2ef0fa850a86fef823851e1a6691301598933b9e3e343bda5bcdcf82926e3af371f8c37c
ca|64|fd1337329bc683cd49908cd3b631dc36d18f0dd348ab564d77a749c96e0d3ae45a7f9c72792d0128ae97a82449e8e1c3b82efdd40a498b93f30bc0cabc2fa52d
cs|64|390dd5dbd507b5ce208447bf3849355b52c1be331cf43a3d3e04f19116de33363aafa63ca316133b2c256e3a86707b71690deca57f23a4d865790f76c91f3e19
cy|64|508a6e5ed0011448a9682ffd3cb3504838ca7aa3fb85747022f40c57b46119a3f7ad71b7309275b3df9834b9d4ef6bb952ee69cc1b6131d01586a5c1f81a429b
da|64|ec8bbf13fad69b1bf28d89e585e0979c278ec6d7b870e03f7849ac408ad0e60df338c17f79a01f07263e81465e86d0896c8672e1bc56202276a93db5f529c29e
de|64|7b7d77a161f19dc544bcc456be7a28c9be07763754119923b8cba83faf3d108d2e66311917662cbc364d8a12d2fb81d8d5313799a0c54e8e39bb43904320a079
dsb|64|855cf83ddc21bf28ac502e95e8d9bf48c040ae4241853892fb91c57bfe6a023910eee5bd3e2b29bc8839e7689d1b23248201d84df301e69b09fac18829d60b1b
el|64|91354fc635732591509e7bcf0ec6a66109aa8386cc9bf3d893f1b97943919498895d6f007cdcb735031e8a50f7abe309931a33e15b06a9949512cf641cad76a0
en-GB|64|005393e0705e4ee678c1b2ec4fa138af6f4654e2971f9c645c3a0843670a15fd26ce5ac08c15e5ea3ce01ecdb86b85ca303d685b089590a9fbc35270fae39067
en-US|64|47d87982d40776c8783e8beade629ae3bdcf256b66982801a7a4b63171a8f5e675e2d77dd161729bf46d92fc99b6a1f6e33e2ab27288452ef0b61c5a9aa6c3ff
es-AR|64|b65fd62f6326f1cf15f34abc59b1f0869cffa75900d0722dedb9e6520eb069b761f5209ae63fbad3c22421b9749e750a1a0d69b2339f0bb655fce78d4bd0638c
es-ES|64|6f3767332ad53102085ae52f2768b8427e391134c83f65e9209011c28b1932f34560d740d7246be387333ff98c173bd814a0cf8652df9399d4f51d14c4ce9c01
et|64|54871d5f44d0cd9075f44d95a32ec482ce55eb1d28b465944de51e5b4c95c5be81d7be149ac607d40b81d32d122709f7218271c09db480d5f7f67aae41b744d7
eu|64|8b86283168b630ffa66e8aa7469fd3fc4feb64d5ad19be5487cb968330192e491749bc6225c8e0f83dc7f2f9dbad14772048fc8e53e4480472ffc57e81e98e49
fi|64|3f31dbb4eee600f372a911a855f261fb96570f6bb649c7ca503188d54eb9be778dd486f13f018e1400d9dff8086299e283eaf73fe44a0fbcbc8942e4aff79b24
fr|64|994cae1c8c2490ce223fedc7dae39ac09eaa4370d29a8252f60830f28449cfd29edf1ac64565e99324e96fdf2ec90f85ea5b8f101e018cfe3b502672b3ea359a
fy-NL|64|f85df1bcf78718fd3fcf9b34b15ca425ba4caa13e250199c7602103435e128dcb80e2f46ce29106ef18e34dd84b975364cfa142b8130ce6a122e37c6dc6d79a4
ga-IE|64|14d298cef7fa4541d7a2fe7823bf0031cc7746410001bb2abca664d45a0a6d3b3ecd5825c974c4611f1f6b020abe296bb302830312be0eb27c98bda437471e01
gd|64|81ce07755f196dc1f8a1e672b445bb5d38e376d875e977dca8b5fde35f55ed74cfd2dc9fb67413c193da410d1d8fa6dae259f472b966e243d8772993be155271
gl|64|ff8724af92df2371e1b37affc8583724a42e699a72b72087bdbe554b5d1e79d1c2402277ff54054fe3943b1b55706cea431e887bdf64df68ee9919d8cbb560c7
he|64|0cc751441e90e1fa4d00dca5c60c094bda927d9aef4e9e510f536f62afc9800ed08c4043848ec92fdaf4c4caf33dbb9ad04a4094afcc388169b9d0dbfe11000c
hr|64|5781de3348752f444c264a3ce2d0e0621cea29544aaf1a8d6a0a6f7756084527191e9c270017db802d96bcdb7006a2caeafa2027c2c6f0c55f802e7afc3d6313
hsb|64|b5d7cc2a748d3b0e786078c695bc83a2c3d1b83521cf25d77a239e1c4898e9cbed56f470c186f1cd70f956cd350a5156aec7771840d51786a622c3d00b431161
hu|64|c1ceefcf4949e02ccb7c6db7836ca18dbe74274236e1eab5e20173a3549af59db2fd1210f2be887a49f71c975f182f5a85a9e93cfe831b4e4c309a2880b99d14
hy-AM|64|a45de18b29c47b1263be31207087e8c1fd16aa33050abb1b439c0bdb3cfd13f08afee5d4c8bdb7ec65bb3af661ab7fa2ef9f86e192cef2a774ce11b127472a93
id|64|72d539fa487cad32e6c758a072c3e2b049af14e219680e6c57e4f426345d29dc3503eb9e244c5ee1690d4d0972d2b2afd7065905d5b0c02b44cdd54a612eac12
is|64|4ee1c33a7fd2dd543faa39cd0b1801bfbbb6fd3f9ee8251fb158eb5524667339568a5ff62f2c27141411ec9e2043c9a911015528e72cc10527847c9b42e2a454
it|64|4425a6d6159902255a126680b25cd202b82b85e809f5c8d45716df71feeaa1b1334bf8acdbf87303a5d16a0564a0eb0dec0785110e648370678dff1a13fa37cb
ja|64|4d0a588ac4be8641d43ffac2283bb84d99ffbbfa3ff79dee7d03b4575b7bafdf3d813eacd1a1197df376dd3afc7ae1737fc0e003b614f54db12a2b5f499a3860
kab|64|beb29cbf29a5e780dfc77555290f8ff3e67f3ab273ef073c3dbb39d1c2027d052a70c26f1ffadc3277f84f2afae542a36eb127394da0bc5182ba19389fb08e6d
kk|64|5c7030ef51ab5af54625337bb4d0a904ed9c1804a835ccf2dff8a3c23bd47ed21a861e3e6105169e291622a31d179bf0b7393c68b925313cdbbdf4bf3d3a5bff
ko|64|defff627486a5fe48749c134a6ee73386c485391def3206029018f08e932763890847a0770cf6c2a88115590f87c42640c355088acecf16d590607b2c929d126
lt|64|2b07913aca2153d5840e901b9913c10860dc6a651fbdcf768c3642a62cff60a47eeac80d3f0bac52843a5bfe5ae0d419a0134450cab31e6db3e669a72174861a
ms|64|fc7aa7b9cff7b2f9f6f2a628d31af8f70cea075f3f7c35489a80ae55b70d2448954db4d7f7406df3aee0933334b68f063f817aebaafff0ae0ebb449d4aad041e
nb-NO|64|b04407fee4e2051b6aac916352a040a0a3408b63dbee365ca04dc451954236f014ab9c5a833767a5f58cce7292507d5db9f099856433a80e51d43df4e6190d4f
nl|64|5f3f3dcf1a81e06a8b883507c7edd170fc43b081eff8ae321f393c04428ee732266968fc302221d01e851f5603495ab89dd9f157d5b544fd0c2b177880a96758
nn-NO|64|9394f800398e37f1c365fee7828e43f121a7e23bb635bdad5b6265f756e3d17ebb78a6a9e2a1dfabf74603cafd087e3f1c9788262883ed8c483263a20e5df396
pl|64|89dacb0ef780bbca50fc82789b04fcfac6783e6e3eaa8c9ca97c8bb8650b3f3181662c3fad6500df71914f862521d5cbb62810c1b6c75d1b78e9183eeab4a671
pt-BR|64|d8055e1ac360cdb9e58a9cb6c7b14fc574245bede62f54070f99e946dd3f2301cb60fd7cf957d3f66e2cca636b69848d2d8f4ede5ea867c98054236b1a35a140
pt-PT|64|af354cdd0e6520bf0710309b47a382c5f0150f6af571e97640d3fdf96fbbc796b73b3f47830d540d3e0105de5ed11fbf94a8baae8632d25a5a909e2792d85dd5
rm|64|1980ea640fa6e212ec37e47c5408c6f3ef285725472602111d1bedec435ea51a3c96ecd1bde3599dc2f8d7b4bc622af1841b62d6d87ab6bff7064caa775c8683
ro|64|27b1fe800f0986c73ee778e42a5c70079aaa61020434baf1f5c25d7083846c0dd59611b755475be96962b3a4e9ba36d7ded63644d3608c9e83ca53fe9eb0c51e
ru|64|c9988f7487db9d515f9366626a60fbeed09e4b7a1578f1c7007bbf318e3290270a15c22f97508813356ef300b2a59d95160484506e9be1b90f043543b820c3d9
si|64|f26e0f6af06bcab2b4647cdd3c8135acee79fd1491caaa05ba142af0b7402c9ecfe330ea1648db6454b927518e9ee389f9feae42d32df883225b826483033079
sk|64|1f4832177c6d01ea531828b704439e97ee1e966c7ba0b745de542a84ff37ab3da49617a17cdceb2d3270562e083f60c1813becc9e204da8bbaa6784ec5c7d0e7
sl|64|8e1d242c2d2a58c170868e3d1f4ed2cd19b7d82392331c5db59405c4762339bfde74a8eda4efd1edf789aedb8348be9afb32a361c679e72a01dd77f60e77dc85
sq|64|7b5868b6edf2b879629cc67d6d077cb25d6a9f485c967f7298dc5b72377de931e6ec711a59c2fd42afe34f4c0eac64e2c6aca7730b0b0c6d24614037b09428ca
sr|64|52421bf98154423188327c44a5a464283c60fa402b7badbdc643da874816ad2fc71bcd78139bb361b84177f8b9d250949c03354842c48b5bc61c56a0f936f881
sv-SE|64|5b2acbab6d646410833a9e8a39db8199eb05b278739b0726f2c8a783a1cd0012dc22717d6383f5fe7b64a7a24e9ebae4cce209ea1e762222aa2d863e01e3fa30
tr|64|08bce8a67bf99dca31324331ce539bb57c30ee50f5f9e6822de3e35d24c3c02cbab27a18f5f3f109b3b212d8d93e0a677f8d6e9bc7deb64a5687ceaaf142824b
uk|64|35d8f03defde79bb8615034ecbcdfa58b1404d8ded05598eb3d874326d6d48b5245079abb3318bb2699d8a79c3836def1a2565e539ce07a19c53941756d89dd9
vi|64|fdf9ce0d06cd9fb60c7cbe131d1ec920e4b4b48030e295ee7abbdbcded863367036e082d71d4aed5e4cc8ccdec0326e847938f752c4ab043ab712e5919c2f16c
zh-CN|64|50b3ae9b57cb4a6e0773937cf44c8de3d63f25b077ac6d5a258dddd55da55aa6fd12ef9cd0b39548340e8705463060afc2f0b193e6acd8da62b7f332d6a75111
zh-TW|64|2518b24969beeb764a36588aac66b70d53f396eb28fb38e8a5239471d2d9f4e5b21440b421ec12d953165395519fa5b19918dbd08d03138726fb1b768a0aaff3

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

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

Chocolatey Pro provides runtime protection from possible malware.

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

Ground Rules:

  • This discussion is only about Mozilla Thunderbird and the Mozilla Thunderbird package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Mozilla Thunderbird, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus