On 2/1/06, Oscar Hellstr?m <[EMAIL PROTECTED]> wrote: > However, is there any way i could > put a host name in <ip></ip> and make the transport resolve this, > preferably every time it is needed, but definitely on startup.
You'll need to use a dynamic dns provider like dyndns.org or noip.com. On 2/2/06, James Bunton <[EMAIL PROTECTED]> wrote: > That will work already :) That's the way I do it, and it works 100%. Although it might be worth adding a setting in the config file (which is the preferred FT interface name), then when the FT is started, the interface's primary IP is used instead. (This only works if you machine is doing the dsl connection directly - if you NAT the connection, then the dynamic dns way is the only solution) -- - Norman Rasmussen - Email: [EMAIL PROTECTED] - Home page: http://norman.rasmussen.co.za/ From [EMAIL PROTECTED] Thu Feb 2 15:15:06 2006 From: [EMAIL PROTECTED] (Michael Vogel) Date: Thu Feb 2 15:15:24 2006 Subject: [py-transports] Using twistd with the pre 0.11 of PyMSN-t - how? Message-ID: <[EMAIL PROTECTED]> Hi! By now I used a debian package of pymsn-t, now (because I want to test the file transfer) I switched to the pre 0.11-version. It runs - no problem. But I want to have it started with twist. I'm not sure what to do exactly. There is no PyMSNt.tac in 0.11. Do I have to create it on my own? Can anybody help me? Thanks! Michael From [EMAIL PROTECTED] Thu Feb 2 15:50:55 2006 From: [EMAIL PROTECTED] (Norman Rasmussen) Date: Thu Feb 2 15:51:01 2006 Subject: [py-transports] Using twistd with the pre 0.11 of PyMSN-t - how? In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> PyMSNt no longer supports being started from twistd, so there's nothing more to do. On 2/2/06, Michael Vogel <[EMAIL PROTECTED]> wrote: > Hi! > > By now I used a debian package of pymsn-t, now (because I want to test > the file transfer) I switched to the pre 0.11-version. > > It runs - no problem. But I want to have it started with twist. I'm not > sure what to do exactly. There is no PyMSNt.tac in 0.11. Do I have to > create it on my own? > > Can anybody help me? > > Thanks! > > Michael > _______________________________________________ > py-transports mailing list > py-transports@blathersource.org > http://www.modevia.com/cgi-bin/mailman/listinfo/py-transports > -- - Norman Rasmussen - Email: [EMAIL PROTECTED] - Home page: http://norman.rasmussen.co.za/ From [EMAIL PROTECTED] Thu Feb 2 15:57:51 2006 From: [EMAIL PROTECTED] (Michael Vogel) Date: Thu Feb 2 15:57:56 2006 Subject: [py-transports] Using twistd with the pre 0.11 of PyMSN-t - how? In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> Norman Rasmussen schrieb: > PyMSNt no longer supports being started from twistd, so there's > nothing more to do. So how can I start PyMSNt as a deamon? Michael From [EMAIL PROTECTED] Thu Feb 2 16:20:28 2006 From: [EMAIL PROTECTED] (Michael Vogel) Date: Thu Feb 2 16:20:34 2006 Subject: [py-transports] Using twistd with the pre 0.11 of PyMSN-t - how? In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> Additional comment: Michael Vogel schrieb: > So how can I start PyMSNt as a deamon? "python PyMSNt.py -b" does _not_ daemonize, although the description tells so. Michael From [EMAIL PROTECTED] Thu Feb 2 16:19:31 2006 From: [EMAIL PROTECTED] (Norman Rasmussen) Date: Thu Feb 2 16:26:50 2006 Subject: [py-transports] Using twistd with the pre 0.11 of PyMSN-t - how? In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> see `PyMSNt.py --help`: -b daemonize/background transport On 2/2/06, Michael Vogel <[EMAIL PROTECTED]> wrote: > Norman Rasmussen schrieb: > > PyMSNt no longer supports being started from twistd, so there's > > nothing more to do. > > So how can I start PyMSNt as a deamon? > > Michael > _______________________________________________ > py-transports mailing list > py-transports@blathersource.org > http://www.modevia.com/cgi-bin/mailman/listinfo/py-transports > -- - Norman Rasmussen - Email: [EMAIL PROTECTED] - Home page: http://norman.rasmussen.co.za/ From [EMAIL PROTECTED] Thu Feb 2 16:29:15 2006 From: [EMAIL PROTECTED] (Norman Rasmussen) Date: Thu Feb 2 16:29:19 2006 Subject: [py-transports] Using twistd with the pre 0.11 of PyMSN-t - how? In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> ahh, well that's something for James to fix :-P I'm using the /etc/init.d/pymsnt script from the debian package. It launches /usr/sbin/pymsnt which I've edited to run the svn version. On 2/2/06, Michael Vogel <[EMAIL PROTECTED]> wrote: > Additional comment: > > Michael Vogel schrieb: > > > So how can I start PyMSNt as a deamon? > > "python PyMSNt.py -b" does _not_ daemonize, although the description > tells so. > > Michael > _______________________________________________ > py-transports mailing list > py-transports@blathersource.org > http://www.modevia.com/cgi-bin/mailman/listinfo/py-transports > -- - Norman Rasmussen - Email: [EMAIL PROTECTED] - Home page: http://norman.rasmussen.co.za/ From [EMAIL PROTECTED] Thu Feb 2 16:43:43 2006 From: [EMAIL PROTECTED] (Lars T. Mikkelsen) Date: Thu Feb 2 16:43:50 2006 Subject: [py-transports] Using twistd with the pre 0.11 of PyMSN-t - how? In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> On Thu, Feb 02, 2006 at 05:20:28PM +0100, Michael Vogel wrote: > "python PyMSNt.py -b" does _not_ daemonize, although the description > tells so. Try changing 'config.daemonise = True' to 'config.background = True' in src/main.py line 41 - or put '<background/>' in your config.xml. Best regards, Lars From [EMAIL PROTECTED] Thu Feb 2 19:22:14 2006 From: [EMAIL PROTECTED] (Oscar =?ISO-8859-1?Q?Hellstr=F6m?=) Date: Thu Feb 2 19:22:23 2006 Subject: [py-transports] PyMSNt file transfer UP! In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> On Thu, 2006-02-02 at 12:26 +0200, Norman Rasmussen wrote: > On 2/1/06, Oscar Hellstr?m <[EMAIL PROTECTED]> wrote: > > However, is there any way i could > > put a host name in <ip></ip> and make the transport resolve this, > > preferably every time it is needed, but definitely on startup. > > You'll need to use a dynamic dns provider like dyndns.org or noip.com. But this still only works if the transport (or client) resolves the IP when the file transfer is initialized. If the IP is resolved on startup and the IP changes... > -- > - Norman Rasmussen > - Email: [EMAIL PROTECTED] > - Home page: http://norman.rasmussen.co.za/ > _______________________________________________ > py-transports mailing list > py-transports@blathersource.org > http://www.modevia.com/cgi-bin/mailman/listinfo/py-transports -- Oscar Hellstr?m, [EMAIL PROTECTED] web: personal.oscarh.net jid: [EMAIL PROTECTED] icq: 52604556 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://modevia.com/pipermail/py-transports/attachments/20060202/126c2e7b/attachment.pgp From [EMAIL PROTECTED] Thu Feb 2 19:41:12 2006 From: [EMAIL PROTECTED] (Norman Rasmussen) Date: Thu Feb 2 19:41:20 2006 Subject: [py-transports] PyMSNt file transfer UP! In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> On 2/2/06, Oscar Hellstr?m <[EMAIL PROTECTED]> wrote: > On Thu, 2006-02-02 at 12:26 +0200, Norman Rasmussen wrote: > > On 2/1/06, Oscar Hellstr?m <[EMAIL PROTECTED]> wrote: > > > However, is there any way i could > > > put a host name in <ip></ip> and make the transport resolve this, > > > preferably every time it is needed, but definitely on startup. > > > > You'll need to use a dynamic dns provider like dyndns.org or noip.com. > > But this still only works if the transport (or client) resolves the IP > when the file transfer is initialized. If the IP is resolved on startup > and the IP changes... > I assume (and I haven't looked at any code) that the 'IP' in the config file is sent to remote clients when the FT is started. I doubt that the IP is resolved at startup. My setup is a static IP, but I use the dns entry because I can't use my external IP internally, so the dns entry always points to the right IP. -- - Norman Rasmussen - Email: [EMAIL PROTECTED] - Home page: http://norman.rasmussen.co.za/ From [EMAIL PROTECTED] Fri Feb 3 00:04:20 2006 From: [EMAIL PROTECTED] (Michael Vogel) Date: Fri Feb 3 00:04:42 2006 Subject: [py-transports] PyMSNt file transfer UP! In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> James Bunton schrieb: > Ok everybody, this is it :) > > We can send/receive files to MSN clients (ver6 and above) using both > jabber:iq:oob and socks5 bytestreams :) That doesn't really work with me :-( My psi client always tells me that there is a problem with the firewall/router. > Make sure you read through the new settings in config-example.xml I changed nothing in the file transfer part of the sample config. Do I have to set "ftOOBPort" or "ftOOBRoot"? And when ... how have I to set "ftOOBRoot"? Or is it a psi problem? I never have tested file transfer with jabber to jabber. Michael -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3587 bytes Desc: S/MIME Cryptographic Signature Url : http://modevia.com/pipermail/py-transports/attachments/20060203/49eca5fb/smime.bin From [EMAIL PROTECTED] Fri Feb 3 09:07:46 2006 From: [EMAIL PROTECTED] (Norman Rasmussen) Date: Fri Feb 3 09:07:51 2006 Subject: [py-transports] PyMSNt file transfer UP! In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> Only ftJabberPort needs to be set. On 2/3/06, Michael Vogel <[EMAIL PROTECTED]> wrote: > James Bunton schrieb: > > Ok everybody, this is it :) > > > > We can send/receive files to MSN clients (ver6 and above) using both > > jabber:iq:oob and socks5 bytestreams :) > > That doesn't really work with me :-( My psi client always tells me that > there is a problem with the firewall/router. > > > Make sure you read through the new settings in config-example.xml > > I changed nothing in the file transfer part of the sample config. Do I > have to set "ftOOBPort" or "ftOOBRoot"? And when ... how have I to set > "ftOOBRoot"? > > Or is it a psi problem? I never have tested file transfer with jabber to > jabber. > > Michael > > > _______________________________________________ > py-transports mailing list > py-transports@blathersource.org > http://www.modevia.com/cgi-bin/mailman/listinfo/py-transports > > > > -- - Norman Rasmussen - Email: [EMAIL PROTECTED] - Home page: http://norman.rasmussen.co.za/ From [EMAIL PROTECTED] Fri Feb 3 09:15:41 2006 From: [EMAIL PROTECTED] (Michael Vogel) Date: Fri Feb 3 09:15:49 2006 Subject: [py-transports] PyICQ-t subversion 03.02. - can't send messages Message-ID: <[EMAIL PROTECTED]> Hi! Today I installed PyICQ and used the svn version. I can see the other people and they can see me. They can send me messages but I can't reply. When downgrading to 0.6 it worked. Is there a problem in the subversion version? Is there any "nearly-stable" version between the 0.6 and today? (I would like to have the possibility to start the transport easily in the background and I guess many more things have been added since the 0.6) Michael From [EMAIL PROTECTED] Fri Feb 3 13:52:30 2006 From: [EMAIL PROTECTED] (Daniel Henninger) Date: Fri Feb 3 13:52:40 2006 Subject: [py-transports] PyICQ-t subversion 03.02. - can't send messages In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> I don't ever recommend using the SVN version unless you are ready to deal with potential problems and ideally report bugs. =) SVN is undergoing a lot of reworkings at the moment and is "not guaranteed to be stable". Daniel On Feb 3, 2006, at 4:15 AM, Michael Vogel wrote: > Hi! > > Today I installed PyICQ and used the svn version. I can see the > other people and they can see me. They can send me messages but I > can't reply. > > When downgrading to 0.6 it worked. > > Is there a problem in the subversion version? > > Is there any "nearly-stable" version between the 0.6 and today? (I > would like to have the possibility to start the transport easily in > the background and I guess many more things have been added since > the 0.6) > > Michael > _______________________________________________ > py-transports mailing list > py-transports@blathersource.org > http://www.modevia.com/cgi-bin/mailman/listinfo/py-transports > >