tis-em-client
10.3.1567.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.1567.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-20 12:08
- size : 133.34 Mo
- homepage : https://fr.emclient.com/
package : tis-em-client
version : 10.3.1567.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 : 8ed06c53-1b8b-4559-a7e0-0a96eeab54c5
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-20T12:08:36.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 : iekIjCDfYyQrOYoNo2aVt0agwhrGYQa1i69vTAmr90NpytqtIsT3VCPfCpzBcnvXqSmDJuN3PSLyfeM7gmzrgyHKev8yP1ARxy/xZnWquXAidy7x4G47gcvH+PVQRTSY3WIP5URS+oqlFvJiLXTps4SDoK8s7nm9yRh2Z4dG761Ph8QPg3t90/A6RuzCvOiIUzJV7HLPHogSQ6pLmVPM1WNPS021/EENxQ6AwFMNfmcZUHz5xXlf2xF14LV+S1Nts9BdJDSyYNEVHEz1ZoyF8Vle6IMlFmrTO6gUI3PhVwSbz9GK+ZhTDuyeipqvgkGjatTgfMAw06yYHVMz3CvOyg==
# -*- 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
fca91b5824e1e01857ab2f38ee494f38184b03340ea6c188b34486b0926cf195 : WAPT/control
7202b3ad7c292ee6de19e71c0a0d33d3c54ec79cb439aff7152f00c25ef57cca : WAPT/icon.png
a7e1d43732198e59cad030f79dc8d1a5033957cce4d9c17613a93ff03661042e : luti.json
a516f6f8ffa8ac79264181fc0a79fc64a68d1fc33e15f05611100d52ed913a56 : setup.msi
ac4957b2d153fce1a6e6f4650d91cf740e99eb848bc8fd1973af8f826c6621d2 : setup.py
b5e9470e350a20a9f5ab7555bfb49e95325bfd99f1d5a54a93f060f3c150a15a : update_package.py