aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Cgi/create.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-12-30Corrected and augmented some security log messages.Mark Sapiro1-0/+7
2018-06-17Bump copyright dates.Mark Sapiro1-1/+1
2017-06-05Bumped Copyrights and fixed a bug in prior commit.Mark Sapiro1-3/+3
2017-06-05Defend against CGI requests with multiple values for the same parameter.Mark Sapiro1-17/+17
2016-10-11Further changes to keep domains aligned with virtual list notification emailsJim Popovitch1-3/+2
2016-07-14Catch TypeError from certain defective crafted POST requests.Mark Sapiro1-1/+12
2010-02-27Added a urlhost argument to the MailList.MailList.Create() method toMark Sapiro1-2/+3
allow bin/newlist and the the create CGI to pass urlhost so the host will be correct in the listinfo link on the emptyarchive page. Bug #529100.
2008-11-12Apply Heiko Rommel's patch for hashlib deprecation warnings for bug 293178.Barry Warsaw1-3/+3
I've modified the patch to improve some of the stylistic issues.
2007-11-25Mailman/Defaults.py.inMark Sapiro1-2/+2
Mailman/Utils.py Mailman/htmlformat.py Mailman/Cgi/create.py messages/ja/doc/Defaults.py.in - Added direction ('ltr', 'rtl') to the LC_DESCRIPTIONS table to support the Hebrew translation. messages/he/LC_MESSAGES/mailman.po - Corrected a typo '\b' -> '\n'. messages/zh_CN/LC_MESSAGES/mailman.po - Corrected a typo '\\b' -> '/b'.
2006-08-30CVE-2006-3636. Fixes for various cross-site scripting issues. Discovery bybwarsaw1-7/+18
Moritz Naumann and most of the repair work done by Mark Sapiro (with some additional work by Barry).
2005-12-30A cleansing pass, almost entirely cosmetic. Such things as whitespacebwarsaw1-1/+2
normalization, removal of tabs, copyright year updates to changed files, docstring and comment fixes, and usage of True/False. I also made a pass through the NEWS file. One import was reordered, and after this commit I will move the mmdsr.readme file to README.mmdsr. From my perspective, after that we're ready to go. I will port these changes forward to the trunk.
2005-11-09Make sure the moderate selection is initialized frommsapiro1-3/+9
DEFAULT_DEFAULT_MEMBER_MODERATION and preserved across errors.
2005-08-27FSF office has moved to 51 Franklin Street.tkikuchi1-1/+1
2004-12-30From the NEWS file:bwarsaw1-1/+2
- Added the ability for Mailman generated passwords (both member and list admin) to be more cryptographically secure. See new configuration variables USER_FRIENDLY_PASSWORDS, MEMBER_PASSWORD_LENGTH, and ADMIN_PASSWORD_LENGTH. Also added a new bin/withlist script called reset_pw which can be used to reset all member passwords. Passwords generated by Mailman are now 8 characters by default for members, and 10 characters for list administrators.
2004-10-19[ 874764 ] -admin address is now equiv to -bouncetkikuchi1-3/+3
2004-02-29process_request(): Catch base class of EmailAddressError so eitherbwarsaw1-2/+2
MMBadEmailError or MMHostileAddress will be caught.
2003-11-24process_request(): In response to SF bug # 835870, we now check thebwarsaw1-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.
2003-09-28process_request(), request_creation(): Close cross-site scriptingbwarsaw1-14/+20
exploits found by Ned Dawes. Also, whitespace normalization. Backported from HEAD.