Tom Kavanaugh wrote: > >Is there a way to incorporate this change across all exisitng mail lists? >I looked at commands in mailman/bin but did not find any command that could >do this for me. Or, am I missing something?
First, you want to put DEFAULT_OBSCURE_ADDRESSES = No in mm_cfg.py so new lists will be created with obscure_address = No. Then you have two choices for existing lists, bin/withlist and bin/config_list. config_list is easier to describe so, put the following 1 line in a file obscure_addresses = 0 and run a shell script like #!/bin/sh for list in `bin/list_lists --bare` do bin/config_list -i file $list done -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org Security Policy: http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp
