Webmaster wrote:

>I searched and found some old scripts to clear all of the nomail 
>flags for every user in a mailing list but none of what I discovered 
>work with version 2.1.13 which is what is on my server.  Can someone 
>please point me to a way to clear all the nomail flags for a specific 
>list?  Thanks!


The withlist script at <http://www.msapiro.net/scripts/reset_bounce.py>
(mirrored at
<http://fog.ccsf.cc.ca.us/~msapiro/scripts/reset_bounce.py> will clear
all "nomail by bounce" flags for a list. If you want to also clear
other nomail flags, you could change the first line of

        if mlist.getDeliveryStatus(member) == MemberAdaptor.BYBOUNCE:
            mlist.setDeliveryStatus(member, MemberAdaptor.ENABLED)
            count += 1

in the script to

        if mlist.getDeliveryStatus(member) <> MemberAdaptor.ENABLED:

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