]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Xmpp/README
Merge branch '0.9.x' into 1.0.x
[quix0rs-gnu-social.git] / plugins / Xmpp / README
1 The XMPP plugin allows users to send and receive notices over the XMPP/Jabber/GTalk network.
2
3 Installation
4 ============
5 add "addPlugin('xmpp',
6     array('setting'=>'value', 'setting2'=>'value2', ...);"
7 to the bottom of your config.php
8
9 The daemon included with this plugin must be running. It will be started by
10 the plugin along with their other daemons when you run scripts/startdaemons.sh.
11 See the StatusNet README for more about queuing and daemons.
12
13 Settings
14 ========
15 user*: user part of the jid
16 server*: server part of the jid
17 resource: resource part of the jid
18 port (5222): port on which to connect to the server
19 encryption (true): use encryption on the connection
20 host (same as server): host to connect to. Usually, you won't set this.
21 debug (false): log extra debug info
22 public: list of jid's that should get the public feed (firehose)
23
24 * required
25 default values are in (parenthesis)
26
27 Example
28 =======
29 addPlugin('xmpp', array(
30     'user=>'update',
31     'server=>'identi.ca',
32     'password'=>'...',
33     'public'=>array('bob@aol.com', 'sue@google.com')
34 ));
35