Matt Molyneaux

Results 170 comments of Matt Molyneaux

lmtpd now supports binding to IPv6, using the same method as Python3's smtpd

According to Google, that error means you're using Windows. I'm not really familiar with Windows so I can't really help you, but I'd guess that you don't have `salmon` in...

I'm not sure I'll be able to help much, but in case someone else stumbles across this bug report it would be helpful to know the following: - What version...

I'm not sure how you ended up with that import error, Salmon doesn't import docutils at any point. To answer your second question: no, I don't think it does. Although...

I've played around with a test email that has about 17 million lines of `--0`. The result is around 25 seconds of parsing via `email.message_from_file` (Salmon uses threads, so we...

> Would you be willing to patch this upstream to add a maximum limit of 10,000 attachments? Neither of us have any evidence that 10,000 attachments is a problem. 25...

If you're only wanting to forward a message as-is, the original message is preserved in `message.Data`: ``` @route(r"(local)@(domain)", local=r".+", domain=r".+") def FORWARD(message, local=None, domain=None): Relay().deliver(message.Data, To="[email protected]", From="[email protected]") ``` If you've...

Also worth noting that lockfile (a dependency of python-daemon) is marked as deprecated by its author.

@jluttine yes, see #89 and https://pagure.io/python-daemon/issue/18 However, it seems that this commit: https://pagure.io/python-daemon/c/8352cace3ac22090474b40feed9e83f94e9d3e9e might have solved the actual issue.