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