summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Explicitly add another Postfix-lookalike contender, 'SMTP_Gateway'. Closestwouters2003-03-121-4/+5
| | | | SF patch #521124, Bouncer for SMTP_Gateway, by Martin Pool.
* Handle letters (e.g. as in "b1") in email.__version__bwarsaw2003-03-121-5/+7
|
* usage(): Added -h / --help text.bwarsaw2003-03-111-7/+44
| | | | | | pending_requests(): The list of pending texts could contain a mixture of Unicode, ASCII 8-bit strings, and non-ASCII 8-bit strings. We must convert all these to Unicode before joining them.
* And another bug/patcher.twouters2003-03-111-0/+1
|
* When receiving an empty mail (no results and no unprocessed lines, buttwouters2003-03-111-0/+6
| | | | | | possibly 'ignored' lines, if a lot of 'em were blank) on a command-handler address, inform the user that the mail was empty, and how to get help. Based on SF patch #522080, Respond sensibly to blank -request email, by Seb Wills.
* More fixes for "funny" characters in real names.bwarsaw2003-03-111-7/+15
|
* Copyright yearsbwarsaw2003-03-111-1/+1
|
* Minor tweaksbwarsaw2003-03-111-3/+3
|
* Add the email address just subscribed to the variables usable intwouters2003-03-111-0/+1
| | | | | | | | subscribeack.txt, as 'user' (like userpass.txt already has.) This allows you to write subscribeack.txt's that go like: You subscribed using the email address %(user)s. If you wish to change this, please visit ... [etc]
* Acknowledge Bert "Happy mailman day" Hubert.twouters2003-03-111-0/+1
|
* Install procedure clarifications: the mailman list must be created beforetwouters2003-03-111-13/+14
| | | | | | | | | running 'mailmanctl start', and really should be created before the cronjobs are added as well. Also note that the mailman user must be in the mailman group. Closes a patch mailed to mailman-developers by Bert Hubert (who really should have known better than to mail patches ;)
* Bugreporter/patchsubmittor added.twouters2003-03-111-0/+1
|
* Not sure if this is at all useful still, as it seems to have contained atwouters2003-03-111-1/+1
| | | | | typo since it was checked in, but here it is, fixed. Closes SF patch #671294 by John Dennis.
* Update copyright yearsbwarsaw2003-03-1121-21/+21
|
* New namesbwarsaw2003-03-111-1/+2
|
* While checking and re-checking the DESTDIR patch, I noticed this Makefiletwouters2003-03-111-1/+1
| | | | | | | | ran chmod before chown... It really shouldn't, since chmod'ing first opens up a security vulnerability, and chown can remove setuid bits. I'm also somewhat confused about the 'install' target installing the CGI executables and setting them g+s, and the 'finish' target chowning them and setting them u+s, but I left that part alone.
* SF patch #683906, add $DESTDIR to install target, by Ademar de Souza Reistwouters2003-03-1121-53/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Jr, after much checking and rechecking (and some massaging) by me. Checking in now before I fall asleep and forget what all this was for. This patch adds the ability to 'make DESTDIR=/some/dir/tree install' that doesn't influence the paths stored in e.g. Defaults.py at all, which is of good use for various package managers. It is not all that package managers must do, however! Running make install with DESTDIR set means bin/update is never run, and mm_cfg.py is always written; package managers should make sure the appropriate post-installation is done, and that mm_cfg.py is treated as a config file. This patch inadvertently fixes some bogus whitespace: 8-spaces where surrounding code used tabs. The difference was harmless because the 8-spaces were used inside shell-continued-oneliners, but it is confusing and could lead to future harm. I'm too tired to make those two or three changes in a separate checkin, sorry. This patch also assumes the various packages that are installed using distutils do not record (or rather, use) their installation paths anywhere, but this seems to hold true at least for the moment. Also, I've done so many slow cvs diff's, I'm wondering when we'll switch to Subversion. Unfortunately, I've also done so many 'cvs diff -c > file; patch -p0 -R < file's to switch back and forth between patches and change sets, I'm wondering when we'll switch to Aegis as well. :-P
* whitespace normalizationbwarsaw2003-03-101-3/+3
|
* copyright yearsbwarsaw2003-03-101-1/+1
|
* Add Message-Id to (some) logmessages. SF patch #673294, Add message-id totwouters2003-03-102-3/+5
| | | | more log messages, minus an i18nization of 'n/a'.
* Typo fix, closes SF patch #700537, Small typo in templates/en/options.html.twouters2003-03-101-2/+2
| | | | | | Changes to translated versions are very unlikely to be necessary :) 2.1 backport candidate.
* Typo fix in documentation. Closes SF patch #700538, Small typo intwouters2003-03-101-1/+1
| | | | | | Mailman/cmd_confirm.py (but doesn't really use it :) 2.1 backport candidate.
* Add information on recipient_delimiter and owner_request_special.bwarsaw2003-03-071-1/+11
|
* *** empty log message ***pheinlein2003-03-062-2/+2
|
* _badchars: Do not allow email addresses that have 8-bit characters inbwarsaw2003-03-061-1/+1
| | | | them. Note this does /not/ check the realnames, just the addresses.
* RFC 3464 obsoletes 1894 for the DSN standard.bwarsaw2003-03-021-5/+9
|
* __init__(): Don't call out to extend.py if name is None. This will bebwarsaw2003-02-241-7/+9
| | | | | the case when creating the mailing list, in which case fullpath() will be None so we won't be able to locate the list directory.
* *** empty log message ***pheinlein2003-02-242-50/+27
|
* Application of SF patch # 690448 by Tokio Kikuchi, closing SF bug #bwarsaw2003-02-241-5/+15
| | | | | | | | | | | | | 677668. Specifically, ApprovedAddMember(): Make sure the admin notification is i18n safe by temporarily setting the language to the list's preferred language, and str-ifying the full name to the list's language, replacing any wacky characters. :) DeleteMember(): Set admin_notify default value to None instead of 0, so that the list's admin_notify_mchanges takes precedence in most cases.
* __init__(): Call the extension mechanism before attempting to lock thebwarsaw2003-02-241-13/+13
| | | | database.
* Add test_smtpbwarsaw2003-02-231-5/+5
|
* Move some tests (empty) to test_smtp.pybwarsaw2003-02-231-12/+1
|
* Updatesbwarsaw2003-02-231-9/+10
|
* prefix_subject(): Capture the no-subject header before we decode it.bwarsaw2003-02-231-2/+2
|
* Update all testsbwarsaw2003-02-231-63/+32
|
* Updates for changes inclusive of Mailman 2.1.1.bwarsaw2003-02-211-9/+21
|
* memberCount(): We don't need this yet.bwarsaw2003-02-200-0/+0
| | | | | getMembers(), getRegularMemberKeys(), getDigestMemberKeys(): These must return true lists, not iterators, currently.
* intermediatebwarsaw2003-02-201-6/+5
|
* A MemberAdaptor based on BerkeleyDB and PyBSDDB.bwarsaw2003-02-201-0/+639
|
* getMemberLanguage(): Check the language retrieved from the member'sbwarsaw2003-02-201-4/+7
| | | | | | | | | | record and if it isn't in the mailing list's list of available languages, return the list's preferred language. This should go a long way towards fixing problems where a user's preferred language is disabled. addNewMember(): Use a slightly more efficient check of the address's membership.
* There's no such error as NotImplemented.bwarsaw2003-02-201-33/+32
|
* Updates of Czech catalogs to reflect changes in the source code.qdanohnesorg2003-02-192-46/+26
|
* A couple of fixes as identified by Rostyk Ivantsiv, but mostlybwarsaw2003-02-191-5/+6
| | | | | | | | | untested. Whitespace normalization, along with an indentation fix. chown() call still used MAILMAN_GID but that variable is gone now. Instead, use grp.getgrnam() to get the gid from MAILMAN_GROUP.
* Revise for 2.1.1tkikuchi2003-02-141-41/+71
|
* change_options(): Use digest_is_default for the default massbwarsaw2003-02-111-1/+1
| | | | subscription delivery mode. Patch by Todd (Freedom Lover).
* Updates.bwarsaw2003-02-1133-733/+766
|
* Bump version number.bwarsaw2003-02-111-2/+2
|
* Update.avalon2003-02-102-9/+5
|
* Just some fixes.pheinlein2003-02-102-4/+4
|
* Add news from 2.1.1bwarsaw2003-02-081-1/+13
|