On 02 October 2001, Kiat Huang said:
> Is there a way through the web interface or other means (say as the
> mailman admin, or a user not root (linux)) that can list all the lists a
> given user is subscribed to?

This works for me as root (using bash):
  cd ~mailman
  for list in lists/* ; do
    ./bin/list_members $list | grep -s $address && echo $list
  done

Any user in group "mailman" should be able to run this as well.  It's
inefficient, but as long as you don't have 100 lists with 10000
subscribers each, it shouldn't be too painful.

        Greg
-- 
Greg Ward - software developer                [EMAIL PROTECTED]
MEMS Exchange                            http://www.mems-exchange.org

------------------------------------------------------
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users

Reply via email to