On 10/11/2017 12:51 AM, Marc Gilliatt wrote: > I did click on the middle link, and it took me to the "List Administrator > Password" page. Is it a simple process of resetting that password?
As I said at <https://mail.python.org/pipermail/mailman-users/2017-October/082567.html>, > Once there, you need to authenticate with either the list's admin > password or the site password if there is one. See > <https://wiki.list.org/x/4030543>. which has info on resetting the password and setting a site password. > Also, that script you have given me, can that reset the owner's email for all > the lists? And thank you for the help you have shown me, I truly appreciate > it. ... > > To set the owner for all lists from the command line run this script: ^^^ The for loop does all lists. > > #!/bin/sh > cd /path/to/mailman/bin > f=`mktemp` > echo "owner = '[email protected]'" > $f > for l in `./list_lists --bare`; do > ./config_list -i $f $l > done > rm $f > > where /path/to/mailman/bin is the path to Mailman's bin/ directory and > [email protected] is the address you want to set the owner to. -- 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] 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
