summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libmailbox.tex
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2003-06-20 22:04:03 (GMT)
committerBarry Warsaw <barry@python.org>2003-06-20 22:04:03 (GMT)
commit47db25278601d3f9bfedba533e1ba90080f2fbf2 (patch)
treed4ded486abd35de95a7543321cb69ce44ddd741d /Doc/lib/libmailbox.tex
parentdc31dc02f77a2c0e3c32593a0d32c5d9547bed13 (diff)
downloadcpython-47db25278601d3f9bfedba533e1ba90080f2fbf2.zip
cpython-47db25278601d3f9bfedba533e1ba90080f2fbf2.tar.gz
cpython-47db25278601d3f9bfedba533e1ba90080f2fbf2.tar.bz2
Add some documentation which describes how to use the email package
instead of rfc822 as the Message factory.
Diffstat (limited to 'Doc/lib/libmailbox.tex')
-rw-r--r--Doc/lib/libmailbox.tex36
1 files changed, 35 insertions, 1 deletions
diff --git a/Doc/lib/libmailbox.tex b/Doc/lib/libmailbox.tex
index f798eb1..94e0784 100644
--- a/Doc/lib/libmailbox.tex
+++ b/Doc/lib/libmailbox.tex
@@ -16,7 +16,7 @@ mailbox file. The optional \var{factory} parameter is a callable that
should create new message objects. \var{factory} is called with one
argument, \var{fp} by the \method{next()} method of the mailbox
object. The default is the \class{rfc822.Message} class (see the
-\refmodule{rfc822} module).
+\refmodule{rfc822} module -- and the note below).
For maximum portability, messages in a \UNIX-style mailbox are
separated by any line that begins exactly with the string \code{'From
@@ -83,6 +83,40 @@ messages start with the EOOH line and end with a line containing only
\class{UnixMailbox} class.
\end{classdesc}
+Note that because the \refmodule{rfc822} module is deprecated, it is
+recommended that you use the \refmodule{email} package to create
+message objects from a mailbox. (The default can't be changed for
+backwards compatibility reasons.) The safest way to do this is with
+bit of code:
+
+\begin{verbatim}
+import email
+import email.Errors
+import mailbox
+
+def msgfactory(fp):
+ try:
+ return email.message_from_file(fp)
+ except email.Errors.MessageParseError:
+ # Don't return None since that will
+ # stop the mailbox iterator
+ return ''
+
+mbox = mailbox.UnixMailbox(fp, msgfactory)
+\end{verbatim}
+
+The above wrapper is defensive against ill-formed MIME messages in the
+mailbox, but you have to be prepared to receive the empty string from
+the mailbox's \function{next()} method. On the other hand, if you
+know your mailbox contains only well-formed MIME messages, you can
+simplify this to:
+
+\begin{verbatim}
+import email
+import mailbox
+
+mbox = mailbox.UnixMailbox(fp, email.message_from_file)
+\end{verbatim}
\begin{seealso}
\seetitle[http://www.qmail.org/man/man5/mbox.html]{mbox -