tis-em-client
10.3.1503.0-1
eM Client is a full-featured e-mail client with a modern, easy-to-use interface
720 downloads
Download
See build result See VirusTotal scan

- package : tis-em-client
- name : eM Client
- version : 10.3.1503.0-1
- categories :
- maintainer : Amel FRADJ
- editor :
- licence : https://www.emclient.com/pricing
- locale :
- target_os : windows
- impacted_process :
- architecture : all
- signature_date : 2025-04-14 16:04
- size : 133.33 Mo
- homepage : https://fr.emclient.com/
package : tis-em-client
version : 10.3.1503.0-1
architecture : all
section : base
priority : optional
name : eM Client
categories :
maintainer : Amel FRADJ
description : eM Client is a full-featured e-mail client with a modern, easy-to-use interface
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : eM Client est un client de messagerie électronique complet doté d'une interface moderne et facile à utiliser
description_pl : eM Client to w pełni funkcjonalny klient poczty e-mail z nowoczesnym, łatwym w użyciu interfejsem
description_de : eM Client ist ein vollwertiger E-Mail-Client mit einer modernen, benutzerfreundlichen Oberfläche
description_es : eM Client es un completo cliente de correo electrónico con una interfaz moderna y fácil de usar
description_pt : O eM Client é um cliente de correio eletrónico com todas as funcionalidades e uma interface moderna e fácil de utilizar
description_it : eM Client è un client di posta elettronica completo con un'interfaccia moderna e facile da usare
description_nl : eM Client is een e-mailclient met alle functies en een moderne, gebruiksvriendelijke interface
description_ru : eM Client - это полнофункциональный почтовый клиент с современным, простым в использовании интерфейсом
audit_schedule :
editor :
keywords :
licence : https://www.emclient.com/pricing
homepage : https://fr.emclient.com/
package_uuid : f5835545-b617-48e5-a7bb-efc7346f5e9f
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version : 10.0
icon_sha256sum : 7202b3ad7c292ee6de19e71c0a0d33d3c54ec79cb439aff7152f00c25ef57cca
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-04-14T16:04:16.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 : iEj8snc3ulF+tYvbpBPs95HzQ/PSQ+EsI+o2Vq1AzUTOgI3BrVwdjphMlTI/UA0rv/JfkiYcitcyiKuWsBsHOtd4qVBPUVRO+tXS+9kIZYMcOMwZ5nkypev6CTML+aoegrNripC/PT5f7klT1fXFaV+H9nQp7tkIhh92V+j9atEVGc62rlOHpP2CQgQQflG7s9f6bgbRKhBnwCxaiv9CsUcui74VaFdDBJoEjnvkCGTuXyTS4riwoWlKToot4AQmyRvF96Go7pQsmL26lgpOJiFXnMdo/lv5+lG6zd/5xJFIAXNT6MvGyqfaFAakqcXFWMOER8+cfDA/l40HDh7yqA==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
bin_name = glob.glob('setup.msi')[0]
# Installing the software
install_msi_if_needed(bin_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
import zipfile
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
url_base = "https://fr.emclient.com/release-history?&os=win"
response = requests.get(url_base,allow_redirects=True, proxies=proxies)
# Extract the correct div using bs_find_all
divs = bs_find_all(response.text, "h3","class","emc-typo--heading-3 emc-typo--color-orange", proxies=proxies)
msi_file = None
for div in divs:
if msi_file:
break
links = div.find_all('a', href=True)
for link in links:
if link['href'].endswith('.msi'):
href = link['href']
msi_file = href
download_url = msi_file
version = download_url.split('/')[-2].replace("v","")
latest_bin = msi_file.split('/')[-1]
break
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
for f in glob.glob('*.msi'):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
5dd59e1b9a3510fea537f64c12ee8b6c1f946b974b9ca4dc1ad76d986b3eeca7 : WAPT/control
7202b3ad7c292ee6de19e71c0a0d33d3c54ec79cb439aff7152f00c25ef57cca : WAPT/icon.png
d237ab77bc73ac9e3cc4cea5792961b1d70cb24d4e8fe1bc81b6024144ee1647 : luti.json
489a7f35a21d280e0e7033361a081f1cf63b918a6981caf34b0afc72ba0b9e64 : setup.msi
ac4957b2d153fce1a6e6f4650d91cf740e99eb848bc8fd1973af8f826c6621d2 : setup.py
b5e9470e350a20a9f5ab7555bfb49e95325bfd99f1d5a54a93f060f3c150a15a : update_package.py