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,516,422

Downloads of v 78.10.0:

20,992

Last Update:

19 Apr 2021

Package Maintainer(s):

Software Author(s):

  • Mozilla

Tags:

mozilla thunderbird email admin foss cross-platform

Mozilla Thunderbird

This is not the latest version of Mozilla Thunderbird available.

  • 1
  • 2
  • 3

78.10.0 | Updated: 19 Apr 2021

Downloads:

3,516,422

Downloads of v 78.10.0:

20,992

Software Author(s):

  • Mozilla

Mozilla Thunderbird 78.10.0

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="'78.10.0'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

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

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


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

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

Exit $exitCode

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

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


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

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


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

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


package { 'thunderbird':
  ensure   => '78.10.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 19 Apr 2021.

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
# This is the general install script for Mozilla products (Firefox and Thunderbird).
# This file must be identical for all Choco packages for Mozilla products in this repository.

$ErrorActionPreference = 'Stop'

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

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

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

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

$tbProcess = Get-Process thunderbird -ea 0
if ($tbProcess) {
  Write-Host "Stopping running thunderbird process"
  Stop-Process $tbProcess
  $tbProcess = $tbProcess.Path
}

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

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

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

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

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

Install-ChocolateyPackage @packageArgs
if ($tbProcess) {
  Write-Host "Restarting thunderbird process"
  Start-Process $tbProcess
}
tools\chocolateyUninstall.ps1
$ErrorActionPreference = 'Stop';

$packageName = 'thunderbird'

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

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

    Uninstall-ChocolateyPackage @packageArgs

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

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

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

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

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

  $PackageParameters = Get-PackageParameters

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

  $uninstallPath = GetUninstallPath -product $product

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

  $systemLocalizeAndCountry = (Get-UICulture).Name
  $systemLocaleTwoLetter = (Get-UICulture).TwoLetterISOLanguageName
  Write-Verbose "System locale is: '$systemLocalizeAndCountry'..."
  $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-Host "Using locale '$locale'..."
        break
      }
    }

    return $locale
}

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

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

  return $false
}

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

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

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

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

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

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

  return @{
    "Win32" = $checksum32
    "Win64" = $checksum64
  }
}
tools\LanguageChecksums.csv
af|32|99c0f4229a35b2abcc2a5b6c02cdbc550c24a3649c4f16d9e64bd709e147bba3e43927d9ec8fd831f9d9bce7fa36c27e6c2bdf81c1015f6f619ba2393996af86
ar|32|97a8ea273b800398315082e4350a477ab4f66d089c63616d5fe69ac6df8382cf33e0b58fc1ac0ae8397c293e9f35cba4d5461a05e24411dcb374dcda88488adb
ast|32|a2c16d4c03d02a0e17ad53281ecad3c8b84bce035dc88edd7ea98a66401a453119c8a0be2affe17fa28975fffcb8e41720c021d7bd790a12a8978684686a70fb
be|32|95601d3494360bba8d60e567d92fa15b435a05ec0accd21512e2833dd67e9f810de6378c517440a4d97e16a980774f27e88677ccae6cb87a15572ee1fc0685b0
bg|32|c453cdc6400b86d21c96856c4e1c0e079af115f2ef2f262941e20e21180d386544b68bc3944023f72f021f0a4e856d0236ab6b0ce69be042e8361f668741a93b
br|32|e3f79caf391f06defeb357ad9c0467df1d372fe0028c8070df258a22c8dcfec98ae3727515e038f54966b8509b6b20c4f3081a604d1789031a82ba1356644e4d
ca|32|4d63693df2a769e64c10882b14e7abe199519c1e940347d7c8d76bd1ca9f86d1f4fd60b00fd6ceabd830ae37557d9128057b0d91c290ec6b2c702e8bcc96e8b0
cak|32|ad0d430e409d50dcf0da31bdf7c635135e178472ba9b88140da8254ebbb8d9c548294a43ce965c6148b211688cc2251d37c280759c592aef0a71d3d7c68da100
cs|32|5effbc48cbf4b035a5bc8507c13a80ab601ac4d761dc38972f82e5d745cd90f371c64d6e3db2a897cb1fc285e3aac9678a2c0ecf147fa59051087ef8f5372e29
cy|32|2e2b97676df903f9ef7721583fbeafb74d8b23e88162f4af43e158c218eb047d8b94cb9d5770c5c04c817ec8abef42cc4794e24d4c7e8e1928be52371d8882dc
da|32|843aafead982aa1f0a14664d1e63b45643818460c6233ca17c2b7f17196c513dda05f8df73068965bdcb7642b70dc147731689e51ac0880b0831cf77b79f87db
de|32|ace3ab3e26c0da7aa39ae1ad8c57a87905ab7a04a7394112dfae6f072f4c20ee1382a1430e8ff804c1b1f33da6bfbe2c35a11df7a9638aa69566807388a21639
dsb|32|3fda465ca4f086e5586c62bd11b7d14fffef34d566b2e60582dc4e57832f15115a325efdfd6913f3eeba100ed78e312553b5d2c20a7fa29eeb5ef665fc230d39
el|32|e14d420f9b1cdf879c4d6970a85efb86bedd7ecd0a2acda8b175a725b6f5b51f2345b7c88b4bb0d71161f026fb6a95ec8926d78aa15608c4da2142fb1bba9733
en-CA|32|a93efdf4ab5dd75e825ebd0455b22b943f6c9ac08a36be1be810113b3823aedd69dff29059c96fb8a7f559e2b29a46921f059c0cea6a1d3d6877fda56d02285b
en-GB|32|45cc238b5dbb594126c8e50ee53dc198a6ceb1eacea61b326fbf040a7e72ddc702667fd326525b6bcb6a0ff0830ed3e8f263c55047d668a6a9d1c5349c74e593
en-US|32|c67f7550325e81595eca392f1f18fed8469f49b29ca3b131beccd8811cbe2341a9be1f70ad5e99d10a2a4187501219f1f824b68742efa5101cade5ec9ec1fa80
es-AR|32|819c3b6464949f192025d54acefc3e12ae8c80c3c51eb8159ff2d5375895ee79bc9e3f1269ae7133265d1079f380199ec0924e583a8b02dde01d4afe20c15a5c
es-ES|32|c62f728b7de87638704e3e212d60fbf7cc38061e8ed815255ce64d4a95270004079c4b4c0869c9a4776dc7affb7964212eb93d2509b0677b8f777db2916a919c
et|32|043373db1f49f32d8a8b5745b6e1adb486f35e06bb8f568620279875ad05d89af731c47600b18f5ce5454fb24ba6a8ede862a372bf661a1742d7ac3ea10bb57d
eu|32|639c91b9def61560821acbecd959a1e72dc14b0f73249392f682fa8686402087e3b8abeb4ce9ce15808bdcbfaae0625d27309b517ef46f113cded4d53dff14bc
fa|32|5889299020e100dc5595e9c21f0d3f339a3cb44fc8aa5eee2ed8e19b40def9387372ae1ccacd7a193c7c96d556ee6378eb705a3ed4f8f2ab342156b2405f569a
fi|32|0d08324ed24b6a922e26f3af09e7f592bf6bd0ef654a5d25c6c345ed5e26fcf4b8ee61774d116405f1df549f8baf9ad62f1c10f089068c615a32a55ef1a0a8d7
fr|32|2a9e8d391556ff81bb3db7f8afe53eb71066818ff8b82dd753a76c934c6f223dd405927e4542d39ee055fea51952a282cd027eb34b96d978fec01252e4bcbb8c
fy-NL|32|baeee420c35d0292c6d3d18debc61186063a66acec7b388bb82ef8c9697adb24e7221a8014d947b320c852471e6dcebcda9eac80b62e2a6492c291a8999ca9fb
ga-IE|32|d8b42baca9fdace86a1a1f52051bd8910211a3449a2ff89edc7c0d80fca187601fa34e865fb88b4824aa0b0867b0466c1f6c0585e0d478e2c1c548b4775dcb90
gd|32|eee27c70c8429ea53a4cbb2681aff44b9427968ee7669de1bb91cfc2030895f67b4123b6ca4172c3eeec811bdb7a44bd5b92fe94ea925c7e178a4e1a743c873e
gl|32|e972ce975eaf875a07ab2e900b9edde77466c8069a30c8c190625ae07c284a9e8a0ddedcccaf543d2acab47994e7d64b805ce2b580734543115181ef456ac920
he|32|25670e61027735fe59dd884209c5044238da11df0032e6f9da90da088004e64a69693bf07e56b87d46ca5317647f66f2a286cc0657ebe48c243294f31260a699
hr|32|b1992c91dd761520f1172e6669f55a5056b3b1cd2e80156d5da2824238c91ff2e064d5dd9ed4a23800704f8c97debf8aee044c3cdbd0dc7ae7526402b06e69ba
hsb|32|cab6b36cb3114ab16eda6afe24aa0677773ba098104cf4d35d65cb3704110fc42977bba82f525bffe6bc8559759a4659e516b1cb49e1ee7b85b9e75daa75eaba
hu|32|8b7be2e720dadaf9bd37fc197cc942ec7b19b4c78c94d2e14e85fabb644bf9d338bd6a568d05e5965e7fdf742a71c0ce93737a5d7717405c7ba629e50a65b7ad
hy-AM|32|7b152d38ad9750ad31fdf1f88c691854ec6d901424cf0e121214d9132a25c5ba9e4458b259a3cb9d1613796f80b0de6d2c89b849ab19e12e25d0b4b658c6aa44
id|32|38d98c91dd6c96940f740ab0e91d778fc20be6af14e1de9ce1c96172daed1a03d3913ce6024940f3f6a1d7dcabffb5373139aeae935641e70cb2b9e3329615f1
is|32|9795816ae0bdfa6d44c1ed2f33b4534f204da690477716ebdba8a4cc8a633d5df3a4680a24be461d7ba7a3bf2d0d50d82d28c7ead3cbd1cd6c950b9e266cf1b3
it|32|605adbca38af5e69d595974936a78b68e5d9bf43e5dfd65aad2a88287b22e0b8a16bde8a9b1b6d4dfc027d1ff8d1f1425968e1e8b0d536c83993d24e11c87287
ja|32|cfc2c892f9a2236d42e63e5f3d2ddd9d65262b7d954afc4b9ae911392371908c1bc44f130092919eeea27ca4bf4393ff5e646cac2314c45aab0a558ee33517d0
ka|32|10680db645ccad54dea196bdb361b60130e2c2e6f055b022ee6693a3cc11ec8a339706ac11b7ab0aff932d63cda79e6cc173c6b67324b26950700e8905e2f898
kab|32|75829eb247cc8fe9dc5a56aa76a3016318fd7c57d1853a9970f43f1407d3c9c6d16b57f36ca4030ef813fc956eb78edd688d6738c89c9e50645591b2f400c49b
kk|32|c1e4304802f518371252480f522d7ef63ab294a5678503e68d5078e5742f90eb7239e3fb93fca4661fa7f5166f4759eadcfa4c56d73250d88f4ab38a6741d9e1
ko|32|a2c39c240cd4f7ba831aff3562f85e3eb314de85b5dbaf9f959193bfa5da74b1ac4f53e6fd8908254b31ad4f61247a8a840b271b2c4d38a92d461ae2f8fcd952
lt|32|bf956c89df5147735d38f2ea8d2f1f9542e45b8f95ffa95bc3d3221e45694323fe19ed87e2c4b500e23e3ab07c4478fe812274c757b0e97204fd58d70d5f61fb
ms|32|bbaadc1bfb4b8a2b6068edc43d3055a867ec37fff8c5018f218576b77ea844f38ced103b57d9d5e6b607086d271e83d934aed9c2fc1b895fe5dce5216ef46822
nb-NO|32|bba5e42a402a8dae58384d50f3e469475a64eb655048bf37a3f54cdb210f331529e55bf45bf9356ddbd8a84c6fc1d9cd49bf8e4b5a840d05913e053d0ef26307
nl|32|70852508def71cb966d540f0143583f75bcadd36def233efe4305dcf1d5dd53f6ca255242375fa14837e940fa3787bab931e4b99cb85d0ea178b620d3305f0af
nn-NO|32|63f45ad4918b8f70bd77d1cb1f5b7f788bc522958bd63c648b120852feb4007386e069ab9033300d8c455cd223ec052acaca9b3a06ef744f215d0c0ea746ecb4
pa-IN|32|59bb0fcca9527f3392413901324f656fbeb8cec0614251fb221efa1244c63bd081068a32b51dc6fac71fee4b74f3e5f5d95bb014e9c1c5166d5e5d26e6474458
pl|32|b8bf0690fdba013ba66f40cef1e4ac03399ef6bbd18dacf08ce8b110889be2cc4ed75358352c484b7ef29e7418615266d1b43cc6c7e42f3f1357a4290bcf4a09
pt-BR|32|5ecce45a61a5876156283cd3417874383b11c59a8d278f466f444748ed37bc5d3a29d52aa74fc69a2ce20b6a4743ebc6eb7e7f040abc6ad3b4fb7d826d7fc9db
pt-PT|32|36b4388db7bc27d67344c55e4c3a8592cc8555caff6d1ea3b74dc0df74c12e9163ce5e5c81eb7a38be84b8d3fe4ff6e63559f3236754eb25fa51352ced9a4250
rm|32|be555ef09307bfef80e78137a3f2a9a6d30d8ca376b1eae1307ad0a817afd54c52f6e61989e1ab8fa290687081caa4a1905120b74e1163f5d3d15e5876a021e4
ro|32|a6616d8a5c33016d78ee64e3e6c0b055cdf7266e776e5ad6dc7d38b0a48ea6edc588be31d904b52f323677ed4db4aab851db6af81a9afca75f19296b9dad9fe9
ru|32|6895fddb8c354ea362bd5ab3c3f7701c31a877f16fc94f4b349f91837dc1ff0eaee8e42498556fcf294f1ee47dd448728b67fff83360e53e18e78c9fcd1924db
si|32|2f5c4d75ba5ebf292bacde95f19062b6ede933eecec636522817c753dd1ae6c957b57ee9aa28794470aec2471d8fde775cc83ecf7694b1f217bf368d2bbd51f6
sk|32|b3f24f0749fffbacdec94907fc963f1ea5ada283639f050dca050eed075d18d2a509b4149b986341430d3a9a384b6345160fe48c2aedbd9e07d8fae4be0e3e98
sl|32|2d20db8e72b8d8d42e3b8bc6d0e64e471d2cdff14ef2358cc0882daba998f9342ae46dbd24c77e55004a1e08b82d8cb846d22c771e31e893b2209b203ab3a1ac
sq|32|adb8ad9f4f67c6bd1602810a7669950ac83acac176183d67920748d7dc910030bcaa5bb7601c21144cfd6808604461029b2511d49956abed21eb55469b3bc4a2
sr|32|3b260f5c0412db2ef77113c26090d40f7d2150b98df6962e0eb7e7f79facd03ca72abc6f9c942b4777351aeab29663770acbd0b90215202325c345eb3ff79995
sv-SE|32|eab98ae65243f3762a08f4a385e651781c1b3ae7ec5b7893becf47959957b11dcf9e171db3d283fe09662bd5c81f577abffdeb3c19dc35080d03dc242d2977a1
th|32|14d1386c7addede60ea3d5e03cf7822bd91991d57772cec785b4d5cc5b67e229feb0662f240feb1490a7ccea6093a54661380eed8a36892a4b5becf997237f9b
tr|32|dd4535236d81c4e1deda98fb9c020c4c4e257a71242f3c8c4525ce75228371b4fa3506289913ee09715f2459037b00a70889a266026b37c054b9c51548747ccc
uk|32|9b916781c071e8866d5d6833e34dcbdd040459428e402fb6c6b66a5cba692d40edc0c6226f20038c6ed8a2a2518f36a728d1873a54f2990f5a4de2218b7d7e9e
uz|32|5b997c0d94c1fa5204eb35796e80769dc9e4e655197fb8e4a92da295340ddf52a4f5ff2e25d58d152e9477ab50767e5f0622c7a5e223a5215edfd3c49a82f83a
vi|32|acbd29a4a9da960ebd0ea5e03c6e58e7a741b6f147d6ad70dd55c1434cb9c513676d2bcf4a7638ea8e1d80bcc39425a1b2b2be3813e6db029b4056be33580623
zh-CN|32|a1586bcefeaf070684106392959665acffb409f911e32ad66d8d8e85f00ffa4c2d6bc97bc8d6c1360aedd5d0b4e742b72cff5a8129ae684180c60d6d37bf6d81
zh-TW|32|48904cc876b1a152bec2ae1d15febd90ecfbe21df2a52832f879a90711acc7cb37fa685be2385335df3930389829de1dc071665e71f42c22bb1b47c1276a92ec
af|64|c2f47b22e78eb80f6700646d89783f11adb7662b0cd067acd8b3a9071e17727858e45df79cbb54f1ade9d0906c84db7ddfa4f7915d15b1eab34de271d3cb3a6d
ar|64|0c707576525a63da9138feca638ba8bd3c69a482139b27e6030e60730bc59ef9cdc15db364a8b0b78263d0c5efebac09ae6f3603a83e2167cb34b7a29a3c1712
ast|64|724f12dc9c9afb2f01de7a5333c34f195235512fe275e0c8b153df30f529bfce38179b4806c414cf8c95f483e438557b1b9cacfc494448e872e00ee65d2037e3
be|64|38361396ed95eb37711a33d7279d7587d8c5ba14ba164ea20a759b65a27bf0e943fb3076134b29a773ac1d9dd91aedc5e9994c7f1fff2abd63029db068fb2ae7
bg|64|89cfeee4098fceed1ac3fd6ec2b4a00c17b82c0fcf4147d9e197dea7cf679d621c0dec83650061b83c61152fee6bfc296552cfb3bdd31407f7f7351a4f8a0829
br|64|365f97ced65971fcc3f0bd40bac6475538e17d00fe890d4f9b769095f70075f001a4f336c31fff269fd7d1a82bd940290c13111367b96c52b7df8515ff639a3e
ca|64|9f215ed8f69abf7c899f8c71ecd51c3f087990f6beef5cf1142c1c79a2aadc44cd48e8b170fa207f7dfc434b00cc8549e6d776579d830cd5d40d2f14d1d5a262
cak|64|34bfed93f7de96ee8dd450c09d03fbeda2deafa88e92feb5759ecc167b65f0744583df6401a7a10571371bd4d6b868b370e6db635962064937a790b6b231b527
cs|64|74ffba28d5c2750eae49aad16039549f823e417039080a3d8637f633a613b40afe983b92d088c28911dc9e29ad6571dd9e586f4ff9496887ce5f147ddbfb05ab
cy|64|86e4a8bb291eb94517c58ed7d100419043db4b1052b43f6d756771159ac553aa19e468c994ce8d6dad8f6148506f77e3ab233a94cefa8395ac15a69cc97a9d16
da|64|c123f353b3a80b5c427368ea4f41e7de2a09d63683186d072446be27cc4543c7ad565960427afbf325618460fd55c7b9d1251348ee54189137edea5791e9da98
de|64|00607cb57dae80a452cd430f284f5379e50805218f9d1428a5517a5582002c8a80a9ecfadfacd2cccd76336a396b1503100fea1342c0225d6c8683442fb6858c
dsb|64|cdf10891bc5de2d94e2e0435022edb94365be6de18603d9ba1a3bbfff9dc62f6ca257a4d90788168642600a0bfc2c72d2c6df92efd83d6f543ec15e01d46ec8e
el|64|8d72072c21b46759540200ec3df6bb1715523b3a73be7bd5c838db82a7f4153d8e5bce4e7ea314cf89b7ce16424752821431ec4ad91e6445cd987a97ba871bcf
en-CA|64|2cb45d5693405b401e99bed6055141da0ae6f3961a485db68b12cb4bb82b4479a556e21ff13fcfc65a78fc418668e40931019b5442b9bc1dc366d10e0a7bf3ed
en-GB|64|e712d56f1fc99a6caffb1bc5a01ec7cc907fd4698f825aa4cff1256538d8966508c744a893cc4b65cb35a9a9077849d14b482fe0426173e7d8263d319f29bfea
en-US|64|8f22fa7e2dbee6c0a7123e7e50af5cbe7c273ed2849e5a52f9f6f12c266a6c874000834a5b36e16d56c364e42a0279d6673030f454c5a3045f180032ce8f447b
es-AR|64|e25ec7d31ca526dc664a4ce3c5c1c163d8fd4b2cad3d9f3ecc4ed630b8a6bebe65dbf976096dd86a4e14fb54077caa697f4c580d3dae800bb146c9f2058bf3ce
es-ES|64|aa03f07a42902994bcf6ac9f6f38329a1b7bc02cacf7b89f4dad020585d2d5d1dce61357779d4edb670a389429306cf96a51f57701b2591b49c3689aa7009844
et|64|dadcc0ce7a1b7372aeffe856e5b3a0ec095444ba77614f67b94429cd24800f2f72e4601f66f42085466ac98a846afc6c8c01a82099a20d6d7e9f4eb84d6bd8e6
eu|64|4d6a7d0e290684dd9aa8c4759b62d37c63e5615a3a947cf6cecd7cd4febacd217e48b9f529e93cef069d60bce9675d012ec960549ba3e52d3575c5825b619ee7
fa|64|a29b14007f2702022b23ab94a13546ba730dfdd556632acaf2f3863319c2a5090c51a3d66a5e0479bebe9248516c1786eed2456dc101cca117df13609cef40f3
fi|64|8cc537625eaa894423be48a59cc8672958d7e69ee8ac4c075adde8b205a1fb41d51f6daf86060f10632375a2c61fa4f8912abb07e52cffca327f4e2b072865b1
fr|64|6cc63b7739cfff2bbc18b5c07554c2078fab08850430738f44ae412c07ade7f89b4c2dd87ba8f8882020ffa2d5459df764a3175f45e207e8a461c6b73a36bf3e
fy-NL|64|b89f248715cd807f61874cb0722bfcec8831180ae8d17d7254d27abb5c657e2f2acf908a2441aef4e28a9067c8699582f25c1b0c3d0d2fd53c7a529f764c46f5
ga-IE|64|44d9d3cbdb7d9f66b9f375dedaca4e8e5d5801d69a3ec1a7fe88d5248a16885f3ef0169ff86b4112ce9279d70251a8fdd70c962760bcffd75b8faf7b95036d69
gd|64|b992053934e8219010681fd228778c5c0f3f809acb643a20e24ad6a136b36682504c5753617f940ac092d0bf0a5916cdad3ed9646b6f345d8ea1534ea1591864
gl|64|bd1f5e746d998c9f9e8374e7a584cc2dac2d021419a82539271839786f4424bdfafc8d1e8946bd57ab85a689b5695f7b4e26ae2c18d05ac689ba36464c69fab4
he|64|e06754bc755d49be70c72abeae92f8e6e6a082f2b9e6aa696ca21326c6976348e90069a47d4e31d7eb60447039906d0ff8a555f4153e4c2be9591df9fda128d2
hr|64|5de340da6c01441c5f030dbd295f2d9c825dbf3bddeaec9209d80456e4034df61445c6d0c923d248330c10ffd0ef942ef5c4d1ab8f122b8aa1f7687335196b8c
hsb|64|fc4b075b33c27d76e8c8f81dd353883005de4d021f4cdba49c87461140b90bd95cdde6347662913c3d0e788c154edfea48d459d65f19b15a6f2e69d8f938651e
hu|64|12ce01fb16187672f3c9c155dbe5aa6b5e42353be51cbe76a35733489b2ece518e48a4046ee91db16ea1e0cfe8f4c4dc3dd952d953476f8b4f448bbe12af369c
hy-AM|64|a791554c7beb0358e7a282ff6ad42b05cdeb4ce06a3547e24e6d80211f5a4beebb5fba242c567251335e4d7b916f2af0c375d4eef79a3492f25c5876304c6b4f
id|64|d8157f19f75502e7cbaa4b95fa547e2d8a2349d1d6f1e35031bde9007292977c38d83364727e31fee0917b3b1dc48c4a31741718f48fef4df2285fb27f601e63
is|64|890e21c365cb9c3a7a6f4b30370ed8717bf08b862ce19a87fd58beb334ae35861ee79a7fea66801d2271b80d5c4f2a2195dd00e2d30719603da8de648ce3bce0
it|64|ef75e38040cdf38b45bef6b66d932b2bb543f1e27fd790e3d33c21747e70397d5a5ae9c3f3f91ab238ca66f8a2c211a2e2fed93f6882a7925606fdc9a0197f9a
ja|64|3df6f040aee6f2c8bdd826861db26fc0e3e893611b12ddd709e91e97cd8892e2fdc613fc3fb65077c815ba1fa875424f3e6aa5ad56f135ad193619851a2af52c
ka|64|edbf7e88f589eb7f17bd3d6ac8728443ad0ee596c406324d400e89a274897445243133db5265f956ad795799b216240070c58a70780694f0cf387106300d39c7
kab|64|19eb50b7b1e351f4ab2b8f2270a1bf0d55fac35912bcf762e4334f0a17f74f1a5bc67c4d89fb3ac4f9680829d92f5cf5525bd5f05263aa70db5c11097eb65238
kk|64|38e405d7ba6fb3da0791a6b99bbc1dd35ed4cfb3f148e7b8c550b7899e5af253e2e236c3fffaa3ff1c8a587d973f9edd36c851dffbb3ede52cc345246ad35b29
ko|64|b05d51f463875654b5ba2ab65eb0119534b377eccdefa24bcc71d16284f20aa6a1859439a99d6493c8121d41da51c3a5c07d36d86bcca46e9f93a5930851b827
lt|64|4c1025eb468a9ede4e7e316d1e4297b4517a051c9459d4babe54a4357228bf3e8876e3b55c69564e221eded185950682e96e37ff8f184bde86daff88cbbd02f5
ms|64|52418af8f8f3d8194481b6ee4d506b0235680644f145aad1e320fe8810e4c4d6bc28f304c6a2d3248261d9476477da2058c1afe1262c942ea0612d4a1b76ae10
nb-NO|64|d2a1b46eaeeed13f92f935487657efd4a358163b30c925f9a28ff2d2771f7119571f3fb358111ccc8d1b8d397c2aab854f3b4098162303f0994b0ebcb5f6db1f
nl|64|fa5f1398ca6b6deabb84c4ce50e67c704f162fada0d69b713a3f0e1e51e6fb66d89b5679d3bb9a663583ab214230674ab29918ae7af2c2a90e0a1cc791b6030d
nn-NO|64|2abf5136bd5bcd8e5c45e29c6e810f61ebbe4e890ddfb2aedb57c89b0de61124adae17a071109cc3a4988143717542896871242af8cdceba3fb33d85b633083f
pa-IN|64|9e144f31f30038ea22350de25a59e5113f42a996220f455b84031029833332d4a5d54be86ae2ba4c47e6755af5830e2c0975b646c0151d9b80fd7c94685a6252
pl|64|e08f9e04d99a0c901ec213917f7e7edc4feb796a1960350f20ec7aa185a9de2b2b72af1e4c0db8a825611f12ca694cefd7927ed502262b87a2da8401dab44547
pt-BR|64|b855a11b07d59395ff25263471c3aeb363c035d90d503ee3566d3d636f99b170384bc9dd997dcdad11f4d3c1812ce0c6a8699de7b65b2752017dc68d936792c7
pt-PT|64|6395bd8193db220a7ea16e2db659452cfee767932ffef9acf23c7cd6989b6e55bbd4ab1bbe435786822f48f550bf27e6a87d8aac901954d07a5434681d949459
rm|64|744c5623d16bc30d033079f4958287bb01e14982d9a93b21c05e6216a5de0e1a9ded6fee8eb5d2a829a9e727cc6601f11378b2341947ca30d90c2d67832b9e00
ro|64|421d6998bdaf6218a6f9f936a0cfa07c7221aac6c6b734ddf23b0acab58ee7c832a36a54441c3bf4bae5c480817f85d8c34752c54ec972f6ceca81373614a4c7
ru|64|29a9fecb65af5d709d55b5117f440cae803e9c2c7ac7ae799b0afb715dd7483bb6382fdbe17333360ff7f75c14a009d5eca66e215774751d67d11f4afe900a3b
si|64|f3db94faf3a76403f3c1e2eb0f658edfd7664609456aa6608d0f9926456e2dbb1d4cd394fef3c4fb24ae720997c5efcc607dfe879596ca0db942fe55c01e0797
sk|64|44ef00587746ed3184edf61dd6ab27867fcfa432514c11f0b5bdfc06dbff445f32e79c252526e1f5a2743f4d53fb14d67f9b12a78f200c01f56b0cc16341e55e
sl|64|6e267581a324eda18a1ceeb3adf5f15e3528ac9e8d592929752988b70121736489fe2029aa62075db529b95171316b89a722bac21506d6cbada9d63d9ab36f39
sq|64|7bf716a9a62f2603cb89c223fdf2f52a6c582e1efc90dbb5397891029df859b6b28dbf390c16463f6ba135a44f14276e4fc4ce7c9740191ed759f90052830b45
sr|64|ccea57a5cd09f0f20ec396aa15f7e057ef50b928bde98cafd9697ffc07ac56836dbb936a292fb172eaa2f286a539dde7f3e77ed47f8117787b234a6f60a77e4a
sv-SE|64|d9eb6b189537f277057e5ecd6c4fc41279efd1085701e3d49941962d4a1d455a9772e53b59131afa0ad0ea33fed11339045d7619cd51d88ebd6533355c66ecb4
th|64|c03b81da5004bf1368f6dd53b73a95a0ca628a70a922ad8bfe30d6dd54e6bbdf93b8c39fafa858df5fbf7ee911c6634a0e7e92a3cec35055d5c587ab9aa1c8ab
tr|64|2db43c2f05817418661c491a7b00a622a8354f7d8754dc3b14d4c97a4b4d8238f4a1f698e7d3938195937b39c095c8842d984128ae7a825784918e0d9fd66562
uk|64|778c5f6e854743e6aff403fdc71a3d2dff5da108d24331d54db62c146b914024bd8427deee232d20bcc5e4aec344412266b2b354650b673ee0d9108507bd8774
uz|64|6f3d8e9abe816c368bb21ba8690f96e23ff6e27c38e4318592a9ed4d4a48dc353ffc79c5e417b781c8277d97d75b50359d315d4f8c607bbe6ed884ab3614a980
vi|64|4fb7b0e8caa79dd58f8e9833ab0c27522067a354031a33672546373cee3bbfb07c24f2d966d310f662dd5b9f17221dea12cad0a203f079c509d563d984ebc849
zh-CN|64|c804ecddef24c9725547188070bf6c279e13f26a27449f4e10f61122901d819106e567d0823935b325e536e6535ff5d52f4b199fb219c8092750c7f8563f3765
zh-TW|64|e0bddfac462847216ee5c94ce857d4b19f74130bb965584b571cd6de2f01fa4dfdceb722ad6fe389250682f868d828854b283507a934c0755d795937124eefff

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

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

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Mozilla Thunderbird 115.10.0 11887 Wednesday, April 17, 2024 Approved
Mozilla Thunderbird 115.9.0 34011 Tuesday, March 19, 2024 Approved
Mozilla Thunderbird 115.8.1 27793 Tuesday, March 5, 2024 Approved
Mozilla Thunderbird 115.8.0 27116 Wednesday, February 21, 2024 Approved
Mozilla Thunderbird 115.7.0 36210 Wednesday, January 24, 2024 Approved
Mozilla Thunderbird 115.6.1 27361 Tuesday, January 9, 2024 Approved
Mozilla Thunderbird 115.6.0 29836 Tuesday, December 19, 2023 Approved
Mozilla Thunderbird 115.5.2 22365 Tuesday, December 12, 2023 Approved
Mozilla Thunderbird 115.5.1 27032 Tuesday, November 28, 2023 Approved
Mozilla Thunderbird 115.5.0 18696 Wednesday, November 22, 2023 Approved
Mozilla Thunderbird 115.4.3 20176 Wednesday, November 15, 2023 Approved
Mozilla Thunderbird 115.4.2 22744 Wednesday, November 8, 2023 Approved
Mozilla Thunderbird 115.4.1 25994 Thursday, October 26, 2023 Approved
Mozilla Thunderbird 115.3.3 20805 Wednesday, October 18, 2023 Approved
Mozilla Thunderbird 115.3.2 22130 Wednesday, October 11, 2023 Approved
Mozilla Thunderbird 115.3.1 24333 Friday, September 29, 2023 Approved
Mozilla Thunderbird 115.3.0 12347 Wednesday, September 27, 2023 Approved
Mozilla Thunderbird 115.2.3 19521 Thursday, September 21, 2023 Approved
Mozilla Thunderbird 115.2.2 21641 Wednesday, September 13, 2023 Approved
Mozilla Thunderbird 115.2.1 6744 Tuesday, September 12, 2023 Approved
Mozilla Thunderbird 115.2.0 25410 Wednesday, August 30, 2023 Approved
Mozilla Thunderbird 115.1.1 25976 Wednesday, August 16, 2023 Approved
Mozilla Thunderbird 115.1.0 24913 Wednesday, August 2, 2023 Approved
Mozilla Thunderbird 115.0.1 26997 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23753 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 15989 Saturday, July 8, 2023 Approved
Mozilla Thunderbird 102.12.0 35797 Thursday, June 8, 2023 Approved
Mozilla Thunderbird 102.11.2 24972 Saturday, May 27, 2023 Approved
Mozilla Thunderbird 102.11.1 11220 Thursday, May 25, 2023 Approved
Mozilla Thunderbird 102.11.0 27747 Wednesday, May 10, 2023 Approved
Mozilla Thunderbird 102.10.1 29000 Tuesday, April 25, 2023 Approved
Mozilla Thunderbird 102.10.0 27105 Tuesday, April 11, 2023 Approved
Mozilla Thunderbird 102.9.1 26547 Wednesday, March 29, 2023 Approved
Mozilla Thunderbird 102.9.0 25477 Thursday, March 16, 2023 Approved
Mozilla Thunderbird 102.8.0 35689 Thursday, February 16, 2023 Approved
Mozilla Thunderbird 102.7.2 21417 Wednesday, February 8, 2023 Approved
Mozilla Thunderbird 102.7.1 19913 Wednesday, February 1, 2023 Approved
Mozilla Thunderbird 102.7.0 24091 Friday, January 20, 2023 Approved
Mozilla Thunderbird 102.6.1 36187 Wednesday, December 21, 2022 Approved
Mozilla Thunderbird 102.6.0 20234 Wednesday, December 14, 2022 Approved
Mozilla Thunderbird 102.5.1 25085 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 16158 Thursday, October 20, 2022 Approved
Mozilla Thunderbird 102.3.3 20297 Wednesday, October 12, 2022 Approved
Mozilla Thunderbird 102.3.2 18374 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 23179 Thursday, September 8, 2022 Approved
Mozilla Thunderbird 102.2.1 17981 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 11472 Saturday, August 6, 2022 Approved
Mozilla Thunderbird 102.1.0 17233 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 31586 Wednesday, June 1, 2022 Approved
Mozilla Thunderbird 91.9.1 21171 Friday, May 20, 2022 Approved
Mozilla Thunderbird 91.9.0 26199 Wednesday, May 4, 2022 Approved
Mozilla Thunderbird 91.8.1 24073 Tuesday, April 19, 2022 Approved
Mozilla Thunderbird 91.8.0 22309 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 19926 Wednesday, February 9, 2022 Approved
Mozilla Thunderbird 91.5.1 23607 Tuesday, January 25, 2022 Approved
Mozilla Thunderbird 91.5.0 22087 Wednesday, January 12, 2022 Approved
Mozilla Thunderbird 91.4.1 25558 Monday, December 20, 2021 Approved
Mozilla Thunderbird 91.4.0.20211214 16784 Tuesday, December 14, 2021 Approved
Mozilla Thunderbird 91.4.0 18883 Tuesday, December 7, 2021 Approved
Mozilla Thunderbird 91.3.2 27011 Friday, November 19, 2021 Approved
Mozilla Thunderbird 91.3.1 14271 Tuesday, November 16, 2021 Approved
Mozilla Thunderbird 91.3.0 22530 Wednesday, November 3, 2021 Approved
Mozilla Thunderbird 91.2.1 22514 Friday, October 22, 2021 Approved
Mozilla Thunderbird 91.2.0.20211014 17812 Thursday, October 14, 2021 Approved
Mozilla Thunderbird 91.2.0 19157 Friday, October 8, 2021 Approved
Mozilla Thunderbird 91.1.2 22912 Tuesday, September 28, 2021 Approved
Mozilla Thunderbird 91.1.1 21684 Friday, September 17, 2021 Approved
Mozilla Thunderbird 91.1.0 20824 Tuesday, September 7, 2021 Approved
Mozilla Thunderbird 91.0.3 20663 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 28782 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31889 Thursday, June 3, 2021 Approved
Mozilla Thunderbird 78.10.2 21025 Tuesday, May 18, 2021 Approved
Mozilla Thunderbird 78.10.1 19258 Wednesday, May 5, 2021 Approved
Mozilla Thunderbird 78.10.0 20992 Monday, April 19, 2021 Approved
Mozilla Thunderbird 78.9.1 18523 Friday, April 9, 2021 Approved
Mozilla Thunderbird 78.9.0 19266 Wednesday, March 24, 2021 Approved
Mozilla Thunderbird 78.8.1 21142 Tuesday, March 9, 2021 Approved
Mozilla Thunderbird 78.8.0 18875 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22957 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17627 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20305 Tuesday, January 12, 2021 Approved
Mozilla Thunderbird 78.6.0 20520 Monday, December 21, 2020 Approved
Mozilla Thunderbird 78.5.1 20567 Friday, December 4, 2020 Approved
Mozilla Thunderbird 78.5.0 18714 Thursday, November 19, 2020 Approved
Mozilla Thunderbird 78.4.3 14893 Wednesday, November 11, 2020 Approved
Mozilla Thunderbird 78.4.2 10861 Tuesday, November 10, 2020 Approved
Mozilla Thunderbird 78.4.1 9264 Friday, November 6, 2020 Approved
Mozilla Thunderbird 78.4.0 20206 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11716 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17163 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16193 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5293 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18570 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16594 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9564 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18424 Saturday, August 8, 2020 Approved
Mozilla Thunderbird 78.1.0 10125 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14037 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10394 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17193 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22049 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14085 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18415 Tuesday, May 5, 2020 Approved
Mozilla Thunderbird 68.7.0 21870 Thursday, April 9, 2020 Approved
Mozilla Thunderbird 68.6.0 19684 Friday, March 13, 2020 Approved
Mozilla Thunderbird 68.5.0 28028 Wednesday, February 12, 2020 Approved
Mozilla Thunderbird 68.4.2 21219 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18626 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18171 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13339 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 34979 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16906 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12472 Wednesday, October 23, 2019 Approved
Mozilla Thunderbird 68.1.2 17507 Thursday, October 10, 2019 Approved
Mozilla Thunderbird 68.1.1 17708 Wednesday, September 25, 2019 Approved
Mozilla Thunderbird 68.1.0 17547 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 25988 Wednesday, August 28, 2019 Approved
Mozilla Thunderbird 60.8.0 34704 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18396 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11127 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20025 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45023 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8111 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11753 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8087 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9104 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4667 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10666 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15308 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9161 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9235 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11042 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10555 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16918 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24438 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15825 Wednesday, July 11, 2018 Approved
Mozilla Thunderbird 52.9.0 7459 Wednesday, July 4, 2018 Approved
Mozilla Thunderbird 52.8.0 18801 Wednesday, May 23, 2018 Approved
Mozilla Thunderbird 52.7.0 20347 Saturday, March 24, 2018 Approved
Mozilla Thunderbird 52.6.0 23730 Friday, January 26, 2018 Approved
Mozilla Thunderbird 52.5.2 16329 Friday, December 22, 2017 Approved
Mozilla Thunderbird 52.5.0 14512 Friday, November 24, 2017 Approved
Mozilla Thunderbird 52.4.0 19508 Monday, October 9, 2017 Approved
Mozilla Thunderbird 52.3.0 17551 Thursday, August 17, 2017 Approved
Mozilla Thunderbird 52.2.1 12713 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 6004 Thursday, June 15, 2017 Approved
Mozilla Thunderbird 52.1.1 9439 Tuesday, May 16, 2017 Approved
Mozilla Thunderbird 52.1.0 6390 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7228 Saturday, April 15, 2017 Approved
Mozilla Thunderbird 52.0 3994 Monday, April 10, 2017 Approved
Mozilla Thunderbird 45.8.0 8814 Tuesday, March 7, 2017 Approved
Mozilla Thunderbird 45.7.1 8733 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5625 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7044 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11794 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2138 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2315 Monday, November 28, 2016 Approved
Mozilla Thunderbird 45.5.0 4824 Monday, November 21, 2016 Approved
Mozilla Thunderbird 45.4.0.20161024 8494 Monday, October 24, 2016 Approved
Mozilla Thunderbird 45.4.0.20161023 2220 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12297 Tuesday, October 4, 2016 Approved
Mozilla Thunderbird 45.3.0 34635 Wednesday, August 31, 2016 Approved
Mozilla Thunderbird 45.2.0 52858 Sunday, July 10, 2016 Approved
Mozilla Thunderbird 45.1.1 555 Monday, May 30, 2016 Approved
Mozilla Thunderbird 45.1.0 463 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 437 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7795 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5838 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6097 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2780 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5542 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5680 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5540 Friday, August 14, 2015 Approved
Mozilla Thunderbird 38.1.0 3976 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3301 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1882 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3655 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 789 Friday, April 3, 2015 Approved
Mozilla Thunderbird 31.5.0 2896 Tuesday, February 24, 2015 Approved
Mozilla Thunderbird 31.4.0 2556 Tuesday, January 13, 2015 Approved
Mozilla Thunderbird 31.3.0 2430 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2437 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1465 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1074 Wednesday, September 10, 2014 Approved
Mozilla Thunderbird 31.1.0 986 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1543 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1507 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1548 Tuesday, April 29, 2014 Approved
Mozilla Thunderbird 24.4.0 1511 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1096 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 512 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 875 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 627 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 629 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 626 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 602 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 670 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 599 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 586 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 17.0.5 556 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 16.0.1.2 690 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 446 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 462 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