From 5eeebb36bfe73dcf17dc8b72bd190c266e25c45e Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Tue, 20 Jul 2010 00:10:39 +0000 Subject: remove xmpppy from the repos --- src/xmpppy-0.5.0rc1/doc/examples/xsend.py | 44 ------------------------------- 1 file changed, 44 deletions(-) delete mode 100755 src/xmpppy-0.5.0rc1/doc/examples/xsend.py (limited to 'src/xmpppy-0.5.0rc1/doc/examples/xsend.py') diff --git a/src/xmpppy-0.5.0rc1/doc/examples/xsend.py b/src/xmpppy-0.5.0rc1/doc/examples/xsend.py deleted file mode 100755 index 59b202a9..00000000 --- a/src/xmpppy-0.5.0rc1/doc/examples/xsend.py +++ /dev/null @@ -1,44 +0,0 @@ -#!/usr/bin/python -# $Id: xsend.py,v 1.8 2006/10/06 12:30:42 normanr Exp $ -import sys,os,xmpp,time - -if len(sys.argv) < 2: - print "Syntax: xsend JID text" - sys.exit(0) - -tojid=sys.argv[1] -text=' '.join(sys.argv[2:]) - -jidparams={} -if os.access(os.environ['HOME']+'/.xsend',os.R_OK): - for ln in open(os.environ['HOME']+'/.xsend').readlines(): - if not ln[0] in ('#',';'): - key,val=ln.strip().split('=',1) - jidparams[key.lower()]=val -for mandatory in ['jid','password']: - if mandatory not in jidparams.keys(): - open(os.environ['HOME']+'/.xsend','w').write('#Uncomment fields before use and type in correct credentials.\n#JID=romeo@montague.net/resource (/resource is optional)\n#PASSWORD=juliet\n') - print 'Please point ~/.xsend config file to valid JID for sending messages.' - sys.exit(0) - -jid=xmpp.protocol.JID(jidparams['jid']) -cl=xmpp.Client(jid.getDomain(),debug=[]) - -con=cl.connect() -if not con: - print 'could not connect!' - sys.exit() -print 'connected with',con -auth=cl.auth(jid.getNode(),jidparams['password'],resource=jid.getResource()) -if not auth: - print 'could not authenticate!' - sys.exit() -print 'authenticated using',auth - -#cl.SendInitPresence(requestRoster=0) # you may need to uncomment this for old server -id=cl.send(xmpp.protocol.Message(tojid,text)) -print 'sent message with id',id - -time.sleep(1) # some older servers will not send the message if you disconnect immediately after sending - -#cl.disconnect() -- cgit v1.2.3