- Drop the
parsec2read
function.Read
is not supposed to be defined manually, really. It's supposed to be a dual to the derivedShow
instance. - Drop the Rfc2821 module. This code is not generic enough to be useful, really. I use it in Postmaster, and there it will live henceforth.
caseString
no longer returns a string; it just returns()
.- Make use of
DayOfWeek
type from newtime
library. - Drop the obsolete dependency on
mtl
.
- Re-write code to use the modern
time
library rather thanold-time
. - rfc2821: drop the entire smtp FSM stuff
- hsemail.cabal: drop unnecessary build-depends
- Drop support for GHC versions prior to 7.10.x.
- Import Data.Monoid to fix build with GHC 7.8.x.
- Ensure that
body
consumes remaining input. - Refrain from parsing body.
- rfc2822: allow 8 bit characters is message bodys
- move the project to github
- rfc2822: support obsolete local_part syntax
- rfc2822: support obsolete domain syntax
- rfc2822: fixed typo in the parser for domain literals
- rfc2822: support obsolete quoted-pair syntax
- Greatly extend the test suite.
- rfc2822: fix
return_path
parser - rfc2822: improve documentation (especially
subject
,comments
)
- rfc2822: fix infinite recursion between
day
andobs_day
word
parser failed for quoted string prefixed by ws
- Updated Gero's e-mail address.
- Fixed plenty of GHC and HLint warnings.
- rfc2822: derive
Show
for newGenericMessage
type
Message
is now usable withByteString
or other types as body.
- Initial version.