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

Last updated: June 17,2024

1. Install "python310-aiosmtpd" package

This guide let you learn how to install python310-aiosmtpd on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python310-aiosmtpd

2. Uninstall "python310-aiosmtpd" package

Please follow the step by step instructions below to uninstall python310-aiosmtpd on openSuSE Tumbleweed:

$ sudo zypper remove python310-aiosmtpd

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

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