On 10/10/2017 02:53 AM, Marc Gilliatt wrote: > Hi, > > I've attached screenshots of the lists, and when I go into one of those > lists. That's where I'm seeing the subscribe icon?
Note: the screenshots did not go to the list because the list's content filtering removed them, but Keith and I got them by direct copy and they were what appeared to be a portion of the listinfo/ overview page and a portion of the listinfo page for a particular list. As Keith said, if you scroll to the bottom of the page that begins "About Assets-budget-test" you should see a footer like Assets-budget-test list run by u...@example.com Assets-budget-test administrative interface (requires authorization) Overview of all example.com mailing lists The middle link is a link to the admin interface for the list where you can change things for this list including the owner address which is the u...@example.com address on the first line. Even if you don't see the footer, you can get to the admin interface by changing '/listinfo/' and only that in the URL of that page to '/admin/'. If you have command line access to the server, you can do this more easily from the command line than by visiting each lists admin pages in turn. To visit all the admin pages on the web, it is easier to start with a URL like the one for a single list but ending with '/admin/' which will give a page similar to the listinfo overview but with links to the admin pages. To set the owner for all lists from the command line run this script: #!/bin/sh cd /path/to/mailman/bin f=`mktemp` echo "owner = 'u...@example.com'" > $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 u...@example.com is the address you want to set the owner to. -- 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