Re: [Mailman-Users] How to retrieve the password to create new lists?

2003-09-18 Thread Patrick Atlas
Answering myself.

Here is a command line script that allows to set the site password:
mmsitepas

Patrick Atlas

- Original Message - 
From: "Patrick Atlas" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, September 18, 2003 11:44 AM
Subject: [Mailman-Users] How to retrieve the password to create new lists?


> Well, I can't remember the password to create news lists.
> Is it a way to retrieve it?
> I guess it was those I used to create the mailman list, but not.
>
> Any idea?
>
> Patrick Atlas
>
>
>
> --
> Mailman-Users mailing list
> [EMAIL PROTECTED]
> 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: [EMAIL PROTECTED]
> Unsubscribe or change your options at
>
http://mail.python.org/mailman/options/mailman-users/patrick.atlas%40mg-france.fr



--
Mailman-Users mailing list
[EMAIL PROTECTED]
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: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] How to retrieve the password to create new lists?

2003-09-18 Thread Patrick Atlas
Well, I can't remember the password to create news lists.
Is it a way to retrieve it?
I guess it was those I used to create the mailman list, but not.

Any idea?

Patrick Atlas



--
Mailman-Users mailing list
[EMAIL PROTECTED]
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: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] Error with qrunner

2003-09-09 Thread Patrick Atlas
Ok, here is some details about my installation.

MTA : Postfix 1.1.11
Redhat 8.0
python 2.2.1
anything else?

This error is only occuring for one list. Others don't generate any error
but the mails are not forwarded anymore to subscribers.

By the way I tried to launch "testall.py" ( python testall.py ? ), but got
errors too.

Patrick Atlas

- Original Message - 
From: "Richard Barrett" <[EMAIL PROTECTED]>
To: "Patrick Atlas" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Tuesday, September 09, 2003 4:32 PM
Subject: Re: [Mailman-Users] Error with qrunner


>
 >
> I guess that Barry's palliative patch for the error was folded into the
> stable release. But as he said, it was not intended to cure the
> underlying problem, just mitigate its effects.
>
>  From a quick look at the other hits returned from the searchable
> archives it appears the original poster of the problem had to make some
> changes to his sendmail installation to effect a cure.
>
> Whether that is your problem or not, if you repost identifying which
> MTA you use and some detail about your installation setup, some list
> denizen might be able to help identify the problem you have.
>



--
Mailman-Users mailing list
[EMAIL PROTECTED]
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: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] Error with qrunner

2003-09-09 Thread Patrick Atlas
I don't usually use cvs but I assume that :

 refused = e.recipients
 # MTA not responding, or other socket problems, or any other kind of
 # SMTPException.  In that case, nothing got delivered
-except (socket.error, smtplib.SMTPException), e:
+except (socket.error, smtplib.SMTPException, IOError), e:
 # BAW: should this be configurable?
 syslog('smtp', 'All recipients refused: %s', e)
 # If the exception had an associated error code, use it, otherwise,

means that I must write this piece of code:

 refused = e.recipients
 # MTA not responding, or other socket problems, or any other kind of
 # SMTPException.  In that case, nothing got delivered
except (socket.error, smtplib.SMTPException, IOError), e:
 # BAW: should this be configurable?
 syslog('smtp', 'All recipients refused: %s', e)
 # If the exception had an associated error code, use it, otherwise,

If so, I already have this code written in
mailman/Mailman/Handlers/SMTPDirect.py

Any other idea?

Patrick Atlas

- Original Message - 
From: "Richard Barrett" <[EMAIL PROTECTED]>
To: "Patrick Atlas" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Tuesday, September 09, 2003 3:04 PM
Subject: Re: [Mailman-Users] Error with qrunner


> A search for "Interrupted system call" on
> http://www.mail-archive.com/mailman-users%40python.org/ brought up a
> number of hits, which may be relevant. For instance:
>
> http://www.mail-archive.com/[EMAIL PROTECTED]/msg14350.html
>



--
Mailman-Users mailing list
[EMAIL PROTECTED]
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: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Error with qrunner

2003-09-09 Thread Patrick Atlas
Hello,

since few days, I get this error:

BounceRunner qrunner exiting.
Master qrunner detected subprocess exit
(pid: 13327, sig: None, sts: 2, class: ArchRunner, slice: 1/1) [restarting]

in the qrunner logs, then

All recipients refused: (451, 'Error: queue file write error')

and

All recipients refused: [Errno 4] Interrupted system call

in the smtp logs,

delivery to [EMAIL PROTECTED] failed with code -1: ignore

in the smtp-failure logs, and

post to  from [EMAIL PROTECTED], size=5337, 500 failures

and finally:

Sep 09 12:27:00 2003 (17785) Traceback (most recent call last):
  File "/usr/local/mailman/Mailman/Queue/Runner.py", line 105, in _oneloop
self._onefile(msg, msgdata)
  File "/usr/local/mailman/Mailman/Queue/Runner.py", line 155, in _onefile
keepqueued = self._dispose(mlist, msg, msgdata)
  File "/usr/local/mailman/Mailman/Queue/OutgoingRunner.py", line 61, in
_dispose
self._func(mlist, msg, msgdata)
  File "/usr/local/mailman/Mailman/Handlers/SMTPDirect.py", line 150, in
process
conn.quit()
  File "/usr/local/mailman/Mailman/Handlers/SMTPDirect.py", line 80, in quit
self.__conn.quit()
  File "/usr/src/build/143041-i386/install/usr/lib/python2.2/smtplib.py",
line 669, in quit
self.docmd("quit")
  File "/usr/src/build/143041-i386/install/usr/lib/python2.2/smtplib.py",
line 351, in docmd
return self.getreply()
  File "/usr/src/build/143041-i386/install/usr/lib/python2.2/smtplib.py",
line 325, in getreply
line = self.file.readline()
IOError: [Errno 4] Interrupted system call

Sep 09 12:27:00 2003 (17785) SHUNTING:
1062747350.915108+f855e42196c058e0e5bbcd3abfdfb420613bf3d3

in the error logs.

It seems that only one list is concerned, but all traffic are down for the
other lists.

What's the problem?

Mailman 2.1.1

Patrick Atlas






--
Mailman-Users mailing list
[EMAIL PROTECTED]
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: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] Command output: Failure to find group name mailman

2003-02-02 Thread Dr Patrick Atlas

Hello,

I have closely followed install instructions for mailman.

But when I try to send something I get this error:

<[EMAIL PROTECTED]>: Command died with status 8:
"/usr/local/mailman/mail/mailman post mailman". Command output: Failure
to find group name mailman
Try adding this group to your system, or re-run
configure, providing an existing group name with the command line option
--with-mail-gid.

... but the 'mailman' group is really existing!! Mailman was created under
mailman:mailman.
Du I need to configure --with-mail-gid=mailman?


I cannot find anything in the FAQ, or the bugtracking.

My system: RedHat 8, Postfix 1.1.11, last release of Mailman, Apache 2.0,
python 2.2

Any idea?

--
Patrick Atlas

 


--
Mailman-Users mailing list
[EMAIL PROTECTED]
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: archive@jab.org
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org