Remove LMTP Recipient check, leads to trouble with postfix aliasing

This commit is contained in:
s3lph 2021-10-03 04:41:25 +02:00
parent 6947122520
commit d68e826495
3 changed files with 12 additions and 8 deletions

View file

@ -1,5 +1,16 @@
# EasyWKS Changelog
<!-- BEGIN RELEASE v0.1.8 -->
## Version 0.1.8
### Changes
<!-- BEGIN CHANGES 0.1.8 -->
- Remove LMTP Recipient check as well, leads to trouble with postfix aliasing.
<!-- END CHANGES 0.1.8 -->
<!-- END RELEASE v0.1.8 -->
<!-- BEGIN RELEASE v0.1.7 -->
## Version 0.1.7

View file

@ -1,2 +1,2 @@
__version__ = '0.1.7'
__version__ = '0.1.8'

View file

@ -13,13 +13,6 @@ from .types import EasyWksError
class LmtpMailServer:
async def handle_RCPT(self, server, session, envelope, address, rcpt_options):
for domain in Config.domains:
if Config[domain].submission_address == address:
envelope.rcpt_tos.append(address)
return '250 OK'
return '550 Not responsible for this address'
async def handle_DATA(self, server, session, envelope):
message = envelope.content
try: