• Home
  • Raw
  • Download

Lines Matching refs:Maildir

17 Maildir, mbox, MH, Babyl, and MMDF.
71 tasks is Maildir; try to avoid using single-file formats such as mbox for
278 :class:`Maildir`
282 .. class:: Maildir(dirname, factory=rfc822.Message, create=True)
284 A subclass of :class:`Mailbox` for mailboxes in Maildir format. Parameter
292 and that *dirname* is named as such rather than *path*. For a :class:`Maildir`
296 Maildir is a directory-based mailbox format invented for the qmail mail
298 Maildir mailbox are stored in separate files within a common directory
299 structure. This design allows Maildir mailboxes to be accessed and modified
303 Maildir mailboxes contain three subdirectories, namely: :file:`tmp`,
313 :class:`Maildir` without the leading ``'.'``. Each folder is itself a Maildir
319 The Maildir specification requires the use of a colon (``':'``) in certain
321 character in file names, If you wish to use a Maildir-like format on such
327 mailbox.Maildir.colon = '!'
331 :class:`Maildir` instances have all of the methods of :class:`Mailbox` in
342 Return a :class:`Maildir` instance representing the folder whose name is
349 Create a folder whose name is *folder* and return a :class:`Maildir`
363 last 36 hours. The Maildir specification says that mail-reading programs
366 Some :class:`Mailbox` methods implemented by :class:`Maildir` deserve special
384 All changes to Maildir mailboxes are immediately applied, so this method
391 Maildir mailboxes do not support (or require) locking, so these methods do
397 :class:`Maildir` instances do not keep any open files and the underlying
413 Notes on Maildir by its inventor. Includes an updated name-creation scheme and
783 A message with Maildir-specific behaviors. Parameter *message* has the same
795 for Maildir messages are as follows:
839 message complies with the standard Maildir format, the result is the
1534 mailbox class names, except for :class:`Maildir`. For this reason, the new
1535 :class:`Maildir` class defines a :meth:`!next` method and its constructor differs
1672 inbox = mailbox.Maildir('~/Maildir', factory=None)