• Home
  • Raw
  • Download

Lines Matching refs:Maildir

19 Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
72 tasks is Maildir; try to avoid using single-file formats such as mbox for
298 :class:`Maildir`
302 .. class:: Maildir(dirname, factory=None, create=True)
304 A subclass of :class:`Mailbox` for mailboxes in Maildir format. Parameter
316 Maildir is a directory-based mailbox format invented for the qmail mail
318 Maildir mailbox are stored in separate files within a common directory
319 structure. This design allows Maildir mailboxes to be accessed and modified
323 Maildir mailboxes contain three subdirectories, namely: :file:`tmp`,
333 :class:`Maildir` without the leading ``'.'``. Each folder is itself a Maildir
339 The Maildir specification requires the use of a colon (``':'``) in certain
341 character in file names, If you wish to use a Maildir-like format on such
347 mailbox.Maildir.colon = '!'
351 :class:`Maildir` instances have all of the methods of :class:`Mailbox` in
362 Return a :class:`Maildir` instance representing the folder whose name is
369 Create a folder whose name is *folder* and return a :class:`Maildir`
383 last 36 hours. The Maildir specification says that mail-reading programs
386 Some :class:`Mailbox` methods implemented by :class:`Maildir` deserve special
404 All changes to Maildir mailboxes are immediately applied, so this method
411 Maildir mailboxes do not support (or require) locking, so these methods do
417 :class:`Maildir` instances do not keep any open files and the underlying
434 Notes on Maildir by its inventor. Includes an updated name-creation scheme and
799 A message with Maildir-specific behaviors. Parameter *message* has the same
811 for Maildir messages are as follows:
855 message complies with the standard Maildir format, the result is the
1559 inbox = mailbox.Maildir('~/Maildir', factory=None)