Unpacking Software Livestream

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

Learn More

Chocolatey Product Spotlight

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

Learn More

Chocolatey Coding Livestream

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

Learn More

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

Webinar from
Wednesday, 17 January 2024

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

Watch On-Demand
Chocolatey Community Coffee Break

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

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

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

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

Livestream from
Thursday, 9 June 2022

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

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

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

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

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

Watch On-Demand

Downloads:

3,450,389

Downloads of v 115.8.1:

26,656

Last Update:

05 Mar 2024

Package Maintainer(s):

Software Author(s):

  • Mozilla

Tags:

mozilla thunderbird email admin foss cross-platform

Mozilla Thunderbird

  • 1
  • 2
  • 3

115.8.1 | Updated: 05 Mar 2024

Downloads:

3,450,389

Downloads of v 115.8.1:

26,656

Software Author(s):

  • Mozilla

Mozilla Thunderbird 115.8.1

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

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

>

Deployment Method:

NOTE

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

1. Enter Your Internal Repository Url

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


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

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

3. Copy Your Script

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

See options you can pass to upgrade.

See best practices for scripting.

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

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


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

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

Exit $exitCode

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

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


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

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


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

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


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

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 05 Mar 2024.

Description

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

Package Parameters

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

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

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

Examples

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

Notes

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

tools\LanguageChecksums.csv
af|32|c5cc30cf14757a7bd07f66397ce66f1952c2b1a695fd037cf8ec72f7af3a22ca1a05384fba71dd2ca75c02c68bcf2cfb07879a65dab39b86336d941a3169ae5b
ar|32|7047fb6db44a055286ec6d2dd3185c1ed840879e9dc08b126507dc36819618442c3ce08507eaaddaf16151a8419b20b55138275069957b24eae8f1818155a4ec
ast|32|397f8008771d822b0af26b4e143171210274e99e8e9b7d1d0023ab74191d80c1fdca35edf131b5d89e54b2f1790caa4d2b38de51aa5cd9b3f0349cb3b4b5ce1b
be|32|c6ee40ea9a33304a2624bfa65452bb4b0973a5eaa27dbede7fe57c8704808bc64e07091d55218dbde9e821c4c8c694e49b5afe069b565777ca132446de175918
bg|32|53961cae5757f7857c1411e5b80675df4141c9236ab76882f7964ef5211900992370fb158455aa260c851d671f261abdf18c7b433145f910d8e50419fbe89042
br|32|56e173fcdb542017df85fd800a58d244e769b8205ea89167c0829c62f368a1cbfd3829de12b22cc1f6d85d07c7242936381b11883f5cf67fdd541085a8fe91c2
ca|32|8d3704e240437cbc9029ed2e6f559416a719d3f5c418301b7130426eacfa74b6a0c2d7832bb3ee54bb4b8bf47ddc33f8d584b5871c964d1ef80b86600dea440c
cak|32|cbd470d8c9ad0ce7756b251b964d4cde73a34ef0f18b22bf2858653383a324e6fc98c813569ac29964264448b4b4949270c6fc97b7220bf51bc39020cf8e54e2
cs|32|606f708e7438e6e38ea7417b7a51fc796169f76a2fc8c3abbeefcefd74c3834898b3c274c49e7640218bbb5ae674b3e2748de1c95f78c66d013f23023dd5accf
cy|32|314c122fc8715762c7f6bef01864b4a0ba64bd09dcabfb8613422940d61b7467a4d06cb35a434aad1cb766a3689948f5b3e18e0393274157b3b612d6d5de8283
da|32|897f8e444a84d97845a6964e0bf8fa4635e86ae5d3f5e8e4df4a413a8588e9c992e8cd5140bd25a7e1f82627a82eff73e7496346127a77c4e9c4fdefbd6f154d
de|32|659faae3803da71df4d2e7ada8469eea4c6575cce84517ecc8b736bf8817cffadfde7a2b13e44d4699c1364b63970a4a03c4b5b154614ce38fbe830f177a302c
dsb|32|d4e47a45cf9167d8b3477d11209373f4aaa0bac20d92dbd7b6bb14108e70919d98c237d7d24a4eba443bb7954da94498d22e6685dd8aaa731763f0f1802faa94
el|32|e5914675b4aa2e5de5e0672a0137a82c601b1777cad043014580d8436927237b95d3d4efaba914fae0ac1499e5a5c435712a0bf399a64611c0e02683ad3e2d3b
en-CA|32|2d8888dd6c0d9bebc688196bd2b6344d68fbcf0e7c17cf4703b69473de9651f18e3b7e8a4a86811847cf0dbd34f87d64459efbd282268a1e51138c150d2f9df1
en-GB|32|f1e85fbf46c359b9e084fa4882b081ef1ac6276eb85cc9bb65cfbfd3e28dd0b3879096f159dab2c64e2755c0e34d4d154db2dbeb770be30488f4fa5e082e9766
en-US|32|27dd8d7fc47a829d9f9ee0b076f6e238e780737e3a53157393cf7cd46de27a4debdb3aa126a8193108c1fbf6e95db41db71f4011238ac0366bea5f8dd6bb36ef
es-AR|32|a5fcd3d2cc7eafd35906baad934dcf22640acc33a283b6bf0e8d2a55dcab060535ea4fc078d6499eb674cf08d8cffb77682dfff53c62903f24aa531a15444a3e
es-ES|32|b49175d99ac0d47226e15e72edec549c76c5c17a1105c0d80af5f0c09930bc6794b71b3fa856b050bb38a29ef94f4cbbd0404999c49701fa4a2e62d6ecfbb31f
es-MX|32|e08b25605f7b692f3d862845c7e2458e9db95ee1433e99fbbd23683f60d18f9883befce30a59eee6a2355f605d5681c9c2cbdbfaff6c556989c63fbb19be57f3
et|32|a242699fad852ba01743812820021fdfa1697a62e9fc53e57b3e1b45fa2598c4439eefb7e66903abf90c41afb14c3f42274c74408d4c70cf921bb2beac05af75
eu|32|8634468f00f62ea5b4cabec1e49ef0598b41d512e1ad836e3c0baa8c6995b8fe9ff538d4be65f5a273576a3076b0a37a32d8a57e6d9730499bfcbb0fcf0ce9fe
fi|32|c4b04999cbbf61a6bb8f8c6676f77f146cfa91dc8c5ebe73f5d4b0fb73095ffab447fe3f46a2ae6989ed9b412648cdbe213b9d1966572bd9b7a729a9b05a3038
fr|32|783fa54b7c9330b7b8683c8684c4aff9cd2d95ef9b9178f179295d526df99d45075c695395dc5e810f81b1b31d6dc4da5464ea1530f5f114ec5ee46b70ceb0e1
fy-NL|32|1887494a621e2c1900c89593fa138f7d1b0ba37f824449385b6ce5440172d921533e058ec585f2f85a6de9e580e52eb4230983e6b0d9f1e3a4fac9e45c8d3030
ga-IE|32|8bd39692d2827ef63a80a2f772860c70dfec160b4a64a0b48f606283ed17567b707d9e4d77909932b1018421730851c09a99e76eb6fb5f6ef9badabaf312dbb5
gd|32|5d9515c72b9209bd94913fda2e3120cbdfdb9e946633dc2878e9718f83c37fe427fccb9fa982cdb0912c7fe66328cdcc69cc4e4d9e122b55963c82f32dbd0d6c
gl|32|8c01e9ac785aaee2c05a3186774e835fcb225ad29f25f118326f6e597f6dc7e87d6937ad9fe19f145151fcfcfee42c8e449479d9a1e8ec436afa42885ebc5fee
he|32|8efde4a8a78e93b45789ad4af3c239fe5d2c5f17a6a9dfb8e9ada823eb19d8629aa2de7f68a72e5117ff50aeccc7249675ffd389f4bc68bd7a8f66cee999737b
hr|32|35abc05104d702d4f635108e0fd4b23999f68a31c406c3a5c61ac17730dfd3593acef4fdf03f749e222fe8276ae0e99a92a82f92643602b7d621c94f2d636000
hsb|32|f7ae63de3238ef41e9f4242b5d98c145f4a872695103d960e98f9a22bef9963aaf367512e7df2ac69a184a46fe03060bab692c3a6d0512de40fca5a549df1c9c
hu|32|3e5eb02a18ed4cd82e831c7e6150169c3b68830cf7f80a851774a4272f023d61c8976fa3406797924d862a66038106eb42e00133fd4a7382aebf84c0c8246b03
hy-AM|32|20a8e00b4394cd7e852d0eb836eea43f093b78016ecf3465c47c96393ea12daf800fa26dd5caf80ad582136795df444db488069e1b6a4e7ad0a9d8568322cdfc
id|32|edc5204a932336b319eaec4fc92f0066ba9b7db54758542aaec5017cab487852db2620bff64e2e617a2cd9e25fcd57b7716330a4261ada75e20762fa6229b796
is|32|66f7bdabb06ecdef8b95c5601ccce364ff6e770c5d438e6ed2a3631dd9741017363c315bc5cc59516292e5c86f145f0cf7a75a9384303f3c295b0187d677951e
it|32|e4d681d5661522f9e9c5fc47635a8958a5c4842224e5b8fa7679ba397525c01615b10075bf8be2fdcead02f4538cf02679ada0e278795a5425ee209c23c08445
ja|32|cf411535c56e0a03e7cd21efe88a385772ebbe32409e030ca9b96a6fdd748adc8a4642f8948ffd679101992249de9c2a81c2c36ee2b00cd2e89ecfcbb6878df4
ka|32|33872b22c116fda3f3c519915cc58a74593f15c6006227f3e776af9ac7f91d3bc99dfa97a8f86828236846bf31ff8187b59aa21f8b4ed72e27dceebe1bbad3cd
kab|32|f09a5e79059b5a6d2fb868b104413bbc4126289b091f0983ab6eaedb32bd65a62619fda5a6c06c0e5fa4b0893a4c7c3c8975911081017accf7a0d9cbfd05fbf2
kk|32|3e7b2194b84d99df7eff09cb345e564a97d5c047c370047516054fadd8f83f31dc82895c03c15dae12e8f82412b28c47f695f9aea09525bbada07c12ff662080
ko|32|bd93d21ba6bcbcb96e928431f140cce283c26a56ce4b71d2f132a868b17c1a8cde81fb77a99598a914c2fef71ce68b3560c14d0b47187733f8cdd85e1485cc33
lt|32|281b8d6bbb5ffb260775188bb9cbd505a9edbef03599c06eac05019b61e64db949302e41c1e2566f26d52b02eb613db80321d095eb24b4ce415ea730bc24982d
lv|32|0e140be45ac7bf85c637e585570b5957852057a94abce755e6f3fb806bab9e952e57c1af41815d6b6e75f944c54bf4752eedd98ac316d9fff7f028fa11ea01bc
ms|32|ef20d09e5d6d715bf00e8851d35dbce9e43ec13954d912dcf670f4d1f523b652eec10c4d71342ae49ea3113304350d4e63d706fdb23fe0c4603f6fb4ba2e491d
nb-NO|32|8d704307413bd341cd3ae3d7151eaddc9429a1e2a736405709fd280e0d278d2ac4186b0946bd6a9d87eb67c66de563af96e7776918094e47d15ee7afa213a5f7
nl|32|6c8820859d7d8501ff063fd0483b64acf63a061002b4e807f2553a8c7cc1b4cb84abaeea352f8d5a2c0fa212f2ed6a7c73efe42675d9763dac797f984939b3cf
nn-NO|32|ae37bfbf3e4a705f3ca22319b9085548c0de2238111fb84817a62ff69faac406bc2158496b30c70574e975faf51cb8064e457397e2090e2570b6176f6fcc99b4
pa-IN|32|6346050ff4ce5dc2c08d766ecaf20a18b0d13bcaf10b99e2793be7c97aa207fa801472b6dfdd6b7101a71193d392a609709ba16a1b616bff7103c16b91c8243f
pl|32|4275aaffa871f1d1ae420607e33152fb1d2712d1a1f6e5cd13373ad572a598c1d719370b147626afb4af6e77f136f796cf1e177c01dd1f478b1b2bca071ce5b3
pt-BR|32|2b701e1b4000c7de6696bf56cccd08b2b5ce9432654ce8ccccb4c3a36c6eb4daa7c97a5848430002a969948bf6b6c9852c4effe2fe9616aeee82e55baccb1bf4
pt-PT|32|b3cba424798e96393c59bc69360726e9b4ad1105930633fa12f3028ecdc8163befdd50ee8d143fc4053899041490f58c8cfee11386d3331f0693f8bdcf3ca917
rm|32|aab5e42fcc85d19411ced14b39bfab9d1ad67b11ca68f0bfb45423a8add320fd258f224112291ae54923b9c0efbb54721e975ef79149d921ecf5cb660a3fb80e
ro|32|5a7517b33a7dd7a937a4bd1fc67d128220fc190a8666c5ddbb4154fb5100f6216299e97cfbd57262069fc59f8f73a0715cfbfea0dd0d43f00f7b87f00ebe2434
ru|32|6c44d0399283dd04db6bd7b847c18924e8c446edb1b25b7d4fe7291889843df45298d942449a61acc89767fa71564ae1ef3f0cec98c15a92e9408acaff3d3cb2
sk|32|a6315259000d2ff4f06d2f6e728f3c764ad3e39d33f5fd480727ba9cb491b77ecec9770c887923b95ea57839c7c4896f59ca488e91e48a79524f22fe880246c9
sl|32|4dbe01a292ea52332c9dab414f43b32fcdd533cddb1467193d1962c384f36eb49e2e283ae2855425b21dd30e675072d5bc5db66176007c59164a936ca23f3428
sq|32|61ffdb669a176637ae0d789357ce518a249c95595249a16b5f7e1a2230312b41a2e579de0d892fde50ca81fbc15a8044a50d2797f967415dbc6c91d915775c63
sr|32|9be1b87a7e8f75cdb31316a3be126c94e9510ba2ae647b58a22c7ee268dd8e3f1100e538a69befe1059a09926ce0c3f1de13bc9653bcdbf31762062075bf075a
sv-SE|32|e5dd259a36a64b87e2c32f719c40c6979a9f1c566fc607171353e5c02d575ddd1fb65de8957d85a2d3ac4dba070c5171b281e30812faae1764a92a0ed6d718d8
th|32|91c9b8e6edbe53e3d2f7fa8295f7922d5204c8944fd55d2a7ac221d8e70d9ae36470666e7600e2440735bb31b64c868339831b8da69e9f75f82157af32f5a2f3
tr|32|3b725b47bcb08d78ed0808d699c5601aaaf411388aa7e0d759aff2f870da92122521937d3cd857259a6c56c895698327f1320c909a7b11ab68ef8bced78b2b3f
uk|32|5a4da1a70a58dfc17220aa477daf45d4bb29bb3f0870baf8926cb08a098cf21c441f2ed6ac007fdc1fe1d63b091dbcaa518ca9d7e880a928d698849c7ec63b0b
uz|32|f6f6c47f4085e09bb42ddb9eb40a3c04e1bd38e32f39d6a55480d48c08b5a2e76366e2f2b9449cf0d1353117cf8d71d3b1365c0ac737a36b5e1288f8a86ec506
vi|32|0649476c787a1b76ea6283aba2e8da82cac1afce4d7d4193de281a3fc04533369b7e56e0012b1cec57582ee3ae3f2f82f13b4a77d47a3ff318fe08d176ff065d
zh-CN|32|d4d2efcffa933c5227c154992d79f99e24ccf5ee20b2a75f14fcd905ce61e016fb0f5a1aaff6f36e15e2fc8fef06d6c50e4d9a06b61dd0645f59a20a74689180
zh-TW|32|375d8155377ed38fcd67a964491e8c3000574e876f25936048be08a9eae36e4c45f2afb37e8c423caed13f81f7e5fcdf961a8f9b084b5f70357b74328292df88
af|64|6cd08631f7155feca45260d8ff9ed1144e4ef9a1a513ae902dd0397674bede9e7733ea01fa1c912954b6daba6a63a315daf2e36f13fb76eef86902aa6c7e4deb
ar|64|4fcf2fcf73fceb2cc2ddadc60a71f040d5ec2d3d2982fecb365533a2a0f99dff19e1d6aaa3fc2096a9bc511310f71f8fbc79862bff2a018725492ce1017bc68d
ast|64|1692e2d6328f71b75d156df13844767aaf7387207c425101f101910252bd20b22aaea204cbfbfec567059caaa29809919381fe8aa50d1ac168baad567f9c370c
be|64|ed9770b0d478dcbb010008893509c5bfd4bfa363e8fd61e4b2ecfe5fc647f32cb3663d70964417095d03581bffe31be894c827f587c089d69359a766f6ddf0a0
bg|64|0872d72ee17db7b54702c19b4734401fdd0683611f5d75ae09f1737584fa25978d347d48b661bc51c984a22e4d94f2b73ab493af4f9c037afde84060f459aa3a
br|64|81d70c4549eac6fc2e4a967a99dc5ecda5391b0cc0cfd40e22c753f27c74f03d1278ef7dda73325b15bcb5d649512c38333eab7351382a508c7e6dbffd117bcb
ca|64|2186266a63fde10629c45da2f94b6e806e973df7cbc59c26c3f2150e47e67e60793a61657ab130ddf1832ff56d52dc1cf8ae0295c9e07335750895ceb613e405
cak|64|f069cc799a7274c7f368ac5a422ba2d042d2c8f7ca85f816f3abf8385263a5400049683f34ecdea35217c1a6565c0fab18cee4229e86a9d52b06ae0068f37336
cs|64|3885b0daabede4e85666fa3f6a66531516a3322929ffdd63e6a3e4f02b6b2bd84ca03d33edac524a4c7db072e7950cada3253236e060abcc82252f30078f98eb
cy|64|ace2c83a89c464de8a6818475681196f08c8bcf03409dac322bfcf83d90a42345de3d7d6082261cff0228d6aa09ec16e50cbfd701ed9896087deb78ee9a36fc6
da|64|0bf91bcbec9cef79b12cebfc7fe8ea952d49a5fcf9a932be41d2e20098e56aac974756ab087cdc31afd259659d58c9b9b70d91f827599d640946e672674ea475
de|64|34bdae32a86aa50d54da6f6115391120fcbc9bd9ec9c9e88636f335f6b1885864bf8afad0a897670794ff588edf00c7eaf6291bbf6a0568dd5faf2a5b859b93f
dsb|64|f745fc1d58ac89753b7866e7f352b6062c0884d7a96a4765ca781908fea2c705211aa1d6f5b7e59f2cc44d8445107ccee0c8d0e25089bb8b2f198ba10770a5c3
el|64|3f02aadfa495293625df564ecf68eeeb55cf93228e470dbbcebec4e63edc57d85bd846e8c7c7cdd912ae563dca9f6064474867cc7a5092392765a54bb35a327f
en-CA|64|2bfdb23037bb6b2ef94ebca3a47dcf64cc2c9bbc622961afd2f223d6c654e97a98e3818b88a329c8815fcdd51c486c67ae3f868e831359a1ea614af1b4a26ef2
en-GB|64|a8763f26ce4a5eb8bcd1b8449504959236de1925ff3afed4d7b91c0124179e3eec5523bee83ab016d58a0b23e7cba8e4f96c3f77b1ba7a0e26fbc18d88195754
en-US|64|9cf0c8fef684fb2981f1b476d6fb6c5a8af77b60104c9583c7a24fe6c2e294704bc44f3fee279c6a8898507c54b444b44fe4728a4fb331fa6093e321a05afd63
es-AR|64|cb01831e53044a5ee27eb4579b48224fd413dcffd4c3955ccadf9d0c76ed27042c8485c009e1cb675961b4c52b0002a86eb58e278ab378762c54e84f573aca86
es-ES|64|3384d0074ffd83c2c3a32a98baace14a094c986c101ca30e00fd2101a3d304af9dc8212ebca9fe1d1f7315f9fb5b9fb5b79174e43be6c861f5c7249ab2f47f93
es-MX|64|4eadbe2c04a99f2755240e7c30e2eb096e107eb0307b8f9a36ecb53ebabd0fa326e72fc5d93cfa93cfbc34aa7aba83c5682771cac8e0c8a5ffb63332fc347c91
et|64|c936c4b1b13a82e4b8560fa34c215189591e3da102fc7b6d90be37eddad3e9e4a87ad377c0f6c9e597c42a52c8e231b8db20297cd25e0bb8c003eee61904e15e
eu|64|fbb9059cebcc20eead24d6a26d4df5ebfd43af00c26fa6ea1c3b463617881792b82cb13e8d46df56eb68aab15638aa8ac3f6a65d96adb5b928bd714b6f615b8e
fi|64|5452c63564674b807da249505bb75e447b46e6d4ff8939595247813edd8545ae50b206f60b6756039c7bcf873aa0256e9f9b9bf77c12121c674a2ea4f1ff6f6e
fr|64|2222a74d1e28c281b0364008873b0158ee5eeb8c3abbf9e3d7081e4f8a8b363d6a68c4e98896f0be62863333b3b03f9d355e2334a95739977f899f009a809c7b
fy-NL|64|a1f8f38448478de0526fe8e90ab399a6a9b9e4330381602c4351f961fe6a103b72440cd47bbd4de453b61c93cb72cbc5fd2912f5c7fa12b00c470950b538dfeb
ga-IE|64|b925141b899392719ccfc11bac23a7ecb993e19296cff2b2b2b229bf5079e93bc3227fb0585a878010ecc9527fb805241664bf85564c92e0d3c9d72688c33452
gd|64|b2462cc2dad5709b54be1b155aa45ad3a9c52b6222b1d50f5eb39364ee75e733c8ba2a397b72f5c64970f2b4d3ac7eefe38c2b6492cc73d97e6b0c7e098bceaf
gl|64|a02edb57fe9745058dadf92d86a3904ee9ab338cb012b5c1c1b5a4323c14d2296c1aaaa395eee0d370484a48a411be42cc2f7bfe4c0a6086ab1b0cf537d3ebff
he|64|294311b6a70d42484a4e7b1a14732ab4274d491ed4231cc8c83b22156d32a47b23f3a5455e1c6f8c2858d49c505d8746504c3c006c7b251ed965a0e5424313b3
hr|64|f082bc4a58f95aa456c78141200fe0cde3e40502e9c5d7080aa1d1f6bb48ba842fb26b857cca84f3f1117d736bb934fa764c78269426a8103d31b14c36d47c2d
hsb|64|1a52749cc9f6e0fe450d64bf0d2a84f98f654656dc04d323bdea2b06638e4bd7faf5ead446b66306c7f9690cc6d9cdecf78904f95fcd68924bf22f8b873d017c
hu|64|1af8d02a7e8a4dc1156eca3ddc354fbeb384f2dfd74b5c9dbe096548023b17757ac328923659e2179da5252a6ef2f91dfd17cbddb73ed097e64c5d83b66bbe80
hy-AM|64|bab8d81a05072d8cac25bafb22066403d6860fac3a3512f867dd7d98a8a8ca53157604560a90892179c5bb0154e9cd01a06fbce0fa652b9448fe5d3dcf08da7f
id|64|9fbd799acc8c9b78d3e9917d22ddee6101077185631dc3ed593c77517e4ff7a9ae5535b2d24578ef346516831891d55bc1ced8d028789a57b02cb1efadced76d
is|64|6bc6a7614e4e2dbe4020d027bb0d17beceac7daee0f46c407636e64d243b6efe0175b2346b20ab44195b6c98572fc20068a2ec1783d9eeda3fa2f35faa376cb0
it|64|c0254964b6e46dd00b88533a81b2c030b8f23b798a55a205a273f5ff1dbc3d66ccea8d981611bf1de42d09dfed162131e71bfcac9fcad62028c2b5c4cccc5f1b
ja|64|cf1dcad8ad1b2e1b1ca626ff516025ba10a2a3859c7d83bdf5650a7d5e0946d9f581e6b41d63316efbd0beb5f1f1be845dedb9a6b39754ffd66d1f6ce242f4d0
ka|64|29acca58e2c36cf3b660d312deb586e9ff6bde8f202e655c58277bfbe74c73773649b20056598f1d862ae986ea28c6e01ab788386ce27c7122307be26aa3aafe
kab|64|9fc47596ef2bd85bcd5285189429142f2e2624867db3489e04ac7fc01abfe9f5e9284d320801549556447a42c9901584efd50c9276ca3117cfe7965b94dcbfac
kk|64|0a10c0f33da5a25287949002013786b3858150e9e971359ca7987403f5fc4669b8b69b5dc4de09311c388dd2f8031bfde1eedbb1d2f04cfd9a688200b10e9cc5
ko|64|753a6dac8c79c919c297c00298d64922434434605013004349081c4532e0155f9d57b3e41aa03865473a85d0db5798d9723b0212d67244b4fe2718814b0e784f
lt|64|118cec3642082a18bdfd62654dbc1c4edd6a9be579e9d22481077bd062c3a832d8eb04a6f505d259fc425b50b905aed35cfdfa533393ab912a3679a50e061410
lv|64|0ded042f5b1c4a40ac11b0600e4e71d281bec96d6dd7f604ffbebe892641f4a9ee310f0668e4e492ac3f985e5569be772eeaee1bcce492668e352b122e2e5b09
ms|64|70309d5dfb54e91a7ad2b40996f21402848e2806a852947e9f25c515c95fa9685c5e83b4c4179e27ff1c0227c860e08aee67b3cc59d8ec912b0bb89287332b70
nb-NO|64|706551967705a317d28cf1a8cfa1c46d88be1a1cb35b9452ec43da47153eb52738673bc5b5371330a7a6183ec10acd0756ed1f28357e9fcb22dcf9135e10d138
nl|64|23ba47086018a6015f9e4c53c867ab24248a566c4e8088cd408408878255b494b3f816d8d050e59d80ca2f914ac8a72c566677fbba63840e252342c36d1de070
nn-NO|64|b70fdcc6cbb7d980390f22309e214e0b8718132b8bdb0e8e3fbe1a31731d6944add9762a486565ef15662b58ce7a9e5467135a77c64dc9578c38236666655dfe
pa-IN|64|987d676dce8903d61f6f427d358fe4df321e357080a12ea73bc0af40c39985e1e0a65a5fd33d26047375121426534bdc64ff89f228fd61c158f789f93eccf862
pl|64|a7edfcf8b5cbc560d4630673bcbcac1389e3f45b5f5469efb48ea1331e1a4812ed1db2d171258c7ef90bd7d13fcc020c39b112377c1b3f9e0052c3857bd9f48f
pt-BR|64|e21f7b72af4155544b1259d95495e9c88b641403c853a0df365814278c42e1d08f74c9cfe70e1285a3e752cf0918aa737b6101d2e7741162a29c8e216d9db4a0
pt-PT|64|bc935a865ed53f4edbe2ffe12ebf3a882747ae22c1b96d743933ec41a4ad82247a92843591cfd280f488ca40a5aad76de93dcd9c22af70e2939b884c1aadd31e
rm|64|f036e26d47f2cf0ef8dfefecdf77f26f83646d1902363a22511d6dcdd26192c42763359aef862d5e3f57894512f7b733b82b6e79d54c2965edeec775dd1f5d0d
ro|64|9adae8a2cc40d85e9c4ba3afdba959384c6eff974ac8b0b0b1649088bf8f42d7ec79d4f86e82f801f41036a7aa63fc9481d56bf049b495250bc74768b90a8b99
ru|64|5724f1b687cf1160486649c32d486c08e36c383e69a6bc2ba3650f864807bf6a9beb376bbc49c03acb343fad896d406fe8003900992844c9044e3c5db5425467
sk|64|eab021b4b67b52520371adb9da6eabaecda08ffb18a48aeb7514585bcc9d3e83c3be1f2beeb18741d514b5437f651f48a4b0dd814f9de947362cde0b50315d57
sl|64|45a2db3767bee2ba216145a15980a34cac4366d1eb6ff120e6bc037051f99a53ad4a697c39603b56b2ba0eb937e2adeabdf777404adf8a714db77bbfafcd2802
sq|64|e1b72b51fc9700628ccd720ca865df8f08387cd7f5c0d26a28490bfddf006d76befd88e95d05e0882ab5fcef6efe88f26e63b281a65d495a79d5768fd0b38828
sr|64|f30999abd3e1baea741eb9c178c30eb2d06924dea98ccd7cd67cda44ca31300ced576779338a5d3f547a51004d23d9be079ce6657c1903609c4616588251aaa8
sv-SE|64|ae8a15f3c4dcbe69dc9134da223e44c5fb10953e07387a27e00e2f937889414c03029549708c18e7cc4ac5ab77d9f79e31b63528efa7ac6003bcead50235122d
th|64|c912c0d5c61922e6eb51c34b274f27e11dfd7caeb17dd22cf125986101251c852f03bede0d936f036abdce434a522d8263179bd85b1a867cc4ff6f2ae9b9bd06
tr|64|ab9e514cf5e486ea2bb73ecb5956ad413a0532a499fd810547c258d11e7a3bf373026bb93a62d64e302c03d1c8dc2ba82604b65d6a3115ffa567a5b61744d25b
uk|64|9ef46fbc3372d71e984b5f2adafab696872146211c1be428e38fff275f0ef1b131b75c407e706968d9dfcdd958cb0a1a065d5af6eede6695f798b9753b6ea1c5
uz|64|6131a1cca6e22491cb0f1def56348657a4eec3160528301ceea5366f33a0c79b7e802022ffe3a5c5d729e3d1f1450b75ce51295bf69fef16c7720b3cfa6e08d3
vi|64|944ede850d4b6209e5a99943741e06a013bce574c0a6aa5c5368b12f9496a6bfc2e1a7d814aadd9a53c779d3d3750af4072755563b39c5b028f0d0ac24101a5e
zh-CN|64|a3285789749f5608496ad4f8d077d22c681022fb960b41d65e6975820677bb4eb05d7c10509f41a976a0c362af61fa96ca535d684c508d5ab4085149d0963c68
zh-TW|64|5499f203cb8a82373e656fe67c2ecb1678a8b9561f561a2c8dbfe5aba5d57bc50224e6b5297184e52e889c09c744752d601c0652727f0a02fd09b42e25bab242
tools\chocolateyInstall.ps1
# This is the general install script for Mozilla products (Firefox and Thunderbird).
# This file must be identical for all Choco packages for Mozilla products in this repository.

$ErrorActionPreference = 'Stop'

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

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

$pp = Get-PackageParameters

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

$sa = ""

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

  silentArgs     = "$sa /S"
  validExitCodes = @(0)
}

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

Install-ChocolateyPackage @packageArgs

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

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

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

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

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

$packageName = 'thunderbird'

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

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

    Uninstall-ChocolateyPackage @packageArgs

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

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

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

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

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

  $PackageParameters = Get-PackageParameters

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

  $uninstallPath = GetUninstallPath -product $product

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

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

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

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

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

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

  return $locale
}

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

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

  return $false
}

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

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

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

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

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

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

  return @{
    'Win32' = $checksum32
    'Win64' = $checksum64
  }
}

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

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

Chocolatey Pro provides runtime protection from possible malware.

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

Ground Rules:

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