summaryrefslogtreecommitdiffstats
path: root/Lib/mailbox.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-12-23 22:05:42 (GMT)
committerGuido van Rossum <guido@python.org>1998-12-23 22:05:42 (GMT)
commit9a4d63730ed3d93a1f059bb10f546609e2290cfb (patch)
tree53f780257a9ceb27ad9f73683dce7359ddb2c9c7 /Lib/mailbox.py
parent99e11315360d700ca7abb251e3a6774de6f46be1 (diff)
downloadcpython-9a4d63730ed3d93a1f059bb10f546609e2290cfb.zip
cpython-9a4d63730ed3d93a1f059bb10f546609e2290cfb.tar.gz
cpython-9a4d63730ed3d93a1f059bb10f546609e2290cfb.tar.bz2
Patch by Mike Meyer:
Add a class to mailbox.py for dealing with qmail directory mailboxes. The test code was extended to notice these being used as well.
Diffstat (limited to 'Lib/mailbox.py')
-rwxr-xr-xLib/mailbox.py39
1 files changed, 35 insertions, 4 deletions
diff --git a/Lib/mailbox.py b/Lib/mailbox.py
index a8f705c..f965b0f 100755
--- a/Lib/mailbox.py
+++ b/Lib/mailbox.py
@@ -155,8 +155,36 @@ class MHMailbox:
del self.boxes[0]
fp = open(os.path.join(self.dirname, fn))
return rfc822.Message(fp)
-
-
+
+class Maildir:
+
+ # Qmail directory mailbox
+
+ def __init__(self, dirname):
+ import string
+ self.dirname = dirname
+ self.boxes = []
+
+ # check for new mail
+ newdir = os.path.join(self.dirname, 'new')
+ for file in os.listdir(newdir):
+ if len(string.split(file, '.')) > 2:
+ self.boxes.append(os.path.join(newdir, file))
+
+ # Now check for current mail in this maildir
+ curdir = os.path.join(self.dirname, 'cur')
+ for file in os.listdir(curdir):
+ if len(string.split(file, '.')) > 2:
+ self.boxes.append(os.path.join(curdir, file))
+
+ def next(self):
+ if not self.boxes:
+ return None
+ fn = self.boxes[0]
+ del self.boxes[0]
+ fp = open(os.path.join(self.dirname, fn))
+ return rfc822.Message(fp)
+
class BabylMailbox(_Mailbox):
def _search_start(self):
@@ -186,7 +214,7 @@ def _test():
args = sys.argv[1:]
if not args:
- for key in 'MAIL', 'LOGNAME', 'USER':
+ for key in 'MAILDIR', 'MAIL', 'LOGNAME', 'USER':
if os.environ.has_key(key):
mbox = os.environ[key]
break
@@ -200,7 +228,10 @@ def _test():
elif not '/' in mbox:
mbox = '/usr/mail/' + mbox
if os.path.isdir(mbox):
- mb = MHMailbox(mbox)
+ if os.path.isdir(os.path.join(mbox, 'cur')):
+ mb = Maildir(mbox)
+ else:
+ mb = MHMailbox(mbox)
else:
fp = open(mbox, 'r')
mb = UnixMailbox(fp)