Re: [Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

2001-11-26 Thread Pavel Chytil
Man you rule!!! At this point seems to be working fine. I will do more testing and let you know if any troubles will pop up. Thanks a lot, Pavel Cituji z emailu od "Barry A. Warsaw" <[EMAIL PROTECTED]>: > > > "PC" == Pavel Chytil <[EMAIL PROTECTED]> writes: > > | lines = email.

Re: [Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

2001-11-26 Thread Barry A. Warsaw
> "PC" == Pavel Chytil <[EMAIL PROTECTED]> writes: | lines = email.Iterators.body_line_iterator(msg)[:] Sorry, change this line to lines = list(email.Iterators.body_line_iterator(msg)) (You probably need to back out the previous patch first, before applying the second on

Re: [Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

2001-11-26 Thread Pavel Chytil
Barry, still not there, same approache like last try: Nov 26 23:25:30 2001 (15396) Uncaught runner exception: unsubscriptable object Nov 26 23:25:30 2001 (15396) Traceback (most recent call last): File "/work/mailman/Mailman/Queue/Runner.py", line 104, in __oneloop self.__onefile(msg, msgd

Re: [Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

2001-11-26 Thread Barry A. Warsaw
Oops. Okay, let's try this one! -Barry Index: MailCommandHandler.py === RCS file: /cvsroot/mailman/mailman/Mailman/MailCommandHandler.py,v retrieving revision 2.25 diff -u -r2.25 MailCommandHandler.py --- MailCommandHandler.py

Re: [Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

2001-11-26 Thread Pavel Chytil
Barry, well probably did fix what it suppose to, but new pop up as well: Nov 26 22:23:38 2001 (11876) Uncaught runner exception: unsubscriptable object Nov 26 22:23:38 2001 (11876) Traceback (most recent call last): File "/work/mailman/Mailman/Queue/Runner.py", line 104, in __oneloop self.

Re: [Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

2001-11-26 Thread Barry A. Warsaw
Oops, forgot the patch! -Barry Index: MailCommandHandler.py === RCS file: /cvsroot/mailman/mailman/Mailman/MailCommandHandler.py,v retrieving revision 2.24 diff -u -r2.24 MailCommandHandler.py --- MailCommandHandler.py 2001/1

Re: [Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

2001-11-26 Thread Barry A. Warsaw
> "B" == Bob <[EMAIL PROTECTED]> writes: B> He is using Python 2.2, which comes with email - no need to B> install the package. The problem lies elsewhere. Yes, the problem is that in Python 2.2, body_line_generator() returns a... generator! not a list. This is one corner where

Re: [Mailman-Developers] Postfix virtual domains

2001-11-26 Thread Barry A. Warsaw
Last night I checked in some stuff to hopefully improve the virtual domain support for Postfix. It'd be great if some of you could give it a looksee. FWIW, I think I've solved the dom1, dom2 namespace collision problem, by as suggested, omitting both dom1 and dom2 from $mydestination. However,

Re: [Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

2001-11-26 Thread Bob [EMAIL PROTECTED]
Dan, He is using Python 2.2, which comes with email - no need to install the package. The problem lies elsewhere. Bob ___ Mailman-Developers mailing list [EMAIL PROTECTED] http://mail.python.org/mailman/listinfo/mailman-developers

Re: [Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

2001-11-26 Thread Dan Mick
Dunno; lines is a result of email.Iterators.body_line_iterator, which looks to me like it should be returning an array of strings, which certainly *does* have an insert() command... so I don't know what's going wrong. > Well I have reinstall mailman with email 0.96 in my python and outcome is t

Re: [Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

2001-11-26 Thread Pavel Chytil
Well I have reinstall mailman with email 0.96 in my python and outcome is the same: Nov 26 16:42:33 2001 (4495) Uncaught runner exception: 'generator' object has no attribute 'insert' Nov 26 16:42:33 2001 (4495) Traceback (most recent call last): File "/work/mailman/Mailman/Queue/Runner.py", li

Re: [Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

2001-11-26 Thread Pavel Chytil
Well I have reinstall mailman with email 0.96 in my python and outcome is the same: Nov 26 16:42:33 2001 (4495) Uncaught runner exception: 'generator' object has no attribute 'insert' Nov 26 16:42:33 2001 (4495) Traceback (most recent call last): File "/work/mailman/Mailman/Queue/Runner.py", li

[Mailman-Developers] hi

2001-11-26 Thread bxb1280
vtkusers£¬hi£¡ Who can tell me how to download the CTN Library? (I want to read dicom file) thank you. bxb1280 [EMAIL PROTECTED] _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo

[Mailman-Developers] hi

2001-11-26 Thread bxb1280
vtkusers£¬hi£¡ Who can tell me how to download the CTN Library? (I want to read dicom file) thank you. bxb1280 [EMAIL PROTECTED] _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.y

Re: [Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

2001-11-26 Thread Dan Mick
The version that comes with mailman is 0.96; maybe 1.0 doesn't yet work with Mailman?... > Sure I did. > > asp pts/25% > python ~ > Python 2.2b2 (#1, Nov 19 2001, 20:23:17) > [GCC 2.96 2731 (Red Hat Linux 7.1 2.96-98)] o

Re: [Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

2001-11-26 Thread Pavel Chytil
Sure I did. asp pts/25% python~ Python 2.2b2 (#1, Nov 19 2001, 20:23:17) [GCC 2.96 2731 (Red Hat Linux 7.1 2.96-98)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import email >>> em

[Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

2001-11-26 Thread Pavel Chytil
Hello, I am new to mailman, so bear with me. I have downloaded mailman-2.0.7 which works fine, than I have tried mailman 2.1 (also from cvs), and getting error message below in error log whenever I try to send email to [EMAIL PROTECTED] with word help in Subject line (I have tried also word help

Re: [Mailman-Developers] questions about gate_news

2001-11-26 Thread Jonas Meurer
On Mon, Nov 26, 2001 at 12:16:14PM -0500, Scott Russell wrote: > I'm not sure if this is a true bug or not but I wanted to report that > gate_news in 2.0.7 works for me. (tm) In my case the innd server is located > on the same box as the smtp server so there is no delays in handling > connections

Re: [Mailman-Developers] questions about gate_news

2001-11-26 Thread Scott Russell
On Mon, Nov 26, 2001 at 04:59:56PM +0100, Jonas Meurer wrote: > Hey ho, > I'm new at this list, and I've a few questions about gate_news. > It isn't working very well, so some posts to the group aren't fetched > and some mails aren't posted. Can the problem be that the newsserver is > connected on

[Mailman-Developers] questions about gate_news

2001-11-26 Thread Jonas Meurer
Hey ho, I'm new at this list, and I've a few questions about gate_news. It isn't working very well, so some posts to the group aren't fetched and some mails aren't posted. Can the problem be that the newsserver is connected only per ISDN and so the connection is very slow? So that sometimes the ne

Re: [Mailman-Developers] Postfix virtual domains

2001-11-26 Thread Tollef Fog Heen
* (Barry A. Warsaw) | > "BAW" == Barry A Warsaw <[EMAIL PROTECTED]> writes: | | BAW> I figured out how to support Postfix-style virtual domains[1] | BAW> in a similar manner to the main aliases file, but I'm too | BAW> tired to finish implementing it tonight. | | I'm about to c