aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Avoid infinite loop of held message and its notifications.tkikuchi2005-07-041-5/+6
|
* As per Davin McCall, setting owner_request_special is no longer reallybwarsaw2005-07-011-8/+0
| | | | | necessary for Postfix, especially if you set it up for VERP with recipient_delimiter = +
* Updated the link to the "Reply-To munging considered useful" essay.bwarsaw2005-07-011-4/+3
|
* Fix SF BugID 1179487:tkikuchi2005-06-261-3/+14
| | | | | | | | | Although the RFC2231 bug example in the tracker has been solved in mailman-2.1.6, there may be more cases where ToDigest.send_digests() can block regular delivery. I put the send_digests() calling part in try - except clause and leave a message in the error log if something happened in send_digests(). Daily call of cron/senddigests will notify more details to the site administrator.
* Spanish updates by Juan Carlos Rey Anayabwarsaw2005-06-0821-64/+64
|
* Fixes for SF #949117.bwarsaw2005-05-311-11/+20
| | | | | | | | update_qfiles(): Catch and ignore OSErrors when trying to listdir() a non-directory. dequeue(): Catch EOFErrors that can occur if a zero-length qfile is encountered.
* Placeholder for 2.1.7, and a fix.bwarsaw2005-05-311-0/+6
|
* The usual post-release version bump.bwarsaw2005-05-311-3/+3
|
* Updates for 2.1.6 final.bwarsaw2005-05-3096-314/+354
|
* We're a little bit more release candidate than that. :/bwarsaw2005-05-221-1/+1
|
* process(): One more bug fix, though this one should be safe. Under email 2.5,bwarsaw2005-05-221-1/+8
| | | | | | | | | | it is possible for a message to be "not is_multipart()" but to have a None payload. I know of at least one situation where this can happen: you have a Content-Type: multipart/* but there is nothing but two blank lines between the first boundary and the end boundary. Under email 3, you get a string payload but under email 2.5 you get None. Because there's nothing in such parts, they should be safe to ignore.
* Spanish catalog update by Juan Carlos Rey Anayabwarsaw2005-05-201-5/+5
|
* New ack.bwarsaw2005-05-201-0/+1
|
* Missing Spanish templates by Julio A Cartaya.bwarsaw2005-05-209-0/+127
|
* Another ack.bwarsaw2005-05-151-0/+1
|
* We're getting 2.1.6 final out this month, fer sher!bwarsaw2005-05-141-1/+1
|
* Bump to 2.1.6rc4bwarsaw2005-05-145-12/+12
|
* zh_CN (China Chinese) updates from Dai Xiaoguang, who is also added to thebwarsaw2005-05-146-717/+739
| | | | ACKNOWLEDGEMENTS file.
* Updated Brazilian Portuguese translation for Mailman 2.1.6gleydson2005-05-141-13/+12
|
* Updated Brazilian Portuguese translation for Mailman 2.1.6 releasegleydson2005-05-141-65/+158
|
* Chinese (Taiwan) update by Ping Yeh.tkikuchi2005-05-141-1019/+1476
|
* Chinese (China) update.tkikuchi2005-05-1435-191/+244
|
* I finally find out why re.escape() doesn't work properly. '%' should nottkikuchi2005-05-132-11/+12
| | | | | be escaped for it is the insert directive. It was my trial and error in the comments in previous version. Well, I didn't think of '++' ...
* prefix_subject(): Don't double escape the prefix_pattern.bwarsaw2005-05-131-3/+0
|
* Provide a warning about the private archive directory permissions on sharedbwarsaw2005-05-1362-1382/+1134
| | | | | multiuser systems, and provide some information on what can be done about it. Update the install document.
* main(): Honor doprint even if we're not in filetype == 1.bwarsaw2005-05-131-8/+11
|
* Copyright years and whitespace normalization.bwarsaw2005-05-131-4/+3
|
* Copyright years.bwarsaw2005-05-131-1/+1
|
* strip_subject() in HyperArch.pybwarsaw2005-05-133-15/+16
| | | | | | | | | | prefix_subject() in CookHeaders.py When calling re.sub() to substitute the subject prefix, you have to escape the pattern, otherwise prefixes like [C++] cause "multiple repeat" exceptions in re. Also, whitespace normalization and copyright years updates.
* All messages translated, still 51 fuzzy to refine.webdizainro2005-05-121-52/+720
|
* Norwegian catalog, ready for 2.1.6 finalavalon2005-05-091-68/+85
|
* Fix UnicodeDecodeError and UnicodeEncodeError to UnicodeError.tkikuchi2005-05-082-2/+2
| | | | Both are introduced in Python2.3. UnicodeError catches both.
* Chinese translation update.tkikuchi2005-05-0414-188/+412
|
* Another last minute bug fixed.bwarsaw2005-05-021-1/+2
|
* Copyright years.bwarsaw2005-05-021-1/+1
|
* ChangeHTML(): Set umask to 0 while creating the langdir. Fixes SF bugbwarsaw2005-05-021-3/+7
| | | | #1190404
* Set DEFAULT_MAX_DAYS_TO_HOLD to 0 to disable it, since this is a new featurebwarsaw2005-05-021-4/+4
| | | | in a maintenance release.
* More information about max_days_to_hold (i.e. auto-discard).bwarsaw2005-05-021-1/+4
|
* process(): For some reason, the part's payload can be None. Defend againstbwarsaw2005-05-011-6/+7
| | | | trying to call None.splitlines().
* prepare_message(): Fixed typo.bwarsaw2005-05-011-2/+2
|
* bumping to 2.1.6rc3bwarsaw2005-04-293-6/+6
|
* update to email 2.5.6bwarsaw2005-04-292-0/+0
|
* Use email-2.5.6bwarsaw2005-04-291-2/+2
|
* get_content_charset(): This is fixed in email-2.5.6 so remove it from herebwarsaw2005-04-291-19/+1
| | | | because it's better not to have redundant code.
* Add TypeError for possible error when checking charset availablity.tkikuchi2005-04-251-1/+1
|
* I forgot to generate new html. Thanks it was RC.tkikuchi2005-04-222-6/+6
|
* Bumping version 2.1.6rc2tkikuchi2005-04-224-353/+975
|
* NEWS update for Chinese.tkikuchi2005-04-221-3/+6
|
* Brushing up the override function.tkikuchi2005-04-221-4/+13
|
* get_content_charset() should return failobj on error.tkikuchi2005-04-211-0/+9
|