Re: [Mailman-Users] Mailman current version?

2009-11-21 Thread LuKreme
On Nov 19, 2009, at 12:58, Barry Warsaw wrote: or more radically, as a separate project that talks to the API). Ooo, that sound like a great idea. -- Mailman-Users mailing list Mailman-Users@python.org http://mail.python.org/mailman/listinf

Re: [Mailman-Users] cannot read moderated posts on iPhone

2009-11-21 Thread Mark Sapiro
Debbie Karimotowrote: >I had previously been able to easily read posts requiring my moderating >attention on my iPhone but recently the sender's message is a >mime-attachment icon on my phone and is not readable at all. The host says >they did not make any changes, Apple says it is not a problem w

Re: [Mailman-Users] List all members of All lists

2009-11-21 Thread Adam McGreggor
On Sat, Nov 21, 2009 at 09:31:53AM -0500, Harold Pritchett wrote: > Thanks for the ideas. Here's what I ended up with: > > USER=$(/usr/bin/id -un) > > if [ $USER != root ] ; then > echo This command must be run as root I see no reason to run it as root: it should work with any user-account

[Mailman-Users] cannot read moderated posts on iPhone

2009-11-21 Thread Debbie Karimoto
I had previously been able to easily read posts requiring my moderating attention on my iPhone but recently the sender's message is a mime-attachment icon on my phone and is not readable at all. The host says they did not make any changes, Apple says it is not a problem with my phone yet I still ca

Re: [Mailman-Users] List all members of All lists

2009-11-21 Thread Harold Pritchett
Martin Schütte wrote: Harold Pritchett wrote: How do I list all of the members of all of my lists. Thanks for the ideas. Here's what I ended up with: #!/bin/bash USER=$(/usr/bin/id -un) if [ $USER != root ] ; then echo This command must be run as root exit fi if [ $# -ne 1 ] the