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/rules/administrivia.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/rules/administrivia.py')
| -rw-r--r-- | mailman/rules/administrivia.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mailman/rules/administrivia.py b/mailman/rules/administrivia.py index 4de4fc61a..26fe1d9b8 100644 --- a/mailman/rules/administrivia.py +++ b/mailman/rules/administrivia.py @@ -64,7 +64,7 @@ class Administrivia: return False # First check the Subject text. lines_to_check = [] - subject = msg.get('subject', '') + subject = str(msg.get('subject', '')) if subject <> '': lines_to_check.append(subject) # Search only the first text/plain subpart of the message. There's |
