aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Updates for 2.1.4bwarsaw2003-12-311-7/+9
|
* Today's the day for 2.1.4bwarsaw2003-12-311-1/+1
|
* Prep for 2.1.4 finalbwarsaw2003-12-314-10/+10
|
* Prep for 2.1.4 final.bwarsaw2003-12-311-3/+3
|
* Ready vor 2.1.4? Does is works? Hm. Hm.pheinlein2003-12-311-731/+629
|
* post-Christmas updates from p.georgep_george2003-12-311-1/+1
|
* Ready for 2.1.4.avalon2003-12-301-0/+18
|
* Removing cvs goo, as done by bwarsaw Mon Sep 22 2003.avalon2003-12-301-1/+0
|
* Norwegian catalog ready for 2.1.4. Let's hope it's not too late... :)avalon2003-12-301-57/+37
|
* Some updates before 2.1.4. Now only 297 msgid are untranslated.sawickib2003-12-304-132/+197
|
* Backed out of the CJKCodecs change.bwarsaw2003-12-301-2/+0
|
* Backing out the switch to cjkcodecs. There were too many problemsbwarsaw2003-12-306-8/+14
| | | | | | | | | | with this including - couldn't get correct, backwards compatible, working fixes into Python in time - some controversy over whether cjkcodecs are best for Japanese. As we're running out of time, we'll keep the status quo from Mailman 2.1.3 here.
* Replace CJKCodecs-1.0.tar.gz with cjkcodecs-1.0.2.tar.gz. Remove anbwarsaw2003-12-294-1/+1
| | | | outdated email package. Update cvsignore.
* Updated for cjkcodecs 1.0.2bwarsaw2003-12-291-1/+1
|
* ready for 2.1.4pioppo2003-12-282-83/+79
|
* A few more news itemsbwarsaw2003-12-281-2/+7
|
* Fixed url, given in SF bug # 789501, by Robert Daeley.bwarsaw2003-12-271-2/+2
|
* Another namebwarsaw2003-12-271-0/+1
|
* another bug fixbwarsaw2003-12-271-1/+1
|
* show_pending_subs(): The address in the pending database may be a unicode, butbwarsaw2003-12-271-1/+3
| | | | | it must be ascii. Coerce to an 8-bit string so the bogus u'' doesn't show up. Closes SF 862906.
* News for 2.1.4 (so far).bwarsaw2003-12-271-4/+44
|
* More namesbwarsaw2003-12-271-0/+4
|
* dolist(): Don't move o_tmpl to n_tmpl if the former doesn't exist.bwarsaw2003-12-271-5/+9
|
* show_helds_overview(), show_post_requests(): Another part of TK'sbwarsaw2003-12-271-2/+13
| | | | | patch # 865661. Encode the subject header in the list's preferred character set and make sure it is all on one line.
* hold_for_approval(): Another part of TK's patch # 865661. Encode thebwarsaw2003-12-261-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.
* pending_requests(): Another part of TK's patch # 865661. Makes surebwarsaw2003-12-261-0/+4
| | | | | the user's full name is encoded in the list's charset properly. It also makes sure that the Subject description spans exactly one line.
* oneline(): Another part of TK's patch # 865661. This one adds abwarsaw2003-12-261-0/+15
| | | | | utility function that returns a header in an i18n-safe way such that it is guaranteed to span exactly one line.
* TK's patch # 865661 chunk which replaces JapaneseCodecs-1.4.9 andbwarsaw2003-12-266-16/+13
| | | | KoreanCodecs-2.0.5 with CJKCodecs-1.0.
* Article.__init__(): Provide a default charset if the message doesn'tbwarsaw2003-12-261-3/+7
| | | | | | | have one. Part of TK's patch #865661. __processbody_URLquote(): One chunk of TK's patch # 865661 for improving the i18n of the 'at' substitutions for archives.
* Authenticate(): When authenticating AuthUser, wrap thebwarsaw2003-12-261-35/+40
| | | | | | | | | | | | | | | | | | | | | self.authenticateMember() call in a try/except catching and ignoring NotAMemberErrors. The effect of this is that other authcontexts being check will then proceed as normal. This fixes admin login to the private archives, and non-public rosters. Under the old code, if you tried to get into the private archives w/o entering an email address, but using the admin password, you'd be denied access. WebAuthenticate(): Removed the wrapping of .Authenticate() in try/except catching of NotAMemberError, since this should never percolate out now. Also, use True/False everywhere it's appropriate (but not in the cookie code). Original bug and patch by Stephan Berndts. Closes SF bug # 864676 and SF patch # 864674.
* backporting.tkikuchi2003-12-260-0/+0
|
* This commit was manufactured by cvs2svn to create branch2003-12-261-0/+1270
| | | 'Release_2_1-maint'.
* Christmas updates from p.georgep_george2003-12-251-1179/+840
|
* updatesbwarsaw2003-12-242-3/+5
|
* Update version numbers (2.1.4 is definitely going out before the endbwarsaw2003-12-241-3/+3
| | | | of the year).
* adminy_overview(): Richard Barrett's patch # 828811 to reduce listinfobwarsaw2003-12-241-5/+6
| | | | | | and admin cgi process size by not keeping the entire mlist object alive through a reference in the advertised list. Only the information used in the overview is kept.
* listinfo_overview(): Richard Barrett's patch # 828811 to reducebwarsaw2003-12-241-5/+6
| | | | | | listinfo and admin cgi process size by not keeping the entire mlist object alive through a reference in the advertised list. Only the information used in the overview is kept.
* Updates.bwarsaw2003-12-244-6/+20
|
* Added Richard Barrett's bin/rb-archfix script to reduce Pipermailbwarsaw2003-12-242-2/+4
| | | | archive bloat. Closes SF bug #835332.
* finished_update_article(): Richard Barrett's fix to reduce Pipermailbwarsaw2003-12-241-0/+9
| | | | | | | | | | | | | archive bloat by deleting the html_body attribute on Article objects. Closes SF bug #835332. This is a stub in the base class. _update_thread_index(): Call finished_update_article() when done. store_article(): squirrel away the html_body value when pickling the article. This only reduces bloat on new articles. See bin/rb-archfix to clean up older archives.
* finished_update_article(): Richard Barrett's fix to reduce Pipermailbwarsaw2003-12-241-0/+6
| | | | | | | | archive bloat by deleting the html_body attribute on Article objects. Closes SF bug #835332. This only reduces bloat on new articles. See bin/rb-archfix to clean up older archives.
* SCRIPTS: Add Richard Barrett's script to fix Pipermail archive bloatbwarsaw2003-12-241-1/+1
| | | | | | on existing archives. Closes SF bug #835332. Note, you have to re-run configure to pick up this new script.
* Richard Barrett's script to fix Pipermail archive bloat on existingbwarsaw2003-12-241-0/+108
| | | | archives. Closes SF bug #835332.
* Comment repair.bwarsaw2003-12-221-1/+1
|
* Cosmetic updates.szilardv2003-12-221-2197/+1354
|
* Fix commentbwarsaw2003-12-181-2/+1
|
* uheader(): Added default argument for maxlinelen.bwarsaw2003-12-181-11/+12
| | | | | | | | | | process(): Reworked the way we calculate the List-Id header in the face of i18n descriptions which may need to be quoted (if ASCII and containing RFC 2822 special chars). What we do now is RFC 2047 encode just the description part, if there is one, then use formataddr() to combine that with the email address-like list identification.
* send_i18n_digests(): Configurations can change between the time abwarsaw2003-12-161-1/+6
| | | | | | | | | message is originally received and the time the digest is sent. If the configuration changes by setting ARCHIVE_HTML_SANITIZER to 0, a DiscardMessage exception can occur during the scrubbing. Catch this error. Closes SF #860135 with basic solution by Martin Pool.
* check_privs(): Set the process's supplemental groups to those of thebwarsaw2003-12-141-0/+7
| | | | | | setuid'd user, if os.setgroup() is available (it's not in Python 2.1). Close SF bug #777444 posted by Richard Barrett, identified and solved by Jonas Muerer.
* Additionsbwarsaw2003-12-132-3/+13
|