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
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
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
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
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