Hicks, Robert CTR wrote:

>I have some account that have the proper name and the email address of the 
>user. I would like all my lists to only have the email address of the users. 
>Is there a way to remove all the "Joe Public" proper names?

If you have access to Mailman's command line tools, save the following
script (between the dashed lines) in Mailman's bin/ directory with
name remove_names.py and then run the command

 bin/withlist -l -a -r remove_names

-----------------------------------------------------
def remove_names(mlist):
    if not mlist.Locked():
        mlist.Lock()
    for member in mlist.getMembers():
        mlist.setMemberName(member, u'')
    mlist.Save()
    mlist.Unlock()
-----------------------------------------------------

If you don't have access to do this, you would have to do it manually
through the admin Membership List pages.

-- 
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
http://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: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Reply via email to