Merge pull request #6 from upperhill/master

Improved Readme.md
This commit is contained in:
Changaco 2015-07-20 13:17:31 +02:00
commit 73a74195e5
1 changed files with 45 additions and 2 deletions

View File

@ -4,8 +4,51 @@
`sendxmpp.py` is the XMPP equivalent of sendmail. It is an alternative to the old sendxmpp written in Perl.
Dependency: [sleekxmpp](https://github.com/fritzy/SleekXMPP) (python3 version)
# Dependencies
This requires Python 3.X
```
sudo apt-get install python3
```
Installation: just put the scripts wherever you want.
Install dnspython
```
wget https://github.com/rthalley/dnspython/archive/v1.11.1-py3.tar.gz
tar xvf v1.11.1-py3.tar.gz
cd dnspython-1.11.1-py3/
sudo python3 setup.py install --record files.txt
cd ../
```
Install SleekXMPP
```
git clone https://github.com/fritzy/SleekXMPP
cd SleekXMPP/
sudo python3 setup.py install
cd ../
```
Installation: just put the scripts wherever you want.
Configuration: see `CONFIG.example`, default config path is `~/.xmpputils`
```
cp CONFIG.example `~/.xmpputils
```
Edit `~/.xmpputils` with your xmpp credentials.
Usage: (assuming you're in xmpputils/)
```
echo "This is a test" | ./sendxmpp.py user@host
```
```
./sendxmpp.py < README.md user@host
```