Re: [Mailman-Developers] question about scripts.

2003-07-25 Thread Wesley T. Perdue
Mike,

This site has a bit of info:

http://www.list.org/site.html

As well, add the option -h to any of those commands and you'll get verbose usage info.

Finally, you can always check the source; Python is remarkably readable.

Regards,
Wes

At 03:41 PM 7/25/2003 -0500, Mike Lucas wrote:
I was wondering is there is a good website with docs on the verious scripts that come 
with mailman?  The ones I am currently working with are newlist, config_list and 
add_members.  Mostly I am looking for a list of all the command line args for these 
and usage.

Thanks,

Mike


___
Mailman-Developers mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-developers


Re: [Mailman-Developers] Is this a bug? (was semantic error...)

2003-06-04 Thread Wesley T. Perdue
Oliver,

FWIW, I'm running a source-installed Mailman 2.1.2 and source-installed Python 2.2.2 
on a maintained Red Hat 7.1 system, and I haven't seen a single message in my Mailman 
error log.

Regards,
Wes
--
Wes Perdue
IT Manager, Greenfield Networks

At 07:52 PM 6/3/2003 +0200, Oliver Egginger wrote:
So I think (in this case), it's likely rather a mailman/python (2.2.2)
issue than a Mailman/Linux distro topic.

Maybe this is specific to my system, cause the configure scripts will
produce different results on different systems.
But maybe other people see those error messages with Mailman 2.1.2 and
python 2.2.2 too. 




___
Mailman-Developers mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-developers


[Mailman-Developers] modifying mailman's source

2003-06-02 Thread Wesley T. Perdue
All,

I need to call an external script whenever a mailing list's membership changes.  I'd 
like to pass the name of the modified list to my script.

I've spent some time studying the Mailman source, and I think the file I need to 
modify is ~mailman/Mailman/MailList.py.  I think the functions that need to be 
modified are functions ApprovedAddMember, ApprovedDeleteMember, and 
ChangeMemberAddress.  

Here are the two lines that I'd like to add to the above functions:

metacmd= '~mailman/scripts/my-script.pl' + ' ' + self
os.system(metacmd)

Does this look correct?

I'm using Mailman 2.1.2 in Linux.

BTW, my external script is a solution for automatically maintaining nested lists, 
written in Perl.  I'll share it with the world once I get it working.

Thanks,
Wes

--
Wes Perdue
IT Manager, Greenfield Networks


___
Mailman-Developers mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-developers