Searched refs:Maildir (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_old_mailbox.py | 67 self.mbox = mailbox.Maildir(test_support.TESTFN) 74 self.mbox = mailbox.Maildir(test_support.TESTFN) 84 self.mbox = mailbox.Maildir(test_support.TESTFN) 95 self.mbox = mailbox.Maildir(test_support.TESTFN)
|
D | test_mailbox.py | 499 _factory = lambda self, path, factory=None: mailbox.Maildir(path, factory) 559 box = mailbox.Maildir(self._path, factory=FakeMessage) 567 self._box = mailbox.Maildir(self._path) 578 self._box = mailbox.Maildir(self._path) 580 self._box = mailbox.Maildir(self._path, factory=None) 1972 self.mbox = mailbox.Maildir(test_support.TESTFN) 1980 self.mbox = mailbox.Maildir(test_support.TESTFN) 1990 self.mbox = mailbox.Maildir(test_support.TESTFN) 2001 self.mbox = mailbox.Maildir(test_support.TESTFN)
|
/external/python/cpython2/Doc/library/ |
D | mailbox.rst | 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`, [all …]
|
/external/python/cpython2/Lib/ |
D | mailbox.py | 242 class Maildir(Mailbox): class 430 return Maildir(os.path.join(self._path, '.' + folder), 437 result = Maildir(path, factory=self._factory) 482 Maildir._count, hostname) 488 Maildir._count += 1
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.5.rst | 1405 :class:`mbox`, :class:`MH`, and :class:`Maildir` are used to read mailboxes, and 1415 src = mailbox.Maildir('maildir', factory=None)
|
D | 2.7.rst | 1388 * The :mod:`mailbox` module's :class:`~mailbox.Maildir` class now records the
|
/external/python/cpython2/Misc/ |
D | NEWS | 4435 - Issue #13254: Fix Maildir initialization so that maildir contents 4981 - Issue #11999: fixed sporadic sync failure mailbox.Maildir due to its trying to 7829 - Issue #6896: ``mailbox.Maildir`` now invalidates its internal cache each time 11562 - Bug #1569790: mailbox.py: Maildir.get_folder() and MH.get_folder() 11563 weren't passing the message factory on to newly created Maildir/MH 11566 - Patch #1514543: mailbox.py: In the Maildir class, report errors if
|