Hello,
I've written code to parse Laurel and Lafite mail folders and
translate them to mbox format. Lafite's format is based on
Laurel's, which specifies that each message begins with a "stamp"
that looks like
*start*
01659 00024 UU_
The two 5-digit numbers are lengths. The final three characters
mean:
- deleted/undeleted (D/U)
- seen/unseen (S/U)
- space (ASCII 32) - believed unused,
described as "any.char" in Lafite source code
In the process I've discovered a number of messages where the
final character is not a space but rather some other character.
In the message sample I've examined, it's one of 'a', 'f', and 'h'.
Can anyone point me to documentation or code that says what those
values mean?
Herb