[Mailman-Users] Disabling passwords
Dan Mick
Dan.Mick at West.Sun.COM
Tue Oct 10 23:14:49 CEST 2000
> Or is there a way to set a password whitout having to go through the
> webinterface.
>
> I have to change the passwords for over a 100 users on 20 lists so some
> sort of command line tool/python script that takes a mailinglist username
> and passwd would come in very handy.
Using withlist, it would be pretty easy to write; the passwords
are stored in a simple array indexed by username.
Of course you have to know a little bit of Python. If you're
desperate I'll hack something up for you. Meanwhile here's the
snippet I have lying around to dump them; stick it in ~mailman
and invoke bin/withlist -r pws.pws <listname>
import sys
fmt = "%-40s\t%s"
def pws(list):
for member in list.members.keys():
print fmt % (member, list.passwords[member])
for member in list.digest_members.keys():
print fmt % (member, list.passwords[member])
sys.exit(0)
vvv kind of a long .sig, isn't it?....
> Kind regards,
> --
> Gerhard den Hollander Phone +31-10.280.1515
> Technical Support Jason Geosystems BV Fax +31-10.280.1511
> (When calling please note: we are in GMT+1)
> gdenhollander at jasongeo.com POBox 1573
> visit us at http://www.jasongeo.com 3000 BN Rotterdam
> "TeamWare" for finding Oil & Gas...The Smart Way The Netherlands
>
> This e-mail and any attachment is/are intended solely for the named
> addressee(s) and may contain information that is confidential and
privileged.
> If you are not the intended recipient, we request that you do not
> disseminate, forward, distribute or copy this e-mail message.
> If you have received this e-mail message in error, please notify us
> immediately by telephone and destroy the original message.
>
> ------------------------------------------------------
> Mailman-Users maillist - Mailman-Users at python.org
> http://www.python.org/mailman/listinfo/mailman-users
More information about the Mailman-Users
mailing list