How to Install and Uninstall python39-aiosmtpd Package on openSuSE Tumbleweed

Last updated: June 06,2024

1. Install "python39-aiosmtpd" package

This is a short guide on how to install python39-aiosmtpd on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python39-aiosmtpd

2. Uninstall "python39-aiosmtpd" package

In this section, we are going to explain the necessary steps to uninstall python39-aiosmtpd on openSuSE Tumbleweed:

$ sudo zypper remove python39-aiosmtpd

3. Information about the python39-aiosmtpd package on openSuSE Tumbleweed

Information for package python39-aiosmtpd:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python39-aiosmtpd
Version : 1.4.5-1.1
Arch : noarch
Vendor : openSUSE
Installed Size : 938.1 KiB
Installed : No
Status : not installed
Source package : python-aiosmtpd-1.4.5-1.1.src
Upstream URL : https://aiosmtpd.readthedocs.io/
Summary : SMTP server based on asyncio
Description :
The Python standard library includes a basic SMTP server in the smtpd module,
based on the old asynchronous libraries asyncore and asynchat. These modules
are quite old and are definitely showing their age; asyncore and asynchat are
difficult APIs to work with, understand, extend, and fix.
With the introduction of the asyncio module in Python 3.4, a much better way of
doing asynchronous I/O is now available. It seems obvious that an asyncio-based
version of the SMTP and related protocols are needed for Python 3. This project
brings together several highly experienced Python developers collaborating on
this reimplementation.
This package provides such an implementation of both the SMTP and LMTP protocols.