pjrinaldi / wombatmailviewer

Review MBOX, PST, and OST

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Implement MBox Parsing

pjrinaldi opened this issue · comments

Need to implement mbox parsing and display, the same way i do it in mboxviewer for wombatforensics.

detecting if it's mbox. then starting to parse it. need to put the else for the if to let the user know their file isn't a pst/ost or mbox file

working on parsing headers to get the from, date, subject fields for the tablewidget.

parsing headers to populate tablewidget works. will need to expand mailheaders qstringlist as i come across more message headers. also need to work on addressing html to display in the html viewer and when to escape out "<" and "> so non html content between <> is displayed in html mode.

initial libcmime is working, i've got the mbox table msg list display working. need to implement the msg display when a msg is clicked on next.

msg displaying is working for my sample.mbox file, but my other two files won't load msgtable. so need to see what the issue is with cmime.

mbox parsing is working with vmime library. now i just need to test and ensure it is still working.

funcionalized the mime functions so i can re-use the code when parsing eml files next

working