-
I think it's because of the cont.stop() in the finally block?
https://github.com/aio-libs/aiosmtpd/blob/330e9efd6e045c2a84bb243bb446e44c2eb4e266/examples/authenticated_relayer/server.py#L86-L89
…
-
I'm using this diff in my local smtp server which works as a proxy for the postfix. The aiosmtpd does not understand some parameters for MAIL FROM and RCPT TO:
```
diff --git a/aiosmtpd/smtp.py b/…
-
https://github.com/aio-libs/aiosmtpd/blob/3ced778177418d8ae47bc3c300879bf59e731f1a/aiosmtpd/handlers.py#L122
Currently forwarding mail in `Proxy` is blocking which will mean the entire server is bl…
-
to be a proper step in the SMTP world relaying messages we should add:
`Received: from by mail.apricot.com with SMTP TLS .. for `
-
I am trying to develop a test email server that should run in a docker container. The docker container is run with --network=host -P; though for unit tests I would like to use --network=none.
I am …
-
Currently aiosmtpd uses `email.message.Message` to represent a received email. Since version 3.6 (I believe) the preferred class according to python documentation is `email.message.EmailMessage`.
M…
-
Using postmark or an equivalent service to receive emails is okay. However postmark has no way to refuse a received email if we do not actually have an account to receive that email. We just drop it o…
-
Hi, i get following errors trying to run your script with windows
Microsoft Windows [Version 6.3.9600]
(c) 2013 Microsoft Corporation. All rights reserved.
C:\Program Files\mailproxy-master>pyt…
-
The python smtpd module has been deprecated. The mailsrv.py module is currently using it.
-
Right now, the [`run.sh`](https://github.com/openscanhub/openscanhub/blob/main/containers/hub/run.sh) script for the `hub` container depends on `smptd` Python module which is no longer available on Fe…