SEGIMAP icon indicating copy to clipboard operation
SEGIMAP copied to clipboard

Port MIME message parsing to nom

Open indiv0 opened this issue 7 years ago • 0 comments

Currently MIME message parsing is done by reading the file to a String and performing String-based operations. This isn't really a viable approach as a MIME message is not guaranteed to be UTF-8 compatible. Additionally, it is better to standardize our parsers on a single approach, rather than several throughout the codebase.

As such, the MIME message parsing needs to be re-written with nom.

indiv0 avatar May 22 '17 23:05 indiv0