aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Create(): Take an optional emailhost name and use that to calculatebwarsaw2003-11-241-2/+5
| | | | | the valid postingaddr. If not given (the default), use DEFAULT_EMAIL_HOST as before.
* process_request(): In response to SF bug # 835870, we now check thebwarsaw2003-11-241-5/+12
| | | | | | | | | | calculated host name, and if VIRTUAL_HOST_OVERVIEW is true, that host name must match one of our known virtual hosts. Otherwise we'll refuse to create the list. If VIRTUAL_HOST_OVERVIEW is false, we'll do no checking (meaning the old behavior of being able to create a list with a non-fqdn hostname still exists). Also, pass the email host name into the MailList.Create() call.
* copyright years.bwarsaw2003-11-211-1/+1
|
* _BounceInfo.__init__(), registerBounce(), disableBouncingMember(): Abwarsaw2003-11-211-6/+7
| | | | | | | | fix for SF bug # 846681, where the confirmation cookie emailed in a bounce disabled notification was always out of date. The problem was that we created the cookie at the time of the first bounce. This is very likely more than three days before the time of the last bounce, which is when we should have (and now do) create the cookie.
* enqueue(): Always flush and sync the message file.bwarsaw2003-11-211-1/+3
|
* change_options(): When calling ApprovedAddMember(), pass a meaningfulbwarsaw2003-11-211-2/+3
| | | | value to the whence argument.
* __handlesubscription(): Pass a meaningful whence argument tobwarsaw2003-11-211-1/+1
| | | | ApprovedAddMember().
* ApprovedAddMember(): Add a 'whence' argument which gets passed abwarsaw2003-11-211-5/+8
| | | | | | | | | | | descriptive string explaining where the member got added from. Improves subscription logging. AddMember(): Pass 'remote' to ApprovedAddMember()'s whence argument. ProcessConfirmation(): We know whether the confirmation came from email or via the web, so pass this information to ApprovedAddMember()'s whence argument.
* boilerplatebwarsaw2003-11-201-1/+1
|
* NewRequestsDatabase(): HoldSubscription() now takes 5 arguments; thebwarsaw2003-11-201-1/+2
| | | | user's realname and the user's language were added.
* set_delivery(): Fixed the email command 'set delivery [on|off]' whichbwarsaw2003-11-191-7/+13
| | | | | | was trying to use the setMemberOption() interface. This doesn't work for delivery settings -- it needed to use the setDeliveryStatus() interface.
* main(): Fix for bug #832748, where unsubscribe_policy was beingbwarsaw2003-11-031-4/+24
| | | | | | | ignored for the unsub button on the member login page. Report and original patch by Pasi Sjoholm, modify by Barry. Forward port candidate.
* Bump version string to 2.1.3+bwarsaw2003-11-011-1/+1
|
* Catalan support by Robert Garrigos and Toni Panades.bwarsaw2003-11-011-0/+1
|
* __save(): Flush the file and (depending on SYNC_AFTER_WRITE) fsync itbwarsaw2003-10-101-0/+3
| | | | before closing the config.pck file. Should improve robustness.
* MarshalSwitchboard._ext_write(), ASCIISwitchboard._ext_write():bwarsaw2003-10-101-6/+2
| | | | | Promote SYNC_AFTER_WRITE to a Defaults.py/mm_cfg.py variable after all.
* Promote SYNC_AFTER_WRITE to a Defaults.py/mm_cfg.py variable afterbwarsaw2003-10-101-0/+6
| | | | | all, since we have the same potential problem (and solution) for the MailList config.pck files that we did for the msg.pck files.
* wrap(): Minor code cleaning.bwarsaw2003-10-071-4/+2
|
* Backporting Slovenian support.bwarsaw2003-10-041-0/+1
|
* FormatUsers(): The user portion of the link should honor the settingbwarsaw2003-09-291-9/+10
| | | | of self.obscure_addresses.
* process_request(), request_creation(): Close cross-site scriptingbwarsaw2003-09-281-14/+20
| | | | | | exploits found by Ned Dawes. Also, whitespace normalization. Backported from HEAD.
* MailList.__init__(): When trying to execfile extend.py, we ignorebwarsaw2003-09-281-1/+5
| | | | | | | ENOENT but log all other IOErrors instead of propagating them up. Closes a tiny exploit found by Ned Dawes. Backported from HEAD.
* BDBMemberAdaptor should not make it into a maintenance release.bwarsaw2003-09-261-637/+0
|
* Danish and Euskara/Basquebwarsaw2003-09-221-0/+2
|
* Bump the version to 2.1.3bwarsaw2003-09-221-2/+2
|
* Backporting from the HEAD -- Mailman packagebwarsaw2003-09-226-23/+70
|
* Backporting from the HEAD -- updated archiverbwarsaw2003-09-223-10/+42
|
* Backporting from the HEAD -- updated bouncersbwarsaw2003-09-221-10/+15
|
* Backporting from the HEAD -- updated cgi'sbwarsaw2003-09-223-3/+5
|
* Backporting from the HEAD -- updated u/ibwarsaw2003-09-223-7/+9
|
* Backporting from the HEAD -- updated handlersbwarsaw2003-09-224-7/+11
|
* Backporting from the HEAD -- updated queue runnersbwarsaw2003-09-225-108/+153
|
* This commit was manufactured by cvs2svn to create branch2003-09-222-0/+683
| | | 'Release_2_1-maint'.
* Backporting once again from the trunk.bwarsaw2003-04-221-4/+6
| | | | | I18ners please double check (except Tokio). It's always so painful to resolve conflicts here, I hope I got them right.
* Backporting from the trunk.bwarsaw2003-04-204-113/+151
|
* Getting ready for 2.1.2bwarsaw2003-04-201-2/+2
|
* Backport from the trunk, and catalog regeneration.bwarsaw2003-04-195-23/+44
|
* Portuguese (pt) translations by Jose Paulo Moitinho de Almeida.bwarsaw2003-04-091-0/+1
|
* Backporting from trunk.bwarsaw2003-04-075-66/+92
|
* Backport:bwarsaw2003-04-021-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.
* Bump version number for testing.bwarsaw2003-04-011-1/+1
|
* __init__(): Jon Parise caught a typo in the conversion to booleans.bwarsaw2003-04-011-1/+1
|
* Use True/False where appropriate.bwarsaw2003-03-311-26/+31
|
* Backporting from trunkbwarsaw2003-03-3126-211/+445
|
* Backporting SF patch #683906, add $DESTDIR to install target, bybwarsaw2003-03-3110-25/+35
| | | | Ademar de Souza Reis Jr
* Bump to 2.1.1bwarsaw2003-02-081-2/+2
|
* Backporting from the trunk.bwarsaw2003-02-0819-209/+364
|
* Copyright years.bwarsaw2003-01-102-5/+5
|
* safe_strftime(): Watch out for TypeError coming back from strftime().bwarsaw2003-01-101-1/+1
|
* Article.__init__(): Watch out for tuples coming back frombwarsaw2003-01-101-0/+3
| | | | | message.get_param(). Such beasts are RFC 2231 charsets which need to be converted to unicode.