On 10/06/2013 02:28 PM, Ron Guerin wrote:
> Is there a script that removes a member from the banned list, sort of
> the "undo" for http://www.msapiro.net/scripts/add_banned.py ?


You could always modify that script by changing the line

    mlist.ban_list.append(address)

to the following two lines

    if address in mlist.ban_list:
        mlist.ban_list.remove(address)

You could also change its name, but that isn't mandatory.

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

Reply via email to