aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Handlers/Hold.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-11-04Added Date and Message-ID headers to the confirm replyMark Sapiro1-1/+3
message that Mailman adds to the admin notification.
2006-07-30Back port Python 2.5 compatibility changes to Mailman 2.1. Specifically,bwarsaw1-3/+9
- In SecurityManager.py, fix the parsecookie() code to work with Python 2.5 generated cookie text. The latter was changed to be more RFC compliant so it does not output trailing semicolons for each line of cookie text. This broke the splitting rules, so now first split on newlines, then on ';\s*'. This should work across all Python versions. - In Python 2.5, exceptions are new-style, and thus are no longer of ClassType. The instantiation type test in hold_for_approval() was too naive. This one is fixed differently here than in the MM trunk because in Python 2.1, 'type' isn't a type, it's a function and so can't be used as the second argument to isinstance() directly. - Raising strings generates deprecation warnings in Python 2.5. Switch the one weird use of this in Utils.py to use a class exception. Don't call it "quick exit" though because it's probably not.
2005-09-19process(): Patch by Mark Sapiro (slightly modified by Barry) to take preamblesbwarsaw1-2/+6
and epilogues in the calculation of messages sizes.
2005-08-27FSF office has moved to 51 Franklin Street.tkikuchi1-1/+1
2004-10-10I18N autorespondToSender()tkikuchi1-1/+1
2004-02-10hold_for_approval(): Convert to the new pending database interface.bwarsaw1-2/+2
2003-12-26hold_for_approval(): Another part of TK's patch # 865661. Encode thebwarsaw1-2/+7
subject header in the list's preferred character set and make sure it is all on one line, when sent back to the original author.
2003-03-31Backporting from trunkbwarsaw1-2/+4