On 2005/08/05 10:27, Martin Rheumer wrote: > Lets say I was stupid enough to create 40 odd internal lists > and now wanted to set a vacation setting for myself on all > 40 lists. Is there a command line tool / way to say > > vacation [EMAIL PROTECTED] all lists ?
bin/withlist with its '-a' option can be used to set a particular member to nomail status. <http://www.mail-archive.com/[email protected]/msg24479.html> (although in your case, you probably want the except clause to be simply: except NotAMemberError: pass Then do: $ bin/withlist -l -a -r nomail [EMAIL PROTECTED] -- Jim Tittsler http://www.OnJapan.net/ GPG: 0x01159DB6 Python Starship http://Starship.Python.net/crew/jwt/ Mailman IRC irc://irc.freenode.net/#mailman ------------------------------------------------------ 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
