Re: [Mailman-Users] Add and Removelist from .txt file

2006-07-27 Thread Eric Oye
Thanks Mark, it do help, really thanks for the solution. Anyway, those had involve in the forum, thanks you very much as well -- View this message in context: http://www.nabble.com/Add-and-Removelist-from-.txt-file-tf1996930.html#a5516725 Sent from the Mailman - Users forum at Nabble.com.

Re: [Mailman-Users] Add and Removelist from .txt file

2006-07-26 Thread Mark Sapiro
Eric Oye wrote: > >But wat if i have lots of list in my >server. Is impossible for me to remove the members by entering the list name >one by one. > >bin/remove_members -f /path/to/textfile -n -N listname #!/bin/sh for list in `ls lists` do bin/remove_members -f /path/to/textfile -n -N $list done

Re: [Mailman-Users] Add and Removelist from .txt file

2006-07-26 Thread Catherine Maxwell
Try something like this: bin/remove_members -f /path/to/file --fromall -n -N That will remove members listed in the "/path/to/file" from "all lists" without sending user or admin acknowledgements. Hint1: Backup your lists. Hint2: Don't put your text file inside your /bin directory. You can

Re: [Mailman-Users] Add and Removelist from .txt file

2006-07-26 Thread Eric Oye
Thanks for the help, i had try the remove command you provide. It do help for removing members from list to list. But wat if i have lots of list in my server. Is impossible for me to remove the members by entering the list name one by one. bin/remove_members -f /path/to/textfile -n -N listname

Re: [Mailman-Users] Add and Removelist from .txt file

2006-07-25 Thread Catherine Maxwell
What Brad said is correct. You will find the answer to your question in the /bin directory. You should read the find_member file for how to locate the members that are subscribed to what list and read the add_members and remove_members files to help you construct a command. A simple example for

Re: [Mailman-Users] Add and Removelist from .txt file

2006-07-25 Thread Eric Oye
i know about that command, but it cant help to add or remove the email i written in the text file. Do you have any idea or any command that can retreive those email address i store at the text file and do adding n removing on mailman? Thanks a lot -- View this message in context: http://www.nabb

Re: [Mailman-Users] Add and Removelist from .txt file

2006-07-25 Thread Brad Knowles
At 1:17 AM -0700 2006-07-25, Eric Oye wrote: > Is there any way for me to remove email addresses which compiled in a text > file from all the lists? Is there any command which able to import the email > from text file and remove from Mailman automatically? See FAQ 4.9. There is the find_membe

[Mailman-Users] Add and Removelist from .txt file

2006-07-25 Thread Eric Oye
I have few member lists under Mailman and I came across a situation where I would like to remove quite some members from different lists. What I'm doing now is browse through each list, searching for the particular email address and delete it. This method cost me alot of time. Is there any way