aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman (unfollow)
Commit message (Collapse)AuthorFilesLines
2003-04-19Backport from the trunk, and catalog regeneration.bwarsaw5-23/+44
2003-04-09Portuguese (pt) translations by Jose Paulo Moitinho de Almeida.bwarsaw1-0/+1
2003-04-07Backporting from trunk.bwarsaw5-66/+92
2003-04-02Backport:bwarsaw1-1/+2
dequeue(): If we can't read a .db file, initialize data to the empty dictionary, since the following test expects to do a has_key() on the value. Closes SF bug #707608.
2003-04-01Bump version number for testing.bwarsaw1-1/+1
2003-04-01__init__(): Jon Parise caught a typo in the conversion to booleans.bwarsaw1-1/+1
2003-03-31Use True/False where appropriate.bwarsaw1-26/+31
2003-03-31Backporting from trunkbwarsaw26-211/+445
2003-03-31Backporting SF patch #683906, add $DESTDIR to install target, bybwarsaw10-25/+35
Ademar de Souza Reis Jr
2003-02-08Bump to 2.1.1bwarsaw1-2/+2
2003-02-08Backporting from the trunk.bwarsaw19-209/+364
2003-01-10Copyright years.bwarsaw2-5/+5
2003-01-10safe_strftime(): Watch out for TypeError coming back from strftime().bwarsaw1-1/+1
2003-01-10Article.__init__(): Watch out for tuples coming back frombwarsaw1-0/+3
message.get_param(). Such beasts are RFC 2231 charsets which need to be converted to unicode.
2003-01-10_set_date(): Watch out for TypeErrors that can come from time.mktime()bwarsaw1-1/+1
2003-01-07Copyright yearsbwarsaw1-4/+4
2003-01-07process(): Ben Gertzfield idea to add "Content-Disposition: inline"bwarsaw1-2/+6
header to the headers and footers parts as a hint to persnickety clients (not mentioning Outlook here) that the text should be displayed inline instead of as attachments. It does no harm so even if it doesn't completely fix the problem it sounds like a good idea.
2003-01-07Copyrightbwarsaw1-4/+4
2003-01-07bulkdeliver(): We've had reports of an IOError (code == 4, interruptedbwarsaw1-1/+1
system call) during the conn.sendmail() call. This just sets the message up to retry later.
2003-01-02_do_remove(): Patch by Jon Parise to fix a bug in the stanza matchingbwarsaw1-3/+3
code which would delete any list with a matching prefix (i.e. "bin/rmlist foo" would also delete the stanza for "foo-one" and "foo-two").
2003-01-02changeMemberAddress(): Rearrange the order in which sub-tasks arebwarsaw1-10/+10
done. First remove the old member, then add the new member. Also fix the setting of user options so that this is done on the newaddress (lowercased). This should avoid MMAlreadyAMember errors when the address changes by case only.
2003-01-02main(): In the change-of-address section, we only want to show thebwarsaw1-3/+5
"you are already using that email address" message if the newaddress matches the case-preserved (subscribed) address. Also, in the set_address section, if cpuser is None, set it to the the user address, since that's what we'll use now as the old address in the ChangeMemberAddress() call. This and related changes should fix problems when the address we're changing to differs for the current address by case only.
2003-01-02Bump the version number.bwarsaw1-2/+2
2003-01-02ChangeMemberAddress(): Don't raise MMAlreadyAMember if we're doing abwarsaw1-13/+4
global change. ApprovedChangeMemberAddress(): Don't worry about trying to reduce the amount of work by testing on isMember(). This doesn't work anyway when we're changing an address for case only. Just do the changeMemberAddress() call and be done with it. Same goes for when deciding whether to do the change in the other lists.