diff options
| author | Barry Warsaw | 2008-03-30 00:06:07 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2008-03-30 00:06:07 -0400 |
| commit | 7f440dc39489b32257c35f15ee6f27d90a197cf5 (patch) | |
| tree | a4aaec013ee63253b78cfeb3518e78b1df424a91 /mailman/Archiver/pipermail.py | |
| parent | eecf4b29f2642f30b22ee978fa50d8713bec1a48 (diff) | |
| download | mailman-7f440dc39489b32257c35f15ee6f27d90a197cf5.tar.gz mailman-7f440dc39489b32257c35f15ee6f27d90a197cf5.tar.zst mailman-7f440dc39489b32257c35f15ee6f27d90a197cf5.zip | |
More fixes to get the basic end-to-end delivery mechanisms working.
- Lots of Pipermail work just to get it to play nice with the new apis.
- Fix ARCHIVE_SCRUBBER
- Lots of changes to mailman.app.archiving, especially to provide an
adapter from the new MailingList api to the one expected by
Pipermail (e.g. archive_dir()).
- Add a test of the basic pipermail archiver.
Diffstat (limited to 'mailman/Archiver/pipermail.py')
| -rw-r--r-- | mailman/Archiver/pipermail.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mailman/Archiver/pipermail.py b/mailman/Archiver/pipermail.py index 1483b5c97..a7c4e3a98 100644 --- a/mailman/Archiver/pipermail.py +++ b/mailman/Archiver/pipermail.py @@ -13,13 +13,13 @@ from cStringIO import StringIO from email.Utils import parseaddr, parsedate_tz, mktime_tz, formatdate from string import lowercase -__version__ = '0.10 (Mailman edition)' +__version__ = '0.11 (Mailman edition)' VERSION = __version__ CACHESIZE = 100 # Number of slots in the cache -from Mailman import Errors -from Mailman.Mailbox import ArchiverMailbox -from Mailman.i18n import _ +from mailman import Errors +from mailman.Mailbox import ArchiverMailbox +from mailman.i18n import _ SPACE = ' ' |
