README.md

 1# xmppc
 2
 3xmppc - command line interface (CLI) XMPP Client.
 4
 5xmppc is a XMPP command line interface client. It's written in C and is using
 6the xmpp library [libstrophe](http://strophe.im/libstrophe/).
 7
 8## Dependencies
 9
10* [libc6-dev](https://packages.debian.org/buster/libc6-dev) (2.28-10)
11* [libglib2.0-dev](https://packages.debian.org/buster/libglib2.0-dev) (2.58.3)
12* [libstrophe-dev](https://packages.debian.org/buster/libstrophe-dev) (0.9.2-2)
13* [libgpgme-dev](https://packages.debian.org/buster/libgpgme-dev) (1.12.0)
14
15## Build
16
17The project is using [GNU Automake](https://www.gnu.org/software/automake/).
18
19```
20aptitude install libstrophe-dev
21./bootstrap.sh
22./configure
23make
24```
25
26## Config file
27
28Config file: ` ~/.config/xmppc.conf`
29
30```
31[default]
32jid=user@domain.tld
33pwd=YourSecret
34
35[account1]
36jid=account1@domain.tld
37pwd=YourSecret
38```
39
40## Usage
41
42```
43xmppc --jid user@domain.tld --pwd "password" --mode roster list
44xmppc -j user@domain.tld -p "password" -m roster list
45xmppc -a alice -m mam list bob@domain.tld
46xmppc -m bookmark list
47xmppc -h
48```
49
50More command and information see: [Wiki](https://codeberg.org/Anoxinon_e.V./xmppc/wiki)
51
52## Documentation
53
54* [Wiki](https://codeberg.org/Anoxinon_e.V./xmppc/wiki)
55