1998-04-04 03:23:21 -04:00
|
|
|
\section{Standard Module \module{mailbox}}
|
1998-01-13 15:01:57 -04:00
|
|
|
\label{module-mailbox}
|
1997-06-02 18:04:41 -03:00
|
|
|
\stmodindex{mailbox}
|
|
|
|
|
|
|
|
|
|
|
|
This module defines a number of classes that allow easy and uniform
|
1998-03-14 02:48:33 -04:00
|
|
|
access to mail messages in a (\UNIX{}) mailbox.
|
1997-06-02 18:04:41 -03:00
|
|
|
|
1998-03-14 02:48:33 -04:00
|
|
|
\begin{classdesc}{UnixMailbox}{fp}
|
1998-01-13 15:01:57 -04:00
|
|
|
Access a classic \UNIX{}-style mailbox, where all messages are contained
|
1998-02-13 18:17:21 -04:00
|
|
|
in a single file and separated by ``From name time'' lines.
|
|
|
|
The file object \var{fp} points to the mailbox file.
|
1998-03-14 02:48:33 -04:00
|
|
|
\end{classdesc}
|
1997-06-02 18:04:41 -03:00
|
|
|
|
1998-03-14 02:48:33 -04:00
|
|
|
\begin{classdesc}{MmdfMailbox}{fp}
|
1997-06-02 18:04:41 -03:00
|
|
|
Access an MMDF-style mailbox, where all messages are contained
|
|
|
|
in a single file and separated by lines consisting of 4 control-A
|
1998-02-13 18:17:21 -04:00
|
|
|
characters. The file object \var{fp} points to the mailbox file.
|
1998-03-14 02:48:33 -04:00
|
|
|
\end{classdesc}
|
1997-06-02 18:04:41 -03:00
|
|
|
|
1998-03-14 02:48:33 -04:00
|
|
|
\begin{classdesc}{MHMailbox}{dirname}
|
1997-06-02 18:04:41 -03:00
|
|
|
Access an MH mailbox, a directory with each message in a separate
|
1998-02-13 18:17:21 -04:00
|
|
|
file with a numeric name.
|
|
|
|
The name of the mailbox directory is passed in \var{dirname}.
|
1998-03-14 02:48:33 -04:00
|
|
|
\end{classdesc}
|
1997-06-02 18:04:41 -03:00
|
|
|
|
|
|
|
\subsection{Mailbox Objects}
|
1998-03-14 02:48:33 -04:00
|
|
|
\label{mailbox-objects}
|
1997-06-02 18:04:41 -03:00
|
|
|
|
|
|
|
All implementations of Mailbox objects have one externally visible
|
|
|
|
method:
|
|
|
|
|
1998-04-02 14:50:21 -04:00
|
|
|
\begin{methoddesc}[mailbox]{next}{}
|
1998-03-14 02:48:33 -04:00
|
|
|
Return the next message in the mailbox, as a \class{rfc822.Message} object.
|
1997-06-02 18:04:41 -03:00
|
|
|
Depending on the mailbox implementation the \var{fp} attribute of this
|
1997-08-18 12:14:26 -03:00
|
|
|
object may be a true file object or a class instance simulating a file object,
|
|
|
|
taking care of things like message boundaries if multiple mail messages are
|
1997-06-02 18:04:41 -03:00
|
|
|
contained in a single file, etc.
|
1998-04-02 14:50:21 -04:00
|
|
|
\end{methoddesc}
|