From 2e8a4e3a0f4cbbf56e8a80e92a01b83d9dec15df Mon Sep 17 00:00:00 2001 From: Luke Fitzgerald Date: Tue, 29 Jun 2010 10:57:48 -0700 Subject: [PATCH] Added README file --- plugins/Msn/README | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 plugins/Msn/README diff --git a/plugins/Msn/README b/plugins/Msn/README new file mode 100644 index 0000000000..1c799a253f --- /dev/null +++ b/plugins/Msn/README @@ -0,0 +1,29 @@ +The MSN plugin allows users to send and receive notices over the MSN network. + +Installation +============ +add "addPlugin('msn', + array('setting'=>'value', 'setting2'=>'value2', ...);" +to the bottom of your config.php + +scripts/imdaemon.php included with StatusNet must be running. It will be started by +the plugin along with their other daemons when you run scripts/startdaemons.sh. +See the StatusNet README for more about queuing and daemons. + +Settings +======== +user*: username (screenname) to use when logging into MSN +password*: password for that user +nickname*: nickname for the bot + +* required +default values are in (parenthesis) + +Example +======= +addPlugin('msn', array( + 'user' => '...', + 'password' => '...', + 'nickname' => '...' +)); + -- 2.39.5