On 04/24/2015 12:19 AM, Selva Gaja wrote:
> Hi,
> How can I take a all user list from all mailman lists.
> Is there any command? Please help me out.
> 
> I want to all the mailman users in my domain.


To get a list by member, do

 /path/to/mailman/bin/find_member .

The dot at the end is actually a regexp that matches every member. See

 /path/to/mailman/bin/find_member --help

To get a list by list (with dupes), do

for l in `/path/to/mailman/bin/list_lists --bare`; do
  echo Members of list $l
  /path/to/mailman/bin/list_members $l
done


-- 
Mark Sapiro <m...@msapiro.net>        The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan
------------------------------------------------------
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Reply via email to