Bug 1277: make Maildir use the user-provided factory instead of hard-wiring MaildirMessage.

2.5.2 bugfix candidate.
This commit is contained in:
Andrew M. Kuchling 2008-01-19 20:12:04 +00:00
parent c6fde7293e
commit 15ce880cc8
2 changed files with 18 additions and 1 deletions

View file

@ -315,7 +315,10 @@ class Maildir(Mailbox):
subpath = self._lookup(key)
f = open(os.path.join(self._path, subpath), 'r')
try:
msg = MaildirMessage(f)
if self._factory:
msg = self._factory(f)
else:
msg = MaildirMessage(f)
finally:
f.close()
subdir, name = os.path.split(subpath)