mbox-0.3.4: Read and write standard mailbox files.
Copyright(c) Gershom Bazerman 2009
LicenseBSD 3 Clause
Maintainergershomb@gmail.com
Stabilityexperimental
Safe HaskellSafe-Inferred
LanguageHaskell98

Data.MBox.String

Description

Reads and writes mboxrd files as per http://www.qmail.org/man/man5/mbox.html.

This parser is written to be a streaming parser. Given a lazy source of data and a streaming consumer, you should be able to analyze arbitrary mbox files in constant space.

Synopsis

Documentation

type MBox = [Message] #

data Message #

Constructors

Message 

Fields

Instances

Instances details
Read Message # 
Instance details

Defined in Data.MBox.String

Show Message # 
Instance details

Defined in Data.MBox.String

type Header = (String, String) #

parseMBox :: String -> MBox #

Reads a string as an mbox file.

parseForward :: Message -> Message #

Attempts to retrieve the contents of a forwarded message from an enclosing message.

parseDateHeader :: String -> Maybe UTCTime #

Reads a date header as a UTCTime

showMessage :: Message -> String #

Renders an individual message into a String.

showMBox :: MBox -> String #

Renders an MBox into a String

isID :: Header -> Bool #

Header accessors