How to convert thunderbird inbox file to eml

4

1

I got a bare Inbox file (that without any extension) from thunferbird that was copied from another machine. I do not have any info about account; only a few more .msf files. I need a way to convert the file to separate eml files. How would i do this?

algorytmus

Posted 2012-02-18T14:17:29.450

Reputation: 162

do you mean inbox file? – N.N. – 2012-02-19T09:01:44.323

Answers

4

The mailbox is in the Inbox file, using the mboxrd format. The format is very simple; all messages are simply concatenated together, with From_ headers added and with existing such lines in the body escaped.

The Inbox file can be given to any "mbox to eml" or "mbox to Maildir" conversion tool, or even to a simple script that splits upon /^From / lines.

Randomly-accessing a mbox mailbox can be very slow when it grows large, so Inbox.msf is a "summary" of the mailbox in the Mork format (which is not much faster).

The .msf files are only useful to Thunderbird and can be discarded otherwise.

user1686

Posted 2012-02-18T14:17:29.450

Reputation: 283 655

3

did you try mbox2eml? There is also other utility from different author with the same name here.

Juhele

Posted 2012-02-18T14:17:29.450

Reputation: 2 297