]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Msn/README
Merge branch '0.9.x' of gitorious.org:statusnet/mainline 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 by
13 the plugin along with their other daemons when you run scripts/startdaemons.sh.
14 See the StatusNet README for more about queuing and daemons.
15
16 Settings
17 ========
18 user*: username (screenname) to use when logging into MSN
19 password*: password for that user
20 nickname*: nickname for the bot
21
22 * required
23 default values are in (parenthesis)
24
25 Example
26 =======
27 addPlugin('msn', array(
28     'user' => '...',
29     'password' => '...',
30     'nickname' => '...'
31 ));
32