Stonewall Ballard | 1 Dec 2002 01:22

Re: Problem when subscribing

On 11/30/02 3:56 PM, "Nicolas Cartron" <nc <at> ncartron.org> wrote:

> Hello Stoney,
> 
>> Is qrunner running (Mailman 2.1)? Or are the qrunner cron jobs installed
>> and tested (Mailman 2.0)?
> 
> I'm running Mailman 2.0.13.
> Cron jobs are installed.
> 
>> Are there files in any of the subdirectories of mailman/qfiles?
> 
> yes, a lot in fact.
> 
>> Are you sure that you built Mailman with the correct mail-server-gid?
> 
> yes, i specified the --with-mail-gid matching my /etc/passwd file.
> 
> How can i do ?
> Is this a mailman problem ?
> I mean, postfix receives the messages and forwards them to Mailman,
> so it should be a Mailman issue ?

It sounds to me like qrunner is failing to process the queued files. Can you
test-run the cron job, exactly as it's entered, to ensure that it works?

If the queued files are in the mailman/qfiles/in directory, then I'd guess
that qrunner is unable to get to them. If they're in the
mailman/qfiles/shunt directory, then qrunner had an error processing them.
There should be something in your logs that will give you a clue about the
(Continue reading)

J C Lawrence | 1 Dec 2002 01:58
X-Face
Picon
Picon
Picon
Gravatar

Re: Demime and Stripmime

On Sat, 30 Nov 2002 10:52:48 -0800 
Karin Zirk <kzirk <at> earthlink.net> wrote:

> Has anyone tried using Demime or Stripmime to deal remove the AOL HTML
> portion of the email message?

I successfully use mimefilter -- see the FAQ and list archives for
details.

--

-- 
J C Lawrence                
---------(*)                Satan, oscillate my metallic sonatas. 
claw <at> kanga.nu               He lived as a devil, eh?		  
http://www.kanga.nu/~claw/  Evil is a name of a foeman, as I live.

J C Lawrence | 1 Dec 2002 02:02
X-Face
Picon
Picon
Picon
Gravatar

Re: Web-based posting?

On Fri, 29 Nov 2002 21:02:27 -0500 
Nicolas Steenhout <vavroom <at> bmee.net> wrote:

> I want for the list to be restricted to registered users (no problem
> so far).  I want user's registration to be approved by the admin
> before they can become active.  I want users to be able to read the
> list on the web (no problem, archives, right?).  Most importantly, I
> would like users to be able to POST to the list from the web.

Please see the FAQ for how I do this under PHP:

  http://www.python.org/cgi-bin/faqw-mm.py

--

-- 
J C Lawrence                
---------(*)                Satan, oscillate my metallic sonatas. 
claw <at> kanga.nu               He lived as a devil, eh?		  
http://www.kanga.nu/~claw/  Evil is a name of a foeman, as I live.

Phillip L. Harbison | 1 Dec 2002 03:49
Favicon
Gravatar

Re: Web-based posting?

Elaine Miller wrote:
 > Nicolas Steenhout wrote:
 > > I want for the list to be restricted to registered users [...]
 > > Most importantly, I would like users to be able to POST to the
 > > list from the web.
 >
 > Hmm. Seems like one ought to be able to set up a simple formmail
 > on an html page, since Formmail sends to the set address as coming
 > "from" the email address the user enters.

I assume Nicolas wants a solution that only allows registered users
to post to the list using the web.  I have a similar need.

 > Might be harder to stop spammers with this one...

Exactly.  I have a simple form and a CGI written in Perl that allows
anyone to send mail as long as they know a password.  Unfortunately,
the only way for the entire list to use this is to broadcast the
password to the list (which is NOT a Good Thing(tm)).  What I would
like is a CGI that would look up the password in Mailman's user DB.
Has anyone done this?  If not, I will put on my programming hat and
learn python.

--

-- 
Phil Harbison

J C Lawrence | 1 Dec 2002 05:43
X-Face
Picon
Picon
Picon
Gravatar

Re: headers

On Thu, 28 Nov 2002 20:53:00 -0800 
Felix F <felix <at> pz4.org> wrote:

> Can anyone tell me how to remove the headers Mailman places into a
> sent out e-mail? I'm specifically talking about headers such as:

Please see the FAQ:

  http://www.python.org/cgi-bin/faqw-mm.py 

--

-- 
J C Lawrence                
---------(*)                Satan, oscillate my metallic sonatas. 
claw <at> kanga.nu               He lived as a devil, eh?		  
http://www.kanga.nu/~claw/  Evil is a name of a foeman, as I live.

Ajay Sharma | 1 Dec 2002 07:24

withlist changepw.py help


Hello,

I'm not a python programmer, but I can get around.  Anyway, I started to 
play with the "/bin/withlist" program to get a command-line method to 
change passwords.  My changepw.py program looks like:

import string

def changepw(mlist, addr, newpasswd):
        addr = string.lower(addr)
        if mlist.passwords.has_key(addr):
                mlist.passwords[string.lower(addr)] = newpasswd
                mlist.Save()
        else:
                print 'No address matched:', addr

and when I run it:

[mailman <at> server bin]$ ./withlist -l -r changepw list addr newpass
Loading list: list (locked)
Importing changepw ...
Running changepw.changepw() ...
Unlocking (but not saving) list: list
Finalizing

So why doesn't it save the changes to the list after the password is 
changed??

Thanks,
(Continue reading)

Ron Bogerd | 1 Dec 2002 11:25
Picon
Favicon

setting up Mailman

Morning everyone,

I just started setting up Mailman on a Debianserver using apt-get install 
... All seem to go well but if I try to use mailman i see the following 
errormessage in /var/log/mailman/error:

Dec 01 11:24:03 2002 qrunner(10720): IOError :  [Errno 13] Permission 
denied: '/var/lib/mailman/locks/qrunner.lock.bogerd.10720'
Dec 01 11:25:02 2002 qrunner(10723): Traceback (most recent call last):
Dec 01 11:25:02 2002 qrunner(10723):   File 
"/usr/lib/mailman/cron/qrunner", line 276, in ?
Dec 01 11:25:02 2002 qrunner(10723):      lock.lock(timeout=0.5)
Dec 01 11:25:02 2002 qrunner(10723):   File 
"/usr/lib/mailman/Mailman/LockFile.py", line 219, in lock
Dec 01 11:25:02 2002 qrunner(10723):      self.__write()
Dec 01 11:25:02 2002 qrunner(10723):   File 
"/usr/lib/mailman/Mailman/LockFile.py", line 350, in __write
Dec 01 11:25:02 2002 qrunner(10723):      fp = open(self.__tmpfname, 'w')
Dec 01 11:25:02 2002 qrunner(10723): IOError :  [Errno 13] Permission 
denied: '/var/lib/mailman/locks/qrunner.lock.bogerd.10723'

Can anyone tell me where I went wrong ???

David Gordon | 1 Dec 2002 13:23

*some* subscribers don't get mail

Mailman 2.0.13 / Sendmail

I've set up a Mailman list which all seems to work fine.

I subscribed myself [me <at> mydomain.tld] as the first subscriber, sent and
received a test message. Sure everything was okay I subscribed more
people using the 'auto-subscribe' feature. Those people got mail and replied.

But me <at> mydomain.tld didn't get their replies, or any mail. I subscribed
another address at mydomain.tld, unsubscribed the me <at>  address and
resubscribed it. So I now have to subscriptions to mydomain.tld. So I
should get two copies of all posts - the 'membership options' confirm my
settings.

But I don't, I only get one copy. And I don't know to which account as my
host seems to have stripped out the 'to' or 'for' line from my headers.

My maillog shows mail being sent out to all subscribers, including both
my addresses at mydomain.tld

This seems odd to me and makes me worry that not all subscribers might be
receiving mail although as far as I can see they should be.

Is there a bug or did I do something wrong/stupid?

--
DavidGordon

Dean Nielson | 1 Dec 2002 14:56

Spaces Were Put in New List Name - How Do I Delete It

Hi,
 
I recently installed the latest version of mailman on RedHat 7.2 with it's patches and verified that all Mailman required software requirements were met.  I created a new list with spaces in the name and now am trying to delete the list.  I've tried rmlist with the list name surrounded in single-quoted and in double-quotes.  I've added "\" before each space with no success.  Any ideas?
 
Thanks in advance,
 
Dean
 
Jon Carnes | 1 Dec 2002 16:29
Picon

Re: Spaces Were Put in New List Name - How Do I Delete It

This comes up often enough that I think it's in the FAQ.

Basically you can delete the directories associated with the list and
that's that. The following directories are created when you create a
list:
  ~mailman/lists/≤listname>
  ~mailman/archives/private/≤listname>
  ~mailman/archives/private/≤listname>.mbox
  ~mailman/archives/public/≤listname>
  ~mailman/archives/public/≤listname>.mbox

If you delete those directories, then you have deleted the list! One of
the nice things about Mailman is its simplicity.

Good Luck!

Jon Carnes
======
On Sun, 2002-12-01 at 08:56, Dean Nielson wrote:
> Hi,
>  
> I recently installed the latest version of mailman on RedHat 7.2 with
> it's patches and verified that all Mailman required software
> requirements were met.  I created a new list with spaces in the name and
> now am trying to delete the list.  I've tried rmlist with the list name
> surrounded in single-quoted and in double-quotes.  I've added "\" before
> each space with no success.  Any ideas?
>  
> Thanks in advance,
>  
> Dean
>  
> ----
> 

> ------------------------------------------------------
> Mailman-Users mailing list
> Mailman-Users <at> python.org
> http://mail.python.org/mailman/listinfo/mailman-users
> Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
> Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
> 
> This message was sent to: jonc <at> nc.rr.com
> Unsubscribe or change your options at
> http://mail.python.org/mailman/options/mailman-users/jonc%40nc.rr.com


Gmane