Mozilla Thunderbird
Silent install package for Mozilla Thunderbird
144.0.1-68
Messaging
Utilities
Messaging
Utilities
- package: tis-thunderbird
- name: Mozilla Thunderbird
- version: 144.0.1-68
- categories: Messaging,Utilities
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
- editor: Mozilla
- licence: MPL1.1,GPLv2.0,LGPLv2+
- locale: en
- target_os: windows
- impacted_process: thunderbird
- architecture: x64,arm
- signature_date:
- size: 75.80 Mo
- homepage : https://www.thunderbird.net
package : tis-thunderbird
version : 144.0.1-68
architecture : x64,arm
section : base
priority : optional
name : Mozilla Thunderbird
categories : Messaging,Utilities
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : Mozilla Thunderbird is a free and open-source cross-platform email client, news client, RSS, and chat client developed by the Mozilla Foundation
depends :
conflicts :
maturity : PROD
locale : en
target_os : windows
min_wapt_version : 2.0
sources : https://www.thunderbird.net/thunderbird/all/
installed_size :
impacted_process : thunderbird
description_fr : Mozilla Thunderbird est un client de messagerie, libre, distribué gratuitement par la fondation Mozilla
description_pl : Mozilla Thunderbird to darmowy i open-source'owy, wieloplatformowy klient poczty elektronicznej, klient wiadomości, RSS i klient czatu opracowany przez Fundację Mozilla
description_de : Mozilla Thunderbird ist ein kostenloser und quelloffener, plattformübergreifender E-Mail-, News-, RSS- und Chat-Client, der von der Mozilla Foundation entwickelt wurde
description_es : Mozilla Thunderbird es un cliente de correo electrónico multiplataforma, cliente de noticias, RSS y chat gratuito y de código abierto desarrollado por la Fundación Mozilla
description_pt : Mozilla Thunderbird é um cliente de correio electrónico gratuito e de código aberto, cliente de notícias, RSS, e cliente de chat desenvolvido pela Fundação Mozilla
description_it : Mozilla Thunderbird è un client di posta elettronica multipiattaforma, client di notizie, RSS e chat gratuito e open-source sviluppato dalla Mozilla Foundation
description_nl : Mozilla Thunderbird is een gratis en open-source cross-platform e-mail client, nieuws client, RSS, en chat client ontwikkeld door de Mozilla Foundation
description_ru : Mozilla Thunderbird - это бесплатный кросс-платформенный почтовый клиент с открытым исходным кодом, клиент новостей, RSS и чат-клиент, разработанный Mozilla Foundation
audit_schedule :
editor : Mozilla
keywords : mail,messagerie,imap,pop
licence : MPL1.1,GPLv2.0,LGPLv2+
homepage : https://www.thunderbird.net
package_uuid : 4a3b9e85-fe3a-4b25-89c4-3493fe74d2e1
valid_from :
valid_until :
forced_install_on :
changelog : https://www.thunderbird.net/thunderbird/releases/
min_os_version : 10
max_os_version :
icon_sha256sum : 609ac33692bb582fac2b933f063259445f4b76d8d8d02bf49b381811ddb5641e
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-11-07T19:10:39.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : Mus1guQ/LqnuhCsDScvKzxaybPvZB48JLDL+zH5bo0BbRQviMfhnkwlSBNxigYosKrXBnhU74irUtcXOInnABYtVjstEbD5YvahBij2MkuwWNBtVnX+4j2zEW3bzyzScASrR9WjaJhFRe9SD/PCCrBhmUgPWlGBJ10o8Nu1+nKt+T63juJn+CJcTpZibKafcmR2dbkGI0tk3s0QOjRB4WLnuS+xCxQerQCfm160fOsulgCzmgryUTmHCPwOzKMDzbNOlP8IgTk5674yjtY1JULNlZeuBx+oT6hfbq2j7kVOYUPLpFQzBoxo9N+G9ReDzC+4AoouBk66lbHF6Ou6z4A==
# -*- coding: UTF-8 -*-
from setuphelpers import *
import platform
r"""
Installation procedure: https://firefox-source-docs.mozilla.org/browser/installer/windows/installer/FullConfig.html
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
silent_args = "/S /PreventRebootRequired=false /TaskbarShortcut=false /DesktopShortcut=false /StartMenuShortcut=true /MaintenanceService=false /RegisterDefaultAgent=false /RemoveDistributionDir=false /OptionalExtensions=false"
list_lang = ["it", "fr", "en-US", "es-ES", "de"]
policies_path = makepath(programfiles, "Mozilla Thunderbird", "distribution", "policies.json")
def install():
# Initializing variables
package_version = control.get_software_version()
bin_name = glob.glob('*.exe')[0]
# Translating arch
if iswin64():
app_arch = "x64"
arch_to_uninstall = "x86"
elif iswinarm():
app_arch = "arm"
arch_to_uninstall = None
else:
app_arch = "x86"
arch_to_uninstall = "x64"
# Translating locale
for lang in list_lang:
if control.locale in lang:
locale = lang
app_uninstallkey = "Mozilla Thunderbird %s (%s %s)" % (package_version, app_arch, locale)
# Uninstalling others versions
for uninstall in installed_softwares(name="Mozilla Thunderbird"):
if arch_to_uninstall and arch_to_uninstall in uninstall["name"]:
print("Removing: %s" % (uninstall["name"]))
killalltasks(ensure_list(control.impacted_process))
run(uninstall_cmd(uninstall["key"]))
wait_uninstallkey_absent(uninstall["key"])
# Installing the package
print("Installing: %s" % bin_name)
install_exe_if_needed(bin_name, silentflags=silent_args, key=app_uninstallkey, min_version=package_version)
# Making sure that Mozilla Maintenance Service is not installed
for uninstall in installed_softwares(name="Mozilla Maintenance Service"):
print("Removing: %s" % (uninstall["name"]))
run(uninstall_cmd(uninstall["key"]))
# Adding Minimal configuration for Thunderbird you may use the package "tis-config-thunderbird" for further options
if not isfile(policies_path):
registry_set(HKEY_LOCAL_MACHINE, r"SOFTWARE\Policies\Mozilla\Thunderbird", "DisableAppUpdate", 1, REG_DWORD)
registry_set(HKEY_LOCAL_MACHINE, r"SOFTWARE\Policies\Mozilla\Thunderbird", "DisableTelemetry", 1, REG_DWORD)
def iswinarm():
return platform.machine() =='ARM64'
# -*- coding: UTF-8 -*-
from setuphelpers import *
import requests
import json
import waptlicences
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
arch = {"x64,arm": "win64", "x86": "win"}
# Downloading
lang = control.locale
# Translating locale
if "en" in lang:
lang = "en-US"
if "es" in lang:
lang = "es-ES"
download_url = requests.head(
"https://download.mozilla.org/?product=thunderbird-latest&os=%s&lang=%s" % (arch[control.architecture], lang), proxies=proxies
).headers["Location"]
latest_bin = download_url.rsplit("/", 1)[1].replace("%20", "_")
version = download_url.split("/")[-4]
datajson = json.loads(wgets("https://product-details.mozilla.org/1.0/thunderbird_versions.json", proxies=proxies))
version_from_api = datajson.get("LATEST_THUNDERBIRD_VERSION_NEXT", "")
if not version_from_api:
version_from_api = datajson["LATEST_THUNDERBIRD_VERSION"]
download_url = download_url.replace(version, version_from_api)
version = version_from_api.replace('esr','')
latest_bin = download_url.rsplit("/", 1)[1].replace("%20", "_")
latest_bin_extension = latest_bin.rsplit('.', 1)[-1]
# Downloading latest binaries
print(f"Latest {app_name} version is: {version}")
print(f"Download URL is: {download_url}")
if not isfile(latest_bin):
print(f"Downloading: {latest_bin}")
wget(download_url, latest_bin, proxies=proxies)
else:
print(f"Binary is present: {latest_bin}")
expected_issuer = 'Mozilla Corporation'
sign_name = waptlicences.check_msi_signature(latest_bin)[0]
if sign_name != expected_issuer:
error('Bad issuer %s != %s ' % (sign_name,expected_issuer))
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
package_updated = True
else:
print(f"Software version up-to-date ({Version(version)})")
for f in glob.glob(f'*.{latest_bin_extension}'):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
9ba06a0740121f260870b5092dc0df6abf6e3bc6e5c59f727b0a9b8fc01a5fe8 : Thunderbird_Setup_144.0.1.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
4830b74b8dc5de841b72a5d6fa22fbc1a4fdbf25092af65847be50abb71c1735 : WAPT/control
609ac33692bb582fac2b933f063259445f4b76d8d8d02bf49b381811ddb5641e : WAPT/icon.png
4f8593943dc0be2d5be3e7099407d29d4978c76526ff2da65cd97a00c0f43ab5 : luti.json
feb6ec641745500f023359a9ad1fa7ac8e14c2200eb78f667646dbf6cc5adadb : setup.py
b81f4eae14b2a2d853800e012d6cedc290249514ab353cd7ab4c01031ed0f4b7 : update_package.py