forked from GNUsocial/gnu-social
5414396a2e
* Fake_XMPP back to Queued_XMPP, refactor how we use it and don't create objects and load classes until we need them. * fix fatal error in IM settings while waiting for a Jabber confirmation. * Caching fix for user_im_prefs * fix for saving multiple transport settings * some fixes for AIM & using normalized addresses for lookups
28 lines
690 B
Plaintext
28 lines
690 B
Plaintext
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
|
|
|
|
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 AIM
|
|
password*: password for that user
|
|
|
|
* required
|
|
default values are in (parenthesis)
|
|
|
|
Example
|
|
=======
|
|
addPlugin('aim', array(
|
|
'user=>'...',
|
|
'password'=>'...'
|
|
));
|
|
|