Fix compatibility issues with aiosmtpd from Debian repo
This commit is contained in:
parent
70896ec9eb
commit
c619989c7c
2 changed files with 15 additions and 1 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,5 +1,19 @@
|
|||
# Matemat Changelog
|
||||
|
||||
<!-- BEGIN RELEASE v0.1.1 -->
|
||||
## Version 0.1.1
|
||||
|
||||
Fix compatibility issues with aiosmtpd from Debian repo.
|
||||
|
||||
### Changes
|
||||
|
||||
<!-- BEGIN CHANGES 0.1.1 -->
|
||||
- Fix compatibility issues with aiosmtpd from Debian repo.
|
||||
<!-- END CHANGES 0.1.1 -->
|
||||
|
||||
<!-- END RELEASE v0.1.1 -->
|
||||
|
||||
|
||||
<!-- BEGIN RELEASE v0.1 -->
|
||||
## Version 0.1
|
||||
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue