On 8/21/06, Bearcat M. Sandor <[EMAIL PROTECTED]> wrote: > However, i am a bit flummoxed as to what the "Register with Jabber Service" > dialog wants. > > The registration dialog wants: > Address: (This is the address of my jabber server? or my jabber username?) > Nickname: (name i want to chat under > Password: (my jabber password for my jabber user on my own system) > Name: (my real name?) > Username: (the username of my jabber user?)
If you hover over the (?) it should give you the following info: Alias: Server alias used for jids Address: Server to connect to Nickname: Familiar name of the user Password: Password or secret for the user Name: Full name of the user Username: Account name associated with the user which is all very well, but what does it _mean_? Maybe an example would help: Alias: freenode (or fn - so the jid for bob would be: [EMAIL PROTECTED], or nickserv is [EMAIL PROTECTED]/Nickserv) Address: chat.freenode.net (you can also supply a port by adding stuff like :6667) Nickname: (should be self explanatory) Password: (this is used to login to the irc server, often Nickserv will use it too) Name: (this is your full name that you want to appear in your WHOIS information) Username: (this is the 'user' part of your 'email' that is shown in the WHOIS - often also called ident information) -- - Norman Rasmussen - Email: [EMAIL PROTECTED] - Home page: http://norman.rasmussen.co.za/ From [EMAIL PROTECTED] Tue Aug 22 10:37:12 2006 From: [EMAIL PROTECTED] (Stian B. Barmen) Date: Tue Aug 22 10:37:22 2006 Subject: [py-transports] pymsnt tb in debug .log for you :) Message-ID: <[EMAIL PROTECTED]> Seems the transport is working better now, but I keep getting the following the the debug.log 3-4 times an hour. Maybe interesting, or is it still the old one that you are not to fix for this release? I cannot remember. Anywho, I guess it doesn't hurt to post it to you guys. [2006-08-22 09:53:18] Traceback (most recent call last): File "/usr/lib/python2.4/site-packages/twisted/python/log.py", line 53, in callWithLogger return callWithContext({"system": lp}, func, *args, **kw) File "/usr/lib/python2.4/site-packages/twisted/python/log.py", line 38, in callWithContext return context.call({ILogContext: newCtx}, func, *args, **kw) File "/usr/lib/python2.4/site-packages/twisted/python/context.py", line 59, in callWithContext return self.currentContext().callWithContext(ctx, func, *args, **kw) File "/usr/lib/python2.4/site-packages/twisted/python/context.py", line 37, in callWithContext return func(*args,**kw) --- <exception caught here> --- File "/usr/lib/python2.4/site-packages/twisted/internet/epollreactor.py", line 199, in _doReadOrWrite why = selectable.doRead() File "/usr/lib/python2.4/site-packages/twisted/internet/tcp.py", line 349, in doRead return self.protocol.dataReceived(data) File "/usr/lib/python2.4/site-packages/twisted/protocols/basic.py", line 232, in dataReceived why = self.lineReceived(line) File "/usr/local/pymsnt/src/legacy/msn/msn.py", line 819, in lineReceived try: handler(params.split(' ')) File "/usr/local/pymsnt/src/legacy/msn/msn.py", line 1139, in handle_ILN self.handleAvatarHelper(msnContact, params[5]) File "/usr/local/pymsnt/src/legacy/msn/msn.py", line 1156, in handleAvatarHelper self.contactAvatarChanged(msnContact.userHandle, binascii.hexlify(b64dec(msnContact.msnobj.sha1d))) File "/usr/local/pymsnt/src/legacy/msn/msnw.py", line 434, in contactAvatarChanged LogEvent(INFO, self.factory.msncon.ident) exceptions.AttributeError: 'NoneType' object has no attribute 'ident' Seems to me the transport is now stable enough for a new release *cough*. J -stian -------------- next part -------------- An HTML attachment was scrubbed... URL: http://modevia.com/pipermail/py-transports/attachments/20060822/69c271ae/attachment.htm From [EMAIL PROTECTED] Tue Aug 22 13:33:01 2006 From: [EMAIL PROTECTED] (James Bunton) Date: Tue Aug 22 13:33:11 2006 Subject: [py-transports] PyMSNt twisted.web.sux.ParseError In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> Well that's an interesting one. Try manually specifying a reactor, like poll instead of letting it use kqueue <reactor>poll</reactor> in your config file should do it. --- James On 22/08/2006, at 3:41 AM, Vladimir Vrzic wrote: > On Fri, 2006-08-18 at 09:46 +1000, James Bunton wrote: >> Just for clarity I'm going to state things as I understand :) >> >> In PyMSNt 0.10.3 you're getting the parse errors throwing exceptions. >> This is a bug that has been fixed in 0.11.2. >> >> However you cannot switch to 0.11.2 because you were getting a >> Timeout attempting to connect. >> >> Is that all correct? >> >> If so, my suggestion about adjusting the timeout was referring to >> src/ >> legacy/msn/msnw.py in 0.11.2, not 0.10.3. > > Actually, I could not switch to 0.11.1 (not .2) because of a timeout > problem. Now I tried modifying the timeout in the code, but no luck. > Tried to test connectivity with netcat, everything looks normal. > > After that I tried with 0.11.2-dev2, and it just dies on startup, > with a > brand new error message (full log attached) :o). > > OSError: [Errno 9] Bad file descriptor > > So, basically, now i have: > > 0.10.3 -- doesn't work, parse errors > 0.11.1 -- doesn't work, timeout errors > 0.11.2 -- doesn't work, bad file descriptor error > <debug.log> > _______________________________________________ > py-transports mailing list > [email protected] > http://www.modevia.com/cgi-bin/mailman/listinfo/py-transports
