summaryrefslogtreecommitdiff
path: root/modules/mm_security.py
Commit message (Collapse)AuthorAgeFilesLines
* All these files have been moved to the Mailman directory (and some renamed)bwarsaw1998-06-191-96/+0
|
* The site password wasnt working because:viega1998-06-031-1/+1
| | | | | | 1) the password data file was changed to g-w (which is good) 2) the open(...) used "r+" instead of "r" (which is bad) I changed #2...
* Added mm_crypt, which trys to import crypt, and provides a wrapperviega1998-05-301-4/+4
| | | | | | | interface to an md5 digest if the import fails. This way, we don't have to tell people to recompile python if they compiled it out of the box. (since crypt is no longer in by default). mm_security now uses mm_crypt instead of crypt.
* SITE_PW_FILE: Use DATA_DIR as directory to store adm.pw inbwarsaw1998-05-291-1/+1
|
* Calculate site password file location in global scope, using abwarsaw1998-05-261-4/+6
| | | | | different variable from mm_cfg. The file location is stored in SITE_PW_FILE.
* Fixed a typo in the zipcode.viega1998-05-261-2/+2
|
* Added copyright notices to all source files where I am legally entitled to ↵viega1998-05-251-1/+18
| | | | | | | do so. Added a copy of the GNU GPL. Added information about mailman-users in README, and reworded some text in there (made the credits less verbose... perhaps they should move to a credits file?)
* Use new mm_message __delitem__ discipline.klm1998-04-131-2/+2
|
* Preparing to package a distribution - add a module docstring andmailman1998-04-091-0/+5
| | | | __version__ info.
* Added .ExtractApproval() method, which returns the validity of themailman1998-04-021-1/+11
| | | | | 'approved' line password, and removes all 'approved' lines from the message as a side effect. Central to the message-approved processing.
* Change the weird umask (formerly 0700, which left files u-wrx,klm1998-03-301-1/+1
| | | | | | go+rw-x!) for adm.pw to 0022 (u+rw, go+r). I'm a bit shaking about this - think it's right, but seems like the original error is so odd that i may be seeing something incorrectly...
* Handle gracefully user records missing password entries.mailman1998-03-261-2/+5
|
* Initial revisionmailman1998-02-271-0/+59