summaryrefslogtreecommitdiff
path: root/Mailman/Cgi
Commit message (Collapse)AuthorAgeFilesLines
...
* main(): There was a missing or incorrect format interpolation var forklm1998-07-121-2/+7
| | | | | | the verify.txt message, causing the subscribe script to bomb. I've corrected the field and refined the message a bit, to put in the origin phrase only if it's been discerned.
* The name_pat regex (which was alleged to have been "fixed" on the lastklm1998-07-111-9/+12
| | | | | checkin) would not compile, causing this script to completely fail - it should have been tested!
* Strip out all logging stuff. This will get taken care of by the CGIbwarsaw1998-07-021-21/+0
| | | | driver.
* main(): corrected misplaced 'else' clause in password checking logic -klm1998-07-011-5/+5
| | | | | it was causing a password failure after a user password was satisfactorily verified.
* Add more disgusting global variable references, just to avoidbwarsaw1998-06-231-1/+17
| | | | NameErrors.
* The usualbwarsaw1998-06-191-0/+1
|
* Added a Makefile template for installing in this subdir (instead ofbwarsaw1998-06-191-0/+71
| | | | doing the install in the dir above)
* Convert all module names to their new names. Import all modules frombwarsaw1998-06-195-508/+559
| | | | | | | the Mailman package (using the semi-bogus, but quickly implemented from ... import style). main()-ify, but needed a few bogus global decls
* Convert all module names to their new names. Import all modules frombwarsaw1998-06-191-7/+8
| | | | | the Mailman package (using the semi-bogus, but quickly implemented from ... import style).
* Convert all module names to their new names. Import all modules frombwarsaw1998-06-191-19/+15
| | | | | | | | the Mailman package (using the semi-bogus, but quickly implemented from ... import style). Also, rewrote name_pat to use the most commonly accepted style for regular expressions. I can't see how the old regexp worked!
* Convert all module names to their new names. Import all modules frombwarsaw1998-06-191-11/+14
| | | | | | | the Mailman package (using the semi-bogus, but quickly implemented from ... import style). Sundry "maillist" -> "mailing list"
* Convert all module names to their new names. Import all modules frombwarsaw1998-06-191-3/+3
| | | | | | | | the Mailman package (using the semi-bogus, but quickly implemented from ... import style). NOTE: did *not* main()-ify, nor test since I don't have pipermail installed. These need to happen.
* Convert all module names to their new names. Import all modules frombwarsaw1998-06-191-66/+42
| | | | | | | | | | | the Mailman package (using the semi-bogus, but quickly implemented from ... import style). Moved the TQS LOGIN_PAGE to a templates file Sundry "maillist" -> "mailing list" Fix crypt imports
* Fixed a typo that probably kept it from loading.viega1998-06-161-4/+3
|
* From the error message, and what I've learned about base64, my bestviega1998-06-142-8/+6
| | | | | | | | | guess about the transient errors (ie, some people get them, some people do not) is that sometimes the base64 encoding can cause \n's to get in the string, which the mime stuff will treat as a newline. So I replace \n w/ @ before putting it in the cookie, and do the reverse before checking the cookie. Hopefully we won't hear about this problem again.
* These are the files that used to be in ../cgi, except they no longerviega1998-06-1411-0/+2356
handle logging to an error file, and no longer import paths. Also, any checks for __main__ have been removed.