]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Msn/README
Merge branch 'master' into 1.0.x
[quix0rs-gnu-social.git] / plugins / Msn / README
1 The MSN plugin allows users to send and receive notices over the MSN network.
2
3 Required PHP extensions:
4 curl pcre mhash mcrypt bcmath
5
6 Installation
7 ============
8 add "addPlugin('msn',
9     array('setting'=>'value', 'setting2'=>'value2', ...);"
10 to the bottom of your config.php
11
12 scripts/imdaemon.php included with StatusNet must be running. It will be started
13 by the plugin along with their other daemons when you run
14 scripts/startdaemons.sh. See the StatusNet README for more about queuing and
15 daemons.
16
17 Settings
18 ========
19 user*: username (screenname) to use when logging into MSN
20 password*: password for that user
21 nickname*: nickname for the bot
22
23 * required
24 default values are in (parenthesis)
25
26 Example
27 =======
28 addPlugin('msn', array(
29     'user' => '...',
30     'password' => '...',
31     'nickname' => '...'
32 ));