2010-01-23 06:25:27 +00:00
|
|
|
The AIM plugin allows users to send and receive notices over the AIM network.
|
|
|
|
|
|
|
|
Installation
|
|
|
|
============
|
|
|
|
add "addPlugin('aim',
|
|
|
|
array('setting'=>'value', 'setting2'=>'value2', ...);"
|
|
|
|
to the bottom of your config.php
|
|
|
|
|
2010-04-30 22:41:54 +01:00
|
|
|
scripts/imdaemon.php included with StatusNet must be running. It will be started by
|
2010-01-23 06:25:27 +00:00
|
|
|
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 AIM
|
|
|
|
password*: password for that user
|
|
|
|
|
|
|
|
* required
|
|
|
|
default values are in (parenthesis)
|
|
|
|
|
|
|
|
Example
|
|
|
|
=======
|
|
|
|
addPlugin('aim', array(
|
|
|
|
'user=>'...',
|
|
|
|
'password'=>'...'
|
|
|
|
));
|
|
|
|
|