From c619989c7c8e2c09e50678f6385f2aa1cb010ad8 Mon Sep 17 00:00:00 2001 From: s3lph Date: Tue, 28 Sep 2021 02:47:05 +0200 Subject: [PATCH] Fix compatibility issues with aiosmtpd from Debian repo --- CHANGELOG.md | 14 ++++++++++++++ easywks/lmtpd.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98963e6..5ad8a23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Matemat Changelog + +## Version 0.1.1 + +Fix compatibility issues with aiosmtpd from Debian repo. + +### Changes + + +- Fix compatibility issues with aiosmtpd from Debian repo. + + + + + ## Version 0.1 diff --git a/easywks/lmtpd.py b/easywks/lmtpd.py index 1e6e19f..c4e3063 100644 --- a/easywks/lmtpd.py +++ b/easywks/lmtpd.py @@ -49,6 +49,6 @@ class LmtpdController(Controller): def run_lmtpd(): - controller = LmtpdController(LmtpMailServer(), Config.lmtpd['host'], Config.lmtpd['port']) + controller = LmtpdController(handler=LmtpMailServer(), hostname=Config.lmtpd['host'], port=Config.lmtpd['port']) controller.start() asyncio.get_event_loop().run_forever()