Judy Angel wrote:
>
>I have a list of 6000 users and I wish to change the setting for all 
>subscribers to
>Conceal the member's address
>Acknowledge the member's posting
>I can see how to set it for new members but not existing existing members.


If you have command line access to the Mailman installation, see
<http://www.msapiro.net/scripts/set_unhide.py>.

This withlist script sets all list members to NOT be concealed. It can
be easily changed set all list members to both be concealed and to
have their posts acknowledged by changing the one line

        mlist.setMemberOption(member, mm_cfg.ConcealSubscription, 0)

to the two lines

        mlist.setMemberOption(member, mm_cfg.ConcealSubscription, 1)
        mlist.setMemberOption(member, mm_cfg.AcknowledgePosts, 1)

If you don't have command line access to the Mailman installation, you
could probably modify the web admin screen scraping script at
<http://www.msapiro.net/scripts/mailman-subscribers.py> to do this.
See the existing --unhide option in the script.

-- 
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