Unpacking Software Livestream

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

Learn More

Chocolatey Product Spotlight

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

Learn More

Chocolatey Coding Livestream

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

Learn More

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

Webinar from
Wednesday, 17 January 2024

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

Watch On-Demand
Chocolatey Community Coffee Break

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

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

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

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

Livestream from
Thursday, 9 June 2022

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

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

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

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

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

Watch On-Demand

Downloads:

3,450,320

Downloads of v 60.0:

24,432

Last Update:

06 Aug 2018

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.0 | Updated: 06 Aug 2018

Downloads:

3,450,320

Downloads of v 60.0:

24,432

Software Author(s):

  • Mozilla

Mozilla Thunderbird 60.0

This is not the latest version of Mozilla Thunderbird available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

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

>

Deployment Method:

NOTE

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

1. Enter Your Internal Repository Url

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


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

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

3. Copy Your Script

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

See options you can pass to upgrade.

See best practices for scripting.

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

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


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

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

Exit $exitCode

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

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


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

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


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

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


package { 'thunderbird':
  ensure   => '60.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 06 Aug 2018.

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.0')

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

  $locale = GetLocale -localeFile "$toolsPath\LanguageChecksums.csv" -product $softwareName
  $checksums = GetChecksums -language $locale -checksumFile "$toolsPath\LanguageChecksums.csv"

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

    Checksum = $checksums.Win32
    ChecksumType = 'sha512'
    Url = "https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/${locale}/Thunderbird%20Setup%2060.0.exe"

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

  Install-ChocolateyPackage @packageArgs
}
tools\LanguageChecksums.csv
ar|32|4d7113b9979fe8a2fa8af3607092c2abb2336203369466fa6d5abfadba79c9d41ea9337aef1177f3e4d1df88b88e8e6a7136587fbc18c89345c0a0d545e2074f
ast|32|8ebcdf4af3337f8ab42bb74bc89679ad101f9df29bf3b31e0456e21c138408931d50e865ccbff3abab2c4d203f0897d4886c57e741a5f75ba66c37d1d80c5807
be|32|77e9f61c20329c165b18b39c12418b111f53856aab9415d5b7de6a28d263dbfcb4d3461349cb22788c378c5c04d0e09e02a822646ee6c76a04e407f76591958d
bg|32|ff8b161171cba1bef1a19af68923d872d9b70d636f87e21b17d5560fa7b21e81ef732c86a0b7db99c864e959f979a52941cd13d4d54f6463cc9d3557464e6166
br|32|7ab02ea548a0f7bcf4b8097141986d22d3cee257c9e8b546b524a25be0c29329f6c31c4bf7a7fb75843ec6d4e635aed66e1cc7267677357adb89ea220acc5bf5
ca|32|fe1f6078c1b091d4d1159fff14440290fd45ba187f72ec31a1bd8a0e665c25ae6f30c3b8423da2c6ac94c3e08eb919e8c574f679e137f2ea668d7bd8628cb1d6
cs|32|449a20d52bbbdab459f2f83518920b3cbb67fa6644a41d263ad003bd9f5ea84674573089bda9643ab1e4bbe25c76c4e212db8fb760607cc878e8dcd985bc40b1
cy|32|5127ff27bd6dadf0178d92a528cdf910b6c34b2d57564afb0c52db3f0bbc2eb9d36c765359a58ca1ff3485c9101ff9270f13e78628f47d4e853869820ee28e22
da|32|b6664a33175279f83840c68eaa5be1fdec2cb4013f0d91d8f7e456516b5216ee4dd41763bb935c009027802278b24e17f3ac2c43c9f22556f5e4180d4e3dd41f
de|32|50e40336b894f21191329d12a72ee8f198e99231f4d3d85d32b9e566945b327d057d0510c67444044de2b2c6d2440196d09486809fa58ef986636a5c4694ba3f
dsb|32|3ad902bfe9747a4de406c47e9a09e8fa82b014f06786db72dd825bc8e40e850c1f42f42cf66a6cd5a63f83808cfb2f46d18c85a5b06830682f13eef19739b3f5
el|32|78aadb002579289c2f5be623bef6e14761074f41b427d89a358628c86d4d67fde200020bc9741cd1aa8d0ba592ef3275d28283f706faeff682c34939b8ac081d
en-GB|32|cd6332f6c484a6b71c5b1e17603451592ff3659fee25e8c4c029d4ceb717088c43063994f327f6cd0246e8504618cd2c253c53b609720ef430ea458ce92cd838
en-US|32|03baab7bc1159ab3e21455e2faac89ee2e46eadf2317544d42e2755d93c97d9a605be093973fead493a3a36733953e68ed696f3244aa09b9a3828303bbcb57ff
es-AR|32|c02bbeba856aed3745d312f523a44e60df74b07a5ebc63d0364b405ae70b88503372d9515078415335c74b1d269f63d16238025579c4fab4d4454bb153c7dee2
es-ES|32|ff35e7b61e566eac806495b3ffe04587f5b043ecdd5a6aabb4f54893f99051984c4eaaa65a76ca1b3eb1dba7b75c8f50dcc884c61086ecad877c102f7b919334
et|32|e2d0721d793e4130fdb8fcf8a01022a5cd70bffe70714a601de48ab836d064f5a9a6c4d6d5c581218f14690a6db4a38c3f87536209a23b1234073483cb2c4c1d
eu|32|0419cd7490680cd99173344af2ea2ed1100bf2e0d26a6bd83b6910cbe98f6331bdee6a740830c6859d8acf6e3361dcf26cc89449249635335202de56b63ea241
fi|32|ae11728e81267169df046ea8626518d33d6b302bebcc05dc9b4b73c394fdc3b39db5e5d0bd78e1a87ad719045ca88e7b56993fe56d37085c3bd78be8d5de469c
fr|32|1126921ce1d2a3fb1164331adbe0fbacb1b8d26dbfc1646904001dd02eebbcac9c922d232abf652edec1064576cad680499052a8d6d6d4af5e0058ba6e51d847
fy-NL|32|8825e0f87f3099919893ff301fe1ac04303b17bf4b8241f9c1fa1616e3ec10d73ac43564fc2ca7bbd0d5aed4fd9c67de5098e5ca2e51cb22acc4c57c698a32fa
ga-IE|32|bec26bf7d0281842a0334123496743a5c79c380ecf92c77703d92dbf7dfe4f27fedd4301c65c322e8b108fed58b6bfc0a45dfe40d26927a2660d042a9c3387b7
gd|32|bb22e5ca38c545667c359ca0662628b68fda101935b78dfccef4d00f74dc349bb3b851d3287c89d1be52de3f5681213c5238463b55d66f9877a7cf0e102e2bf0
gl|32|772e39cfeb18c76513e3fc213cb9b28841d335b4c3c3f0ca07b6abf6e87a9b4a064f7801a90f9cdd6dccc5d0a58be2a51290c8cd226c2ba6d05376574eeb1c62
he|32|3401bd916157a126ddbf9cefde1da9b242fb0ea92be7a5a80ee6b95b49a094af3af5b57b6f3f20c68d3c4cbbae2832ef4d84c9a0b88da2a5a95bb48cbac6ab13
hr|32|d178ca59572f2e67999b712eed54c2dd9a64ff12dea2ba81f4c5e20e55a4731fc3650fb093042a3f8ac50465d79d51514a7ec98ca67174559b40d278acf64f6b
hsb|32|1d572aaf7a963aea9609d7e59b53a72d59be0748b6f3de121ce7034f8bec934145ddb274249c3714101600e06c9562e33ef5fd9ee37eef618793e15215ac95d0
hu|32|2f7c7ee6c518a65490b56dfeb20fa58484600c11410718ed7c61592fe62a8914cb7e5be1aeae310ee87c746138dcb8f22134a3391a2b6346c13bd66427eaf167
hy-AM|32|ae473a617337be9e1c74fb356f61e75450030cbcdd3b6ac05872bf06c088c8ae340b02f5e20240544d7264791ace9464beb09827b19c0d8629b16e791c5f4960
id|32|47f43c40fc242f1c364ccc2535862ee6aaa607c036df3529538e01fc276c2152cc7d3bbc457118d541d907956fcc9c7f2011f5450c50d9029495db3f532ff712
is|32|c4b4eafc70115d1f57e6220534f67fba15b8d8d5f445374e5553d2a31ec1fadceff2d3dbae38315d6f70b1b8f9675669e3291e3a893fc0eba539bdf4147e4e07
it|32|520d84b8f0be7d41b907617eb28bef7321455b69d99a182dfe7c285f85d4bdb3dfb202a5bd64eb815806a200dc3a157573cdb216f92be314cf759ee811a0bae6
ja|32|b1ef7dcba5388fb8c833486202700f5925b6e094ecea00b97fe069d16fed020e98f1773e76846fcbd8495e0a5cb761a9ceaf5c9aaff788d838e215ab5e37b5fe
kab|32|a9f2b58a088f9638d427f0e26cd5213d5924a9629f9ad582c5c5a816fc5e67d5ecaa6a5e8605abdc74bc42f0430ab5e10af3e17870e300ba39e25a9ee3184d44
kk|32|34e5d1f443d85ed17cbb23c12409041e2ac6707cda7b5366db74abdae240302ef5ae7fb19a6476593d3637b3b7568f7d8764db5f85c0b1b2d718d1f94b99359f
ko|32|bad4d85273fabdd35f1fd96a4e00316be9c4c76722c4a1fc58d281f1398abec68b7fd9350a8baefd8afd692adeef15e68eb4bb1650575be06c6f0255b1556647
lt|32|00a68c860010706f67a3702ef9df71c3832257fdb1ec90f69aa99555588a97b123216e5562ff11fd36fc297660ac0a3f3dc87c99345b3972e2edb9180e281e4d
ms|32|70276bf291f1ca2a99ef25fbb9683b1da9cfa6c576b65c278cd0fe7edd3337da9625ab16bad047347604a813d6bae06e62ae61510fbbc9c51f9e046b3ddfec1c
nb-NO|32|d5d0f669d801bd540222e71d47385a75cf3ffa0c7e85d077ea9d284168163fe436df9d140c32062344123ab9cf5772d78e577f557fbc951d4446e013f42b5cae
nl|32|b30e4b03f062f37ed646bde4fbd2eba86b5437077dd71bccb708d4d43be3a66f64e2ebbf0c993f55f8a7d219f6f1f671b77ac27281aae35368c21fabae554475
nn-NO|32|c9bfa03a2c58ee7e60c1114cc835f0406d580dde56d098a7a514d73dea0e5e69d9ba0dc9da9333dc8dc68ceb2c1d562a75b4a2f0d5677a9ac37be328dbe2f445
pl|32|ebf0f255aa3ccce74f9cbe72afde0232d3fd5d05edf69dfc14758684602cb20e3a084cfbb0aacbe8422be5c0d1cf8500d78c2ed1ac071474940ed4930ae7b1ab
pt-BR|32|f6944f73a452ddc7adf2618954a0cc7bf5153c90db4733ccdb4336c3ebe6ebed8b0a6537193cd0412183d4229b51f8e333c60e878532e7703c391be83065fd32
pt-PT|32|c8770ecfb1a91ac2404fcfbe04ba10f1d7ad9ae8a26b64b58b74ff61bceb8d55d20043cf340691df46411fcbce60700ad8a933f9d745a9ef1d0083dd2e255d4b
rm|32|42c59155d208916af8d84b0cedcfff0558b5aea364b16ed7a2c77c017e9a30faa90e30c185ecaeb0fd4a32a9884f8244d6c8d861ff731506dc63cb37b6f830fd
ro|32|7152472c595854ee98ac417661fbc1db7efa766928fe7fa688abad44a84a71098399a05220e8df15a8758aa2b11433432d24413a05379cc338898b84e2e2f140
ru|32|e8a0d6dea909fcf85b51621dde09d34e2174c0312f319da8bef08c3f43ebe7be6e35324d49a945e603e8980f1eed15cf53dd5861bd2c01c43616fea53ea31c78
si|32|4187294df733a711429568af680464261a00385001a358806e7e30fa2bdf8428c78dc9ccebe01af0811bfac79b87c94418b7c2e67b828f10df95c841bd847a69
sk|32|4aa96f31f2ac574c0aa54f1b1bf53fc1661e2cdf8637d2a494f1d638a58fefa87c077d4ab97c6cdd4af79961db88d2a9adafb9d6ce305947dde245420833e8ee
sl|32|24969b0b0f7a19e7e14f149f8c0da9844274be30627bef7853c0c4c4d19361b3a13864d3f133fa9d1bf50ccf5d3bb83e8727f8e5a2694a70ba7e0e483f399630
sq|32|cb3c1c47edfaf7317f388776588309aa7cf7179ddca8257584d4154ff4b01d808cdcbd604d9ca69d58235f25c48a33c0173fc3a4bb013e98ea20d5d181d4b626
sr|32|a55a4de3bc2815196814a9205cb2718f728c7f4c550f68fd613e4eb3510ac1daa1e4012f7a084e7c4ee5e30fa344b43284061913dc6aef7dfca370b8446efc97
sv-SE|32|66cc2687541cb8386fb76b8832528a0774692912086eb06d6e59cae4a51a6c7a48b20fc49373899f152655b617b1f3265b3967f833ab076b2679eac93d36b519
tr|32|6883fc7018466521c71a68f2732902a54618706feed8f924b97765bc736337a2e40cd7b3dd34eb63cee3f033ca63a48a7ae43f2350616c80ea101b81baa1c81d
uk|32|5e73d8c86e30684182ea9fe45d5fbb31ac4c7b34ba3368ae20dd66692e208b20fdde4b08bca1f4098fce0e9b4bd409d0b93778a8becc07bfca3222c270efb4ed
vi|32|6069cfda9762ce7274a0fe677f2dbbfb9792140d350f6bbc6752a581304a0426af5747887b7d6a75c6a62ed28f3d3974a176fd1f399838ea5b5aa2a3cf464214
zh-CN|32|4a2499de09b921ccfa83c3602646a4c3e46950362767b1c78e73c816955b85a96a73c13b928472a227f95d5f443f805651703263dfbd5379949d44b62ee9e1ff
zh-TW|32|7adb370375531329df19dfaf51a9a94b9062432337121fd9f22659d45afc09f577f60aab27c593850e150d06dda80528df7d20e463c0d0bedd80b59abd0c8803
ar|64|cc44cd2c8849782878d0b30f902f48436123d8f4cb55f8f498664e558490fb1d6b2cf904b1a585f0ac652bfde54f625cc8661e806bd7dde381c2cf466df8b74e
ast|64|bd13196f577132a33baf02b766137583dc290c874ce5697d781993364642bb75f77fb9aa9e6df0ca62cd0b52d6eb24df5b3caeef0aab846b382646f967f5f6dc
be|64|364616777cd14df2f9642dc2bba3a425d7700a690321a76e0f798549041186159d6edb4a9e2d6f2401d8fa5ef26bc2eed235153a3d32a9508f7e0093226cdbab
bg|64|a5bd4b04d933987ba03679d4d1e5115b830b37c1c7e44fb4c493bcbe9a64906bdc34b80ac2ef294548b6b01c8749190ba2dcc5c45243f5f1669407e50427188a
br|64|6dd0cf851878b22e443ca13dd34143316c849e9404b700891bc195b7b585fa8078ef0a626577f7a88276222072d3ff11e0307128fac28e9a85a2a34b47cefb3f
ca|64|51c3af1d29c1df57920bc2ca56ce6b9d6dd0be156d16276e5820b7037c1223ba5b88acbcf4efbbc739090cb6cbce230b7c7d09c6111abc2e647dec71c2da2968
cs|64|51d53c16e6dc810998f0d933ef2e27940c999e30c6a45a474a0b4d8320e2d1b4fe418ba13045bcfc3b348634b94377267dd5993ceb816b9b5933ede875f65ecf
cy|64|75f21432ed0c9a278e4f76547bc26a1d2f57db5d04a359854c3077ad0e270eefd4334227311264ec19ea9b275eedbbde2cb800cd91dcc4caf72625c6cafec97b
da|64|ead4f4200d78c56c3be2afd1b85d17913a1b957a222e1cd0e2cd99c629eb1081d71383dc8efa3d3def09b5c5ad1b23314a809eacf54befc9232e2495479ae57a
de|64|67f2e46d85b5b9fbc532da4964341e4d4d4d07f181ac6274b22bca3baccdb135ee4c27fc5a76a5ffee2f5700842487d792127540c3c5821f8505a18d1e124884
dsb|64|adca96cb7e5a92228a3bf9a2130342aec9f4aa36b3ab2d24e74c06799d419ac700c4243400db808b59cb282be5abc6b3a0dc9c103e509bb7931b583a4c5d800b
el|64|4dfee7c1e394afa965b7d935f01bb8a67e8a52275310228c96bae058cf623166c140070a201b7653a4aea23e3cf5089604ea78c2f4aa0a609cc3b65f1d145817
en-GB|64|05ab6d1614130c4117a119dbdf40a6627c9150ec540f05caa8c2bb870ba405bab3859f15ec7ea4fba13ddd7e50348e4a62f0d5c5c46400a30a9f2b65b14ca42b
en-US|64|4f1750bbfc900b33ac1709ba1d0c1ed08c27b51004a435220acd018af5c3843f1ca29b63f02899a5a9bd9ebda605caebdb8c5675f596310ff5ddf8972d9368b2
es-AR|64|05aa9006f8e62c6109ec8427b1cdcfe163b47810609e43eab5fd5da678cff7c579e7b658c3a2bc435994232a3c99987f7360977ca4a9e3b5559ab72b28b5451b
es-ES|64|887e75412a0d411ac86da429f80b3215b5595c379f2a0c106bd7e823dcbac414fbfaabddcd3e0dcbb7b5d55ec431f8d910d2f4bbbba44024fcf0f1c3357f2b11
et|64|dab8a73f85fc554d893abacc93270cfcd324383dcda1be3da121f805213fefef06ba4c46a2811461dcc09752b5eedbc8809983b72a4a8abe57cbf9837e6f83c2
eu|64|ccdbf6321031049f085e36e6720ea5c6ba668db7520fb9cfbdc535bc4020b2c2d975f26976fc87afab5d8e97bf979d5de0831fb4f1c4e93b7c6e950367a2844e
fi|64|c280f18d9ff2bf4c55ef92cb636dc482b4c4e4b0cefc0df2250713151c066113d18bf5ca6cb01c19d4cc0dc1dddf45ff215c19066ee09f60fdda8715b84af735
fr|64|eaabe3d89ec5beb636bc43f8cb1cbb999815d582b8243599b770f27b119c17c19edcfc9fcc60030df653fac18ee776fefca2e113aecaedf269ed02fe060b4fdb
fy-NL|64|f6af90ca011130cec029ef2f3a25d4fe73c39c1ad4d7a5ef90f3c516a614b5806584d555cdd141217e962f5323a7fc499e27fb033246bbb1c54f654ced2ef3de
ga-IE|64|81152865c863a595d1c54205749553aa5530471802c671bec23159b22359f52ebd40a031cee430ac95c13e4b0f874d216f59b2ac8d3ae421abb9cc9cd1084395
gd|64|09a2fa7f3b25d5a7eac7edaaf2f1b236efe70e27eedc12cfc8c18ee1178473ba6f3705025952a5a667433abe9db1a2a3b34150db565544e61d5beb4468242f6b
gl|64|b3a027594394625fdb87632aeba62d12ba2770f8f6d1e2a895514f515426ea758f1b74c321be9871eb50b026b0ed2c6bea73179c7ca8b8bef7fcdf38ef8b17f8
he|64|f003c169f199dcea78c6890b1b398d45cf7956a0fb2ece55d9e198f1dae43b487d9d0123f375626a033600383aa6748abaedc18a5bd51d369e29c1cb107d9066
hr|64|f99820a565a339d40542592a37c71eb472d8dfca08eb00282a90925a4377d2d5b3dd8ae1c1f9ced6f0e8a1c90e4c9c6cf7f49537917902084703645fb757c964
hsb|64|ec2778938196f08d7f837f45b55dc72a2aa691561cad2b390b065a3efbb449a97bdc9d378c304b1710ce989e89b35db2c2e6bf31d72d4b98fcc35b73e670b07e
hu|64|a62bbc04bb515745b950b9bf0f4441908ff7f4e7aab934cf6c772a66f4586b42a0a1a2982863684d6a6cd8f253ecee72c889e6020000db6909862f9f543b3937
hy-AM|64|a3a623dd8b8914b495d976cc33a302bdedb2035a5e327e60f3a152c8d25ceb5d58d85faf781e7370119e35de3d7f98ec5bdc4c65187c3a4436c902da1ac90b4c
id|64|5a66ba52a3737a7cb4857a9fd9a1949ed369346fe2f34d27eb612617b930ed89ee77fc4fe863209f4a2b1cc5d1825f4db3f06d73e6621330fdc66617828240e1
is|64|d6fa86430d746f6bc4920679a557053c3f768ba302636993d8bba07f85981e15a2ca7419b4d6e6613f1316ebbdfccc9c54206ad893c2989cc0bad9e82895a2d4
it|64|fbb6404765c66cf4d1feeea428e62de6ba76d154dfc04910298a836459d474b86b36680174cc87217f31070cf9ecb1d5848ef6b2a07ec01d18bff9807aa371d7
ja|64|e1d683082b207dbba59c854a1f16270f4282c87545f420453d109c19c6a0f355271cf93cc11864b6f9988b259f01a878d6b4a4b78ea26ac1e334ebfc74d7cca6
kab|64|8d1f8df4c6dd2eba6bcec6c7430d64abbf9fe0480aef8adf447f6742d7613c6c48fba59a20183b5991c8a2bc358c41a8f1118ea2a93dcbb2a80e9a48df1e1118
kk|64|3a193650e1e2d5951168bd1a8097b4f01a20759fd8df86978161f7b12b7a87eae19772b35bee6f15a1fc3af266d7b0e946bb7960ba036fe9d147898c2db65578
ko|64|925438fca56ebc816b75ebd8d63fce63bc827d126751b8a8a70f2a00ad280c8b05a677207b92141a95112fe11f65d924c6a942a3980c307ea68c1fa81938d740
lt|64|624330d77b0bb745ccf19e964c17ba66a44a12371ee079a2bda64c8696350b21382b799e706d2ff523723d413e5fe790b7bf6bb16b76ae9bc67cfac1b01ec53e
ms|64|6fce05aeb0410053de9feebfabd2832327c71f70469cc402feb06be2c80fc5455dc9496cea9072956088024facbfebba649fa20ecf9b38e3643abcf015342d85
nb-NO|64|017efbedd1f47fa3bf1621c7ae069275c118c700d29aaf31335a8c88e0dd7068775b720196f13d5e8750b6014a2edf76727413595b19355f6d968ed3a89293bf
nl|64|b37d04d879d53bb5a0cabdc7dd7e61a4fc5c16a414c258d7020e9d09dfc4a42db29bd102eefaadffd29193e4dade895d99b0458308f1d15ff4f8bf6e5a287c9f
nn-NO|64|fb3793907871e443acd54e77777c8690748196828705eba1c8e1b2f2aa9c57e5242ed6cf4d64bc78d191a90506bcd498290335811fb1e871b69b0ea9913d6049
pl|64|bd79c1315ad95ad9c9a6c33c9495a18175af2b1d3f055a19ab90125e0e260228461b8d32fc153fb150fea2dd6e9b2f1c33684f8ede67008aeb1f189c3041797f
pt-BR|64|ec490f6a2783ea53cbfd8e39a4fceecbc4f64bef060c4a212970afdf388f95d5b0239ec466550430f70a3e4058203dada9599b090bbf2de23ae0d2cc1a8c4c56
pt-PT|64|f1a0cd2845e10f826062b07bab93d602f4936ad719f4732100ec0a2f2edaf4c7b7466ac3ab2718b8a82615f410cf1335792fc03c97c0e9c4bd96e0a3837530f9
rm|64|98dbb923e607c981944a5ea6ae5deb5d7e6f1d9091abf03a9d7e1e297d25682533aed9cf10ff180268802f02c95e185b49b04b2b5cdbf3b48111be69b4ee5b16
ro|64|2ab837b3f326ebe16f5468e38624e63e8231482bc9a49f0701934a72baa83f3dd1d6e3dd4c5af8478294a27ad3db9ccf87b8e8a539471b68ca90efedd7671e56
ru|64|ab064add862e1c3a98a068c4b210ed87cc89354049edeacf595ec779f8c1672086a17cecbcc13bbbd9d5d4019499bedf57d8268925e9c7f0097f9dd4ced95fcc
si|64|b8ca81f387db77fdcbf907f3e411d3f8fb44dcd79f6e22f948b4eb4cf2ded961d6d4f51cf573a9f3ed13426c2804135e6c59dd863619cf2f1b02ef64bb0a3b78
sk|64|99a5dea6d5dab9b5943594a7a068a1883294ead03559806733030edc0ce57f7755764db4018f4c6eb51ef755b93e6b8e0bae1417265007faf4d4dff27816ce0a
sl|64|03cdfa174ae63d7b9a07bc801099d3ffee143fe7adc50dc7bc0ee112b9d23d89c12b6d7c043d154da0bfce2e0b94d8ddb6f94575cbe44a8644b122a7c94e6dad
sq|64|4aca2b2eb34d12403ee02cc69dbe5d7226dd673b6d729d5d86b7a68f539956ea799701d8eb068cd7d7a62136d8aa9e83cbf8cb49df33d755da1220bc595040fb
sr|64|761a5c43be77cf2385610124946b6aae184dd0fe59cacf102c9f349d273bb2240dea5d31a6ab88a50f6bc048992716fa43c9b52d2321b4c6f1dd22984da502b5
sv-SE|64|150fefae3f63373b617320f286e02c84f7a276dd1125837e28cf734ceeed2c90329281c969f45b1ae5ca85dd99b67b86ae827a8d7bdba97699495c311e5ec2bf
tr|64|1443ba9141cc3e9cc76fe8a636f20bc2bbefa30072d0b5c0c2e37f8bec05c9da208eda2dde5dc3a25a2f5043197dd90fc6de334e3b3bad435a1cd0eac318345b
uk|64|19e539a192d36236f4a849312b72c8e9edb5c2a4ccec00cbb73ed1f964c171421bbdd69fa0d80780be966e52549d8d84ca1ac99af22dd97d64ca54d1deddfab8
vi|64|95d208d892644a428505481470c3aa95363670ad565b351e1b0fa0e9bdb863784fc0a2f52a91e7111e51e9099e2522b03492566889fdfbba4b948b440c90b3f9
zh-CN|64|fed0379b568a313fb984fe2876f4f111dea7e60c0aaaa032827e15ff5a5c8eb5c3d59f6c553e0767f4de31cce5545c5650b009dc5a6012973d0d53da1916148a
zh-TW|64|766530a6b1cacc25e5178a0cf5f73c2bc46d1b5908761154e2dff7c25d135170b04433d4ea649480b0f675110a0c0b10bba01d4623c48273635490b6882d8872
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\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)"}
}

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

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

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Mozilla Thunderbird 115.8.0 27103 Wednesday, February 21, 2024 Approved
Mozilla Thunderbird 115.7.0 36200 Wednesday, January 24, 2024 Approved
Mozilla Thunderbird 115.6.1 27358 Tuesday, January 9, 2024 Approved
Mozilla Thunderbird 115.6.0 29831 Tuesday, December 19, 2023 Approved
Mozilla Thunderbird 115.5.2 22363 Tuesday, December 12, 2023 Approved
Mozilla Thunderbird 115.5.1 27029 Tuesday, November 28, 2023 Approved
Mozilla Thunderbird 115.5.0 18694 Wednesday, November 22, 2023 Approved
Mozilla Thunderbird 115.4.3 20159 Wednesday, November 15, 2023 Approved
Mozilla Thunderbird 115.4.2 22742 Wednesday, November 8, 2023 Approved
Mozilla Thunderbird 115.4.1 25961 Thursday, October 26, 2023 Approved
Mozilla Thunderbird 115.3.3 20804 Wednesday, October 18, 2023 Approved
Mozilla Thunderbird 115.3.2 22129 Wednesday, October 11, 2023 Approved
Mozilla Thunderbird 115.3.1 24330 Friday, September 29, 2023 Approved
Mozilla Thunderbird 115.3.0 12345 Wednesday, September 27, 2023 Approved
Mozilla Thunderbird 115.2.3 19518 Thursday, September 21, 2023 Approved
Mozilla Thunderbird 115.2.2 21627 Wednesday, September 13, 2023 Approved
Mozilla Thunderbird 115.2.1 6650 Tuesday, September 12, 2023 Approved
Mozilla Thunderbird 115.2.0 25409 Wednesday, August 30, 2023 Approved
Mozilla Thunderbird 115.1.1 25975 Wednesday, August 16, 2023 Approved
Mozilla Thunderbird 115.1.0 24911 Wednesday, August 2, 2023 Approved
Mozilla Thunderbird 115.0.1 26986 Thursday, July 20, 2023 Approved
Mozilla Thunderbird 115.0.0 23752 Wednesday, July 12, 2023 Approved
Mozilla Thunderbird 102.13.0 15987 Saturday, July 8, 2023 Approved
Mozilla Thunderbird 102.12.0 35793 Thursday, June 8, 2023 Approved
Mozilla Thunderbird 102.11.2 24972 Saturday, May 27, 2023 Approved
Mozilla Thunderbird 102.11.1 11219 Thursday, May 25, 2023 Approved
Mozilla Thunderbird 102.11.0 27746 Wednesday, May 10, 2023 Approved
Mozilla Thunderbird 102.10.1 28999 Tuesday, April 25, 2023 Approved
Mozilla Thunderbird 102.10.0 27102 Tuesday, April 11, 2023 Approved
Mozilla Thunderbird 102.9.1 26546 Wednesday, March 29, 2023 Approved
Mozilla Thunderbird 102.9.0 25477 Thursday, March 16, 2023 Approved
Mozilla Thunderbird 102.8.0 35688 Thursday, February 16, 2023 Approved
Mozilla Thunderbird 102.7.2 21413 Wednesday, February 8, 2023 Approved
Mozilla Thunderbird 102.7.1 19912 Wednesday, February 1, 2023 Approved
Mozilla Thunderbird 102.7.0 24091 Friday, January 20, 2023 Approved
Mozilla Thunderbird 102.6.1 36185 Wednesday, December 21, 2022 Approved
Mozilla Thunderbird 102.6.0 20234 Wednesday, December 14, 2022 Approved
Mozilla Thunderbird 102.5.1 25077 Thursday, December 1, 2022 Approved
Mozilla Thunderbird 102.5.0 26019 Wednesday, November 16, 2022 Approved
Mozilla Thunderbird 102.4.2 24254 Friday, November 4, 2022 Approved
Mozilla Thunderbird 102.4.1 20784 Thursday, October 27, 2022 Approved
Mozilla Thunderbird 102.4.0 16157 Thursday, October 20, 2022 Approved
Mozilla Thunderbird 102.3.3 20296 Wednesday, October 12, 2022 Approved
Mozilla Thunderbird 102.3.2 18373 Friday, October 7, 2022 Approved
Mozilla Thunderbird 102.3.1 18882 Thursday, September 29, 2022 Approved
Mozilla Thunderbird 102.3.0 19812 Wednesday, September 21, 2022 Approved
Mozilla Thunderbird 102.2.2 23177 Thursday, September 8, 2022 Approved
Mozilla Thunderbird 102.2.1 17979 Thursday, September 1, 2022 Approved
Mozilla Thunderbird 102.2.0 19357 Tuesday, August 23, 2022 Approved
Mozilla Thunderbird 102.1.2 22226 Tuesday, August 9, 2022 Approved
Mozilla Thunderbird 102.1.1 11471 Saturday, August 6, 2022 Approved
Mozilla Thunderbird 102.1.0 17232 Friday, July 29, 2022 Approved
Mozilla Thunderbird 102.0.3 18718 Wednesday, July 20, 2022 Approved
Mozilla Thunderbird 102.0.2 19772 Tuesday, July 12, 2022 Approved
Mozilla Thunderbird 102.0.1 14109 Thursday, July 7, 2022 Approved
Mozilla Thunderbird 102.0 20680 Wednesday, June 29, 2022 Approved
Mozilla Thunderbird 91.10.0 31580 Wednesday, June 1, 2022 Approved
Mozilla Thunderbird 91.9.1 21170 Friday, May 20, 2022 Approved
Mozilla Thunderbird 91.9.0 26197 Wednesday, May 4, 2022 Approved
Mozilla Thunderbird 91.8.1 24073 Tuesday, April 19, 2022 Approved
Mozilla Thunderbird 91.8.0 22308 Wednesday, April 6, 2022 Approved
Mozilla Thunderbird 91.7.0 30208 Thursday, March 10, 2022 Approved
Mozilla Thunderbird 91.6.2 14306 Sunday, March 6, 2022 Approved
Mozilla Thunderbird 91.6.1 23245 Friday, February 18, 2022 Approved
Mozilla Thunderbird 91.6.0 19925 Wednesday, February 9, 2022 Approved
Mozilla Thunderbird 91.5.1 23605 Tuesday, January 25, 2022 Approved
Mozilla Thunderbird 91.5.0 22084 Wednesday, January 12, 2022 Approved
Mozilla Thunderbird 91.4.1 25558 Monday, December 20, 2021 Approved
Mozilla Thunderbird 91.4.0.20211214 16781 Tuesday, December 14, 2021 Approved
Mozilla Thunderbird 91.4.0 18883 Tuesday, December 7, 2021 Approved
Mozilla Thunderbird 91.3.2 27010 Friday, November 19, 2021 Approved
Mozilla Thunderbird 91.3.1 14269 Tuesday, November 16, 2021 Approved
Mozilla Thunderbird 91.3.0 22529 Wednesday, November 3, 2021 Approved
Mozilla Thunderbird 91.2.1 22514 Friday, October 22, 2021 Approved
Mozilla Thunderbird 91.2.0.20211014 17809 Thursday, October 14, 2021 Approved
Mozilla Thunderbird 91.2.0 19156 Friday, October 8, 2021 Approved
Mozilla Thunderbird 91.1.2 22910 Tuesday, September 28, 2021 Approved
Mozilla Thunderbird 91.1.1 21684 Friday, September 17, 2021 Approved
Mozilla Thunderbird 91.1.0 20822 Tuesday, September 7, 2021 Approved
Mozilla Thunderbird 91.0.3 20661 Thursday, August 26, 2021 Approved
Mozilla Thunderbird 91.0.2 10469 Monday, August 23, 2021 Approved
Mozilla Thunderbird 91.0.1 14190 Tuesday, August 17, 2021 Approved
Mozilla Thunderbird 78.12.0 28780 Wednesday, July 14, 2021 Approved
Mozilla Thunderbird 78.11.0 31886 Thursday, June 3, 2021 Approved
Mozilla Thunderbird 78.10.2 21023 Tuesday, May 18, 2021 Approved
Mozilla Thunderbird 78.10.1 19256 Wednesday, May 5, 2021 Approved
Mozilla Thunderbird 78.10.0 20989 Monday, April 19, 2021 Approved
Mozilla Thunderbird 78.9.1 18520 Friday, April 9, 2021 Approved
Mozilla Thunderbird 78.9.0 19264 Wednesday, March 24, 2021 Approved
Mozilla Thunderbird 78.8.1 21140 Tuesday, March 9, 2021 Approved
Mozilla Thunderbird 78.8.0 18870 Wednesday, February 24, 2021 Approved
Mozilla Thunderbird 78.7.1 22954 Saturday, February 6, 2021 Approved
Mozilla Thunderbird 78.7.0 17625 Wednesday, January 27, 2021 Approved
Mozilla Thunderbird 78.6.1 20300 Tuesday, January 12, 2021 Approved
Mozilla Thunderbird 78.6.0 20518 Monday, December 21, 2020 Approved
Mozilla Thunderbird 78.5.1 20562 Friday, December 4, 2020 Approved
Mozilla Thunderbird 78.5.0 18709 Thursday, November 19, 2020 Approved
Mozilla Thunderbird 78.4.3 14890 Wednesday, November 11, 2020 Approved
Mozilla Thunderbird 78.4.2 10858 Tuesday, November 10, 2020 Approved
Mozilla Thunderbird 78.4.1 9261 Friday, November 6, 2020 Approved
Mozilla Thunderbird 78.4.0 20198 Thursday, October 22, 2020 Approved
Mozilla Thunderbird 78.3.3 11713 Saturday, October 17, 2020 Approved
Mozilla Thunderbird 78.3.2 17159 Wednesday, October 7, 2020 Approved
Mozilla Thunderbird 78.3.1 16188 Saturday, September 26, 2020 Approved
Mozilla Thunderbird 78.3.0 5290 Friday, September 25, 2020 Approved
Mozilla Thunderbird 78.2.2 18564 Friday, September 11, 2020 Approved
Mozilla Thunderbird 78.2.1 16591 Sunday, August 30, 2020 Approved
Mozilla Thunderbird 78.2.0 9561 Wednesday, August 26, 2020 Approved
Mozilla Thunderbird 78.1.1 18422 Saturday, August 8, 2020 Approved
Mozilla Thunderbird 78.1.0 10122 Monday, August 3, 2020 Approved
Mozilla Thunderbird 78.0.1 14034 Wednesday, July 22, 2020 Approved
Mozilla Thunderbird 78.0 10389 Friday, July 17, 2020 Approved
Mozilla Thunderbird 68.10.0 17186 Wednesday, July 1, 2020 Approved
Mozilla Thunderbird 68.9.0 22042 Thursday, June 4, 2020 Approved
Mozilla Thunderbird 68.8.1 14083 Monday, May 25, 2020 Approved
Mozilla Thunderbird 68.8.0 18410 Tuesday, May 5, 2020 Approved
Mozilla Thunderbird 68.7.0 21865 Thursday, April 9, 2020 Approved
Mozilla Thunderbird 68.6.0 19678 Friday, March 13, 2020 Approved
Mozilla Thunderbird 68.5.0 28022 Wednesday, February 12, 2020 Approved
Mozilla Thunderbird 68.4.2 21215 Saturday, January 25, 2020 Approved
Mozilla Thunderbird 68.4.1 18622 Friday, January 10, 2020 Approved
Mozilla Thunderbird 68.3.1 18167 Tuesday, December 24, 2019 Approved
Mozilla Thunderbird 68.3.0 13335 Wednesday, December 4, 2019 Approved
Mozilla Thunderbird 68.2.2 34971 Thursday, November 7, 2019 Approved
Mozilla Thunderbird 68.2.1 16902 Friday, November 1, 2019 Approved
Mozilla Thunderbird 68.2.0 12463 Wednesday, October 23, 2019 Approved
Mozilla Thunderbird 68.1.2 17501 Thursday, October 10, 2019 Approved
Mozilla Thunderbird 68.1.1 17702 Wednesday, September 25, 2019 Approved
Mozilla Thunderbird 68.1.0 17542 Wednesday, September 11, 2019 Approved
Mozilla Thunderbird 68.0 25982 Wednesday, August 28, 2019 Approved
Mozilla Thunderbird 60.8.0 34697 Wednesday, July 10, 2019 Approved
Mozilla Thunderbird 60.7.2 18390 Friday, June 21, 2019 Approved
Mozilla Thunderbird 60.7.1 11124 Thursday, June 13, 2019 Approved
Mozilla Thunderbird 60.7.0 20018 Wednesday, May 22, 2019 Approved
Mozilla Thunderbird 60.6.1 45015 Monday, March 25, 2019 Approved
Mozilla Thunderbird 60.6.0 8109 Wednesday, March 20, 2019 Approved
Mozilla Thunderbird 60.5.3 11747 Tuesday, March 5, 2019 Approved
Mozilla Thunderbird 60.5.2 8082 Tuesday, February 26, 2019 Approved
Mozilla Thunderbird 60.5.1.20190217 9101 Sunday, February 17, 2019 Approved
Mozilla Thunderbird 60.5.1 4659 Thursday, February 14, 2019 Approved
Mozilla Thunderbird 60.5.0 10662 Wednesday, January 30, 2019 Approved
Mozilla Thunderbird 60.4.0 15301 Friday, December 21, 2018 Approved
Mozilla Thunderbird 60.3.3 9156 Tuesday, December 11, 2018 Approved
Mozilla Thunderbird 60.3.2 9230 Friday, November 30, 2018 Approved
Mozilla Thunderbird 60.3.1 11038 Thursday, November 15, 2018 Approved
Mozilla Thunderbird 60.3.0 10550 Thursday, November 1, 2018 Approved
Mozilla Thunderbird 60.2.1 16914 Wednesday, October 3, 2018 Approved
Mozilla Thunderbird 60.0 24432 Monday, August 6, 2018 Approved
Mozilla Thunderbird 52.9.1 15819 Wednesday, July 11, 2018 Approved
Mozilla Thunderbird 52.9.0 7454 Wednesday, July 4, 2018 Approved
Mozilla Thunderbird 52.8.0 18795 Wednesday, May 23, 2018 Approved
Mozilla Thunderbird 52.7.0 20340 Saturday, March 24, 2018 Approved
Mozilla Thunderbird 52.6.0 23724 Friday, January 26, 2018 Approved
Mozilla Thunderbird 52.5.2 16325 Friday, December 22, 2017 Approved
Mozilla Thunderbird 52.5.0 14507 Friday, November 24, 2017 Approved
Mozilla Thunderbird 52.4.0 19503 Monday, October 9, 2017 Approved
Mozilla Thunderbird 52.3.0 17549 Thursday, August 17, 2017 Approved
Mozilla Thunderbird 52.2.1 12707 Saturday, June 24, 2017 Approved
Mozilla Thunderbird 52.2.0 5999 Thursday, June 15, 2017 Approved
Mozilla Thunderbird 52.1.1 9435 Tuesday, May 16, 2017 Approved
Mozilla Thunderbird 52.1.0 6384 Monday, May 1, 2017 Approved
Mozilla Thunderbird 52.0.1 7221 Saturday, April 15, 2017 Approved
Mozilla Thunderbird 52.0 3989 Monday, April 10, 2017 Approved
Mozilla Thunderbird 45.8.0 8808 Tuesday, March 7, 2017 Approved
Mozilla Thunderbird 45.7.1 8727 Wednesday, February 8, 2017 Approved
Mozilla Thunderbird 45.7.0 5619 Thursday, January 26, 2017 Approved
Mozilla Thunderbird 45.6.0 7039 Saturday, December 31, 2016 Approved
Mozilla Thunderbird 45.5.1 11788 Thursday, December 1, 2016 Approved
Mozilla Thunderbird 45.5.0.20161130 2130 Wednesday, November 30, 2016 Approved
Mozilla Thunderbird 45.5.0.20161128 2309 Monday, November 28, 2016 Approved
Mozilla Thunderbird 45.5.0 4820 Monday, November 21, 2016 Approved
Mozilla Thunderbird 45.4.0.20161024 8489 Monday, October 24, 2016 Approved
Mozilla Thunderbird 45.4.0.20161023 2217 Sunday, October 23, 2016 Approved
Mozilla Thunderbird 45.4.0 12293 Tuesday, October 4, 2016 Approved
Mozilla Thunderbird 45.3.0 34631 Wednesday, August 31, 2016 Approved
Mozilla Thunderbird 45.2.0 52854 Sunday, July 10, 2016 Approved
Mozilla Thunderbird 45.1.1 549 Monday, May 30, 2016 Approved
Mozilla Thunderbird 45.1.0 456 Wednesday, May 11, 2016 Approved
Mozilla Thunderbird 45.0 434 Sunday, May 8, 2016 Approved
Mozilla Thunderbird 38.7.0 7790 Wednesday, March 16, 2016 Approved
Mozilla Thunderbird 38.6.0 5828 Monday, February 15, 2016 Approved
Mozilla Thunderbird 38.5.1 6088 Thursday, January 7, 2016 Approved
Mozilla Thunderbird 38.5.0 2776 Wednesday, December 23, 2015 Approved
Mozilla Thunderbird 38.4.0 5536 Wednesday, November 25, 2015 Approved
Mozilla Thunderbird 38.3.0 5676 Wednesday, September 30, 2015 Approved
Mozilla Thunderbird 38.2.0 5535 Friday, August 14, 2015 Approved
Mozilla Thunderbird 38.1.0 3971 Friday, July 10, 2015 Approved
Mozilla Thunderbird 38.0.1 3296 Thursday, June 11, 2015 Approved
Mozilla Thunderbird 31.7.0 1877 Tuesday, June 2, 2015 Approved
Mozilla Thunderbird 31.6.0.20150405 3651 Sunday, April 5, 2015 Approved
Mozilla Thunderbird 31.6.0 784 Friday, April 3, 2015 Approved
Mozilla Thunderbird 31.5.0 2892 Tuesday, February 24, 2015 Approved
Mozilla Thunderbird 31.4.0 2552 Tuesday, January 13, 2015 Approved
Mozilla Thunderbird 31.3.0 2425 Tuesday, December 2, 2014 Approved
Mozilla Thunderbird 31.2.0 2430 Tuesday, October 14, 2014 Approved
Mozilla Thunderbird 31.1.2 1461 Wednesday, September 24, 2014 Approved
Mozilla Thunderbird 31.1.1 1068 Wednesday, September 10, 2014 Approved
Mozilla Thunderbird 31.1.0 982 Tuesday, September 2, 2014 Approved
Mozilla Thunderbird 31.0 1536 Tuesday, July 22, 2014 Approved
Mozilla Thunderbird 24.6.0 1503 Tuesday, June 10, 2014 Approved
Mozilla Thunderbird 24.5.0 1543 Tuesday, April 29, 2014 Approved
Mozilla Thunderbird 24.4.0 1505 Tuesday, March 18, 2014 Approved
Mozilla Thunderbird 24.3.0 1092 Tuesday, February 4, 2014 Approved
Mozilla Thunderbird 24.2.0.20140131 506 Friday, January 31, 2014 Approved
Mozilla Thunderbird 24.2.0 871 Tuesday, December 10, 2013 Approved
Mozilla Thunderbird 24.1.1 615 Tuesday, November 19, 2013 Approved
Mozilla Thunderbird 24.1.0 626 Tuesday, October 29, 2013 Approved
Mozilla Thunderbird 24.0.1 622 Friday, October 11, 2013 Approved
Mozilla Thunderbird 24.0 597 Tuesday, September 17, 2013 Approved
Mozilla Thunderbird 17.0.8 661 Tuesday, August 6, 2013 Approved
Mozilla Thunderbird 17.0.7 594 Wednesday, June 26, 2013 Approved
Mozilla Thunderbird 17.0.6 580 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 17.0.5 551 Wednesday, May 15, 2013 Approved
Mozilla Thunderbird 16.0.1.2 685 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1.1 440 Monday, October 29, 2012 Approved
Mozilla Thunderbird 16.0.1 457 Monday, October 29, 2012 Approved
Discussion for the Mozilla Thunderbird Package

Ground Rules:

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