forked from matta/rubymail
-
Notifications
You must be signed in to change notification settings - Fork 1
/
THANKS
25 lines (17 loc) · 753 Bytes
/
THANKS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
= Thanks to Python's email module for:
- The idea of separating parsing and serialization from the mail
classes themselves.
- A lot of the MIME multipart API.
= Thanks to Perl's MimeTools for:
- Showing me this can all be done in the scripting language (no C
extensions necessary).
- Accessing MIME parts via a File like API (thereby allowing them to
be stored on disk).
= People:
"Yoshinori K. Okuji" <okuji-at-enbug-dot-org>
- Code to parse messages from strings (though since then I did it a
much simpler way).
- Numerous other API suggestions and improvements.
Booker Bense <bbense-at-SLAC-dot-Stanford-dot-EDU>
- For prodding me to implement mbox mailbox parsing (and an initial
implementation). It took me months, but I did it!