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()