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

Last updated: July 02,2024

1. Install "python311-aiosmtpd" package

Please follow the instructions below to install python311-aiosmtpd on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python311-aiosmtpd

2. Uninstall "python311-aiosmtpd" package

This tutorial shows how to uninstall python311-aiosmtpd on openSuSE Tumbleweed:

$ sudo zypper remove python311-aiosmtpd

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

Information for package python311-aiosmtpd:
-------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python311-aiosmtpd
Version : 1.4.5-1.1
Arch : noarch
Vendor : openSUSE
Installed Size : 1.3 MiB
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.