Re: [Twisted-Python] Imap client problem, help fro troubleshoot

2011-02-25 Thread César García
OK Thanks a lot, I'll try that. 2011/2/25 : > On 04:41 pm, cel...@gmail.com wrote: >>Hi Jean-Paul thank a lot for your reply, intentionally I'm not >>stopping the reactor this comes without my intervention > > There are several calls to `reactor.stop` in the example, though.  The > reactor won't

Re: [Twisted-Python] Imap client problem, help fro troubleshoot

2011-02-25 Thread César García
Hi Jean-Paul thank a lot for your reply, intentionally I'm not stopping the reactor this comes without my intervention >>Failure: twisted.internet.error.ConnectionDone: Connection was >>closed cleanly there is where I get lost, I'm using Solaris 10, python 2.6.2 and twisted 10.1.0, could

[Twisted-Python] Imap client problem, help fro troubleshoot

2011-02-24 Thread César García
Hello All, I have this[1] IMAP4 client in twisted, but I'am getting this error too much, how can I troubleshoot it or how can I restart the main loop after this failure? Traceback (most recent call last): Failure: twisted.internet.error.ConnectionDone: Connection was closed cleanl

Re: [Twisted-Python] SQLAlchemy and Twisted

2010-05-06 Thread César García
Guys, now that I see this and the past conversations about SA and Twisted, and now that I've read some more about the non-blocking concepts, I think that I'am not doing things the best way I am doing this: 1. Twisted IMAP4 Client to read my mails 2. Inside this client I import a module that con

Re: [Twisted-Python] twisted.web in 60 seconds...why aren't these on the frontpage of TM.com?

2010-04-21 Thread César García
+1 Yes, it's great!! 2010/4/21 Kevin Horn > This blog series is also totally rock-a-licious. > > http://krondo.com/blog/?page_id=1327 > -- http://celord.blogspot.com/ ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedma

Re: [Twisted-Python] IMAP4 Client extrange behavior

2010-03-04 Thread César García
self.fetchMessage(messageSet, False ).addCallback(self.cbProcMessage) else: return def cbProcMessage(self, messages): if debug: print "on cbProcEnvelop" for message in messages.iteritems(): body = message[1]['RFC8

[Twisted-Python] IMAP4 Client extrange behavior

2010-02-22 Thread César García
Hello all, I have this imap4 client http://www.pastebin.com/m4e387f1a most of the code is barrowed from a IRC friend, bob_f , it works fine but as soon as more that 1 email arrrives to the inbox, it only prints the first new messages but not the others, I wonder what am I doing wrong Thanks a lot

Re: [Twisted-Python] twisted mail client code review

2009-12-30 Thread César García
Thanks ! 2009/12/30 Timothy Allen : > On Tue, 29 Dec 2009 14:55:36 -0600 > César García wrote: >> Hello guys, this are my first steps into twister and this is my first >> app with twister, using examples from the twisted documentation and >> reading it a lot ( interface

[Twisted-Python] twisted mail client code review

2009-12-29 Thread César García
Hello guys, this are my first steps into twister and this is my first app with twister, using examples from the twisted documentation and reading it a lot ( interfaces are still not for me ), I've come to this code: http://pastebin.com/m2d6c35df My goal for now is to create my own client and be

[Twisted-Python] plugin system

2009-12-14 Thread César García
Guys, I'am new to twisted and I've read the documentation about the plugin system and the components but I can't make it, I really do not get it well, do you guys have any examples there to see if I can get it :) Thanks a lot -- http://celord.blogspot.com/ __