Less strict mail parsing
I'm using mox/message to parse emails from postfix. Unfortunately, it looks like the mails are being sent with \n rather than \r\n, and so I'm getting BARE NEWLINE parsing errors. Is there any way to accept just \n?
Are these existing messages that you've imported? Or are these coming in over SMTP (from a postfix instance)?
And are you getting the parsing errors when reading messages over IMAP? Or during smtp delivers and/or imports?
These were messages coming from postfix that I was passing to mox parsing via the pipe transport. I’d assumed that postfix would be using CRLF but it turns out that it defaults to \n. 😑
So the error was when reading the email from stdin (which is how the pipe transport works) but it turns out I just needed to find the correct setting.
It looks like there's nothing more to do for this issue, so closing it. Feel free to reopen if there's more to do. Thanks for raising the issue!