Simon Ser
Simon Ser
This would allow us to move the shell implementation in `shell/` (`main.c`, frontends…), while having libmrsh material in `parser/` and `engine/`.
`mrsh_word_append_to(word, buffer)` would write to a buffer. This would allow to optimize when calling `mrsh_word_str` in a loop.
> The application shall quote the following characters if they are to represent themselves: > > | & ; < > ( ) $ ` \ " '
This documents that drivers shouldn't silently ignore unknown attributes. See also [1] and [2]. [1]: https://github.com/intel/media-driver/pull/1176 [2]: https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10104
Previously, creating a message with encoding set to 7bit or 8bit would incorrectly insert extraneous line breaks even if the input data already contained some. It would also not convert...
Quoted-printable lines must have a length limit according to the RFC but some software doesn't do that. This ends up error'ing out in the stdlib's parser. Tentiative fix in https://github.com/emersion/go-message/pull/120...
This package performs operations on buffered MIME messages. Reading a message with this package and writing it back as-is should produce the exact same bytes. Closes: https://github.com/emersion/go-message/issues/79 * * *...
Closes: https://github.com/emersion/go-message/issues/84