Proton Mail Bridge
Silent install package for Proton Mail Bridge
3.22.0-1
Messaging
Messaging
- package: tis-protonmail-bridge
- name: Proton Mail Bridge
- version: 3.22.0-1
- categories: Messaging
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- editor: Proton AG
- licence: opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
- locale: all
- target_os: macos
- impacted_process: proton-bridge
- architecture: all
- signature_date:
- size: 125.38 Mo
- installed_size: 173.99 Mo
- homepage : https://proton.me/fr/mail/bridge
package : tis-protonmail-bridge
version : 3.22.0-1
architecture : all
section : base
priority : optional
name : Proton Mail Bridge
categories : Messaging
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : Proton Mail Bridge is a desktop application that runs in the background, encrypting and decrypting messages as they enter and leave your computer
depends :
conflicts :
maturity : PROD
locale : all
target_os : macos
min_wapt_version : 2.3
sources :
installed_size : 173989655
impacted_process : proton-bridge
description_fr : Proton Mail Bridge est une application de bureau qui fonctionne en arrière-plan et qui crypte et décrypte les messages à mesure qu'ils entrent et sortent de votre ordinateur
description_pl : Proton Mail Bridge to aplikacja działająca w tle, która szyfruje i odszyfrowuje wiadomości przychodzące i wychodzące z komputera użytkownika
description_de : Proton Mail Bridge ist eine Desktop-Anwendung, die im Hintergrund läuft und Nachrichten verschlüsselt und entschlüsselt, während sie auf Ihrem Computer ein- und ausgehen
description_es : Proton Mail Bridge es una aplicación de escritorio que se ejecuta en segundo plano, cifrando y descifrando los mensajes a medida que entran y salen del ordenador
description_pt : O Proton Mail Bridge é uma aplicação de ambiente de trabalho que funciona em segundo plano, encriptando e desencriptando mensagens à medida que estas entram e saem do seu computador
description_it : Proton Mail Bridge è un'applicazione desktop che funziona in background, crittografando e decrittografando i messaggi mentre entrano ed escono dal computer
description_nl : Proton Mail Bridge is een desktopapplicatie die op de achtergrond draait en berichten versleutelt en ontsleutelt terwijl ze je computer binnenkomen en verlaten
description_ru : Proton Mail Bridge - это настольное приложение, которое работает в фоновом режиме, шифруя и расшифровывая сообщения по мере их поступления и отправления с вашего компьютера
audit_schedule :
editor : Proton AG
keywords : email,encrypt
licence : opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
homepage : https://proton.me/fr/mail/bridge
package_uuid : 3e25f692-3185-4b1e-b879-822aff13cfb7
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 4aac9a7519cefa9566998d5662c181f17d6b04008a212b02f93d646f7e7dee51
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-02-14T15:52: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 : QmJlFtOiIuIQO3H922Y+tMop3/+FMZzWC5FeQcATT7lzuu4eu7BCd6u8FfGmqpuUE9OhWl4Y4lSFaWNxogCr1CViazLTwpigV7A2v24nQ4NKIw6yOuxAdS9IF3IZBdhif+sVYiXL6RmGxG0ilX/yn+kyp9TfEncqit0O73n2jz9+YHE+9E4cNDV07qSMKLZYCjmA3QA9wiKkkeNqMxYaVpAF9CnVc0fqhRUzz1FHS/AtdE1YeTkUYxxAnx+21ngtk+oHb06k+qo30yEqirA33/NW1AC7SiCFX/loScTBF2NwGzC5RNvyo1sM1wxfGKAjdXkD2SL6SJi9u44MStZbhw==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("Bridge-Installer.dmg")[0]
install_dmg(bin_name, min_version=control.get_software_version())
def uninstall():
remove_tree("/Applications/proton mail bridge.app")
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
update_dict = {"windows": ".exe", "redhat_based" : ".rpm", "debian_based" : ".deb", "macos": ".dmg"}
api_url = "https://api.github.com/repos/ProtonMail/proton-bridge/releases/latest"
# Get data from API
releases_dict = json.loads(wgets(api_url, proxies=proxies))
dmg_found = False # Flag pour indiquer la découverte d'un fichier .dmg
for release in releases_dict:
if dmg_found:
break
for asset in releases_dict["assets"]:
if asset["browser_download_url"].endswith(".dmg") and update_dict[control.target_os] in asset["browser_download_url"]:
url_download = asset["browser_download_url"]
latest_bin = url_download.split("/")[-1]
version = releases_dict["name"].split(" ")[2].replace("v", "")
dmg_found = True # Mettre à jour le flag pour indiquer qu'un dmg a été trouvé
break
# Deleting binaries
for f in glob.glob("*.dmg"):
if f != latest_bin:
remove_file(f)
# Downloading latest binaries
print("Download URL is: %s" % url_download)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_download, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
79b95bbeb04ba6a55fa860e1d462a3ba702c7f3f544cae4cbf2ecd078679c1fa : Bridge-Installer.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
aad1db85e6bf8bf00345ade2945fe4269a4e9cf9a31a11961302bfee62b5df9b : WAPT/control
4aac9a7519cefa9566998d5662c181f17d6b04008a212b02f93d646f7e7dee51 : WAPT/icon.png
aade56864e9626f0ebbf6ffd2de0fb31c5943e68cc91318b59dbc76aad28acb2 : luti.json
405a2ad6e6ebf49a14f5d39a3a346f4bd01b17e60157e9a563249ae87c7dedd8 : setup.py
2a18c9a3de9abac5fa3ab1a0093c168e00011a6278a4f9dcb8ae6a25a7e5451f : update_package.py