[Mailman-Users] Is there a Command to extract the lists owners?

2011-07-11 Thread Steven Jones
I need to email each list owner to let them know the server will be off line while I upgrade it, so I need their email addresses. regards -- Mailman-Users mailing list Mailman-Users@python.org

Re: [Mailman-Users] Is there a Command to extract the lists owners?

2011-07-11 Thread Odhiambo Washington
On Mon, Jul 11, 2011 at 10:33, Steven Jones steven.jo...@vuw.ac.nz wrote: I need to email each list owner to let them know the server will be off line while I upgrade it, so I need their email addresses. A poor man's way: You just need to know the listname and append -owner to it, like

Re: [Mailman-Users] Is there a Command to extract the lists owners?

2011-07-11 Thread Steff Watkins
I need to email each list owner to let them know the server will be off line while I upgrade it, so I need their email addresses. regards Hi, bin/list_owners will give you a list of the email addresses of all your lists owners, one email addres at a time. If you add the -m option, you

Re: [Mailman-Users] Is there a Command to extract the lists owners?

2011-07-11 Thread Odhiambo Washington
On Mon, Jul 11, 2011 at 12:27, Steff Watkins s.watk...@nhm.ac.uk wrote: I need to email each list owner to let them know the server will be off line while I upgrade it, so I need their email addresses. regards Hi, bin/list_owners will give you a list of the email addresses of all

Re: [Mailman-Users] Is there a Command to extract the lists owners?

2011-07-11 Thread Steff Watkins
-Original Message- From: Odhiambo Washington [mailto:odhia...@gmail.com] Sent: Monday, July 11, 2011 10:37 AM To: Steff Watkins Cc: Mailman Users List Subject: Re: [Mailman-Users] Is there a Command to extract the lists owners? On Mon, Jul 11, 2011 at 12:27, Steff

Re: [Mailman-Users] Is there a Command to extract the lists owners?

2011-07-11 Thread Barry Finkel
On 07/11/11 02:33, Steven Jones wrote: I need to email each list owner to let them know the server will be off line while I upgrade it, so I need their email addresses. I have a Mailman list named mailman-list-owners just for this purpose. I have a cron that is run every two hours to keep

[Mailman-Users] Different Domains on Single Mailman Server

2011-07-11 Thread KC Wise
Inherited a few mailman servers. I was wanting to know if I can combine them into a single server/instance. My issue is that they are not subdomains they are completely different domain names for example: something.org lists.somethingelse.com lists.different2.com Just wanted to make sure

Re: [Mailman-Users] Different Domains on Single Mailman Server

2011-07-11 Thread Mark Sapiro
KC Wise wrote: Inherited a few mailman servers. I was wanting to know if I can combine them into a single server/instance. My issue is that they are not subdomains they are completely different domain names for example: something.org lists.somethingelse.com lists.different2.com Just wanted to

Re: [Mailman-Users] Is there a Command to extract the lists owners?

2011-07-11 Thread Mark Sapiro
Odhiambo Washington wrote: A poor man's way: You just need to know the listname and append -owner to it, like mailman-users-owner. ./bin/list_lists | grep -v '^[0-9]' | awk '{print $1-owner@$domain}' Or ./bin/list_lists --bare | awk '{print $1-owner@$domain}' -- Mark Sapiro m...@msapiro.net

Re: [Mailman-Users] Is there a Command to extract the lists owners?

2011-07-11 Thread Mark Sapiro
Steven Jones wrote: I need to email each list owner to let them know the server will be off line while I upgrade it, so I need their email addresses. There are two commands. bin/list_owners has already been mentioned and there is also bin/list_admins for a somewhat different output format.