Replies: 1 comment 1 reply
-
Yes, but I wanted to implement something more robust from scratch. Mailparse does not support parsing malformed messages and can handle only a limited number of encodings.
Parser combinators are really nice but in my opinion they are not a good fit for e-mail because it is quite common to find messages that do not fully conform to the RFCs. For instance, many buggy mail clients generate malformed MIME headers and other clients submit messages with LF instead of CRLF (or a combination of both). These are scenarios that mailparse does not support and would be tricky to implement with a parser combinator. The main advantage of |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
All reactions