summaryrefslogtreecommitdiff
path: root/Mailman/SecurityManager.py
Commit message (Expand)AuthorAgeFilesLines
* Bite the bullet: rename the Mailman package to mailman.Barry Warsaw2008-02-271-306/+0
* Tweak copyright years.Barry Warsaw2008-02-071-1/+1
* It all started by trying to remove MailList.Create() and use the IListManagerBarry Warsaw2007-08-051-7/+0
* Passwords done right.bwarsaw2007-01-141-6/+6
* Merged revisions 8113-8121 via svnmerge from bwarsaw2006-12-291-52/+13
* Postfix LMTP related brushups.tkikuchi2006-11-261-20/+1
* Fix environ['SCRIPT_NAME'] to match CGI spec.tkikuchi2006-11-131-3/+3
* Repair a problem with cookie paths reported by Tokio when HTTPRunner is usedbwarsaw2006-10-301-16/+38
* More work on the WSGI support. So far, I've tested most of the admin.py linksbwarsaw2006-10-151-10/+5
* Upgrade to email package version 4.0.1. Because email 4.0.1 is onlybwarsaw2006-07-301-7/+8
* Remove most uses of the types module, in favor of isinstance checks againstbwarsaw2006-04-171-3/+2
* - Convert all logging to Python's standard logging module. Get rid of allbwarsaw2006-04-171-6/+8
* Now that Python 2.3 is the minimum requirement for Mailman 2.2:bwarsaw2006-04-151-14/+9
* back porting from 2.1.6tkikuchi2005-08-281-38/+48
* FSF office has moved. chdcking in for MAIN branch.tkikuchi2005-08-271-1/+1
* parsecookie(): Be defensive about bogus cookie data.bwarsaw2003-02-041-2/+6
* CheckCookie(), __checkone(), parsecookie(): A fix for the MM2.0/MM2.1bwarsaw2003-01-311-12/+22
* Updated comments to reflect that NotAMemberError is the one truebwarsaw2002-12-021-3/+3
* Authenticate(): Checking in a change discussed a while ago onbwarsaw2002-08-291-8/+6
* Authenticate(): SF bug # 585776 complains that crypt.crypt() can raisebwarsaw2002-07-241-2/+14
* CheckCookie(): If the SimpleCookie constructor throws a CookieError,bwarsaw2002-01-291-1/+4
* "import Cookie" instead of "from Cookie import SimpleCookie as Cookie"bwarsaw2002-01-111-12/+9
* AuthContextInfo(): If ALLOW_SITE_ADMIN_COOKIES is true, and there is abwarsaw2002-01-061-7/+12
* CheckCookie(): Let's be explicit about using the Cookie.SimpleCookiebwarsaw2001-11-201-6/+19
* AuthContextInfo(): Python 2.x's Cookie.py module is strict about legalbwarsaw2001-10-091-6/+7
* AuthContextInfo(): Python's standard Cookie.py doesn't allow colons inbwarsaw2001-10-041-2/+2
* Use Python's default Cookie.py module instead of our own copy.bwarsaw2001-10-011-1/+1
* MakeCookie(): If the secret isn't a string, raise MMBadUserError.bwarsaw2001-08-161-2/+2
* InitVars(): With the new mixin architecture, InitVars() needs to takebwarsaw2001-07-191-19/+7
* SecurityManager.MakeCookie(): 'MMBadUserError' -> 'Errors.MMBadUserError'twouters2001-07-101-1/+1
* ConfirmUserPassword(): Obsolete; removed.bwarsaw2001-07-031-27/+49
* CheckCookie(): If the authcontext is AuthUser and the `user' argumentbwarsaw2001-06-011-1/+27
* Authenticate(): When sha hex digesting the response, save the resultsbwarsaw2001-05-311-2/+4
* Changes to support the new world order of authentication, usingbwarsaw2001-05-311-61/+150
* WebAuthenticate(): Minor simplification.bwarsaw2001-05-161-3/+3
* ValidAdminPassword(): CheckSiteAdminPassword -> check_global_passwordbwarsaw2001-05-091-2/+2
* ValidAdminPassword(): First, use SHA1 as the default hash, and comparebwarsaw2001-02-151-18/+25
* SetSiteAdminPassword(), CheckSiteAdminPassword(): These are betterbwarsaw2000-10-021-20/+2
* ZapCookie(): add a comment about why expires=0 isn't set here.bwarsaw2000-07-211-0/+1
* Several changes to the cookie management code, to support sessionbwarsaw2000-07-201-13/+29
* Several changes which will hopefully fix the cookie re-authenticationbwarsaw2000-07-191-37/+33
* Update the copyright lines to include the years 1999 & 2000.bwarsaw2000-03-211-1/+1
* MakeCookie(), CheckCookie(): Don't include the client's IP address inbwarsaw1999-12-091-19/+17
* CheckCookie(): Watch out for cookiedata getting truncated to bebwarsaw1999-11-261-4/+6
* Remove some extraneous parens.bwarsaw1999-09-041-11/+9
* ConfirmUserPassword(): It's possible that user is None. Raise abwarsaw1999-07-221-0/+2
* MakeCookie(): Set cookie's "path" based on the list-specific settinghmeland1999-07-221-1/+1
* CheckCookie(): Workaround for IE4.01 (and other pre-5.0 MSIEs?) bug inbwarsaw1999-07-161-2/+17
* SetSiteAdminPassword(): Open data/adm.pw with Utils.open_ex() so webwarsaw1999-07-091-5/+3
* SecurityManager:hmeland1999-06-131-11/+43