summaryrefslogtreecommitdiff
path: root/bin/find_member (follow)
Commit message (Collapse)AuthorAgeFilesLines
* find_member converted.bwarsaw2006-05-081-184/+0
|
* FSF office has moved. chdcking in for MAIN branch.tkikuchi2005-08-271-1/+1
|
* scanlists(): Fix -w option by repairing a typo. Closes SF bug #710678bwarsaw2003-04-021-6/+6
| | | | | | by Richard Barrett, who also provided the patch. Backport candidate.
* Jon Parise's patch to improve the usage() output for the command linebwarsaw2002-10-211-2/+6
| | | | | | and cron scripts. When code/status == 0, there's no error (it's likely --help output) so send that to stdout. Otherwise, it's an error and the output goes to stderr.
* Update copyright years.bwarsaw2002-03-161-1/+1
|
* Ben Gertzfield's patch to hardcode the path to the python executablebwarsaw2001-09-071-2/+2
| | | | | | | | | | | | | into the script's #! line -- based on --with-python settings, without losing CVS revision history. #! /usr/bin/env python becomes #! @PYTHON@ which gets substituted for in configure.
* All membership related attribute access should use the MemberAdaptorbwarsaw2001-07-191-2/+2
| | | | | | | | | API instead, e.g. GetMembers()/GetDigestMembers() -> getMembers() GetUserSubscribedAddress() -> getMemberCPAddress() GetDeliveryMembers() -> getRegularMemberKeys() GetDigestDeliveryMembers() -> getDigestMemberKeys()
* Start of support for i18n; marking of translatable strings.bwarsaw2000-12-071-14/+14
| | | | | Use extended print statement, string methods, and other Python 2.0 features.
* Make sure all scripts lowercase the list names, since they are casebwarsaw2000-09-111-4/+6
| | | | | | | insensitive. list_lists prints them out using their real name -- not their internal name -- and they should differ only by case. Closes SF bug #113742 and patch #101434.
* Better option parsingbwarsaw2000-06-191-60/+92
| | | | | | Added -w/--owner which scans the owner addresses too Multiple regexps are legal now
* Some meager consistency in handling errors when trying to open thebwarsaw2000-04-041-4/+6
| | | | | | | | | | | | | | | | | | mailing list. In all cases, catch the base exception class MMListError, and output a semi-standard error message which also contains the str() of the actual exception details (is this too much?). Also: config_list: slightly different usage() printing find_member.scanlists(): print a message if a MMListError occurs when opening the mailing list object remove_members: Wrap actual DeleteMember() calls in a try/finally to be sure the list is saved and unlocked should an exception occur. Hmm, should it be all or nothing?
* Update the copyright lines to include the years 1999 & 2000.bwarsaw2000-03-211-1/+1
|
* find_member: new script to search all lists (or a specified subset)bwarsaw1999-08-091-0/+144
for an address matching a regular expression. Very handy when you have a bouncing address subscribed to many lists! Makefile.in: install find_member