summaryrefslogtreecommitdiff
path: root/plugins/Mollom/README
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2010-01-06 00:20:15 -0500
committerCraig Andrews <candrews@integralblue.com>2010-01-06 00:20:15 -0500
commit3b5299b5ca327bab1013e23b6284ce92bea6db04 (patch)
treeededcfb18bf1d1bae632d52e9e9304d02cc01495 /plugins/Mollom/README
parent76cc791642020084202ef261b3278eb99cf94ec7 (diff)
Use plugin configuration instead of common_config()
Diffstat (limited to 'plugins/Mollom/README')
-rw-r--r--plugins/Mollom/README14
1 files changed, 9 insertions, 5 deletions
diff --git a/plugins/Mollom/README b/plugins/Mollom/README
index 210e9000b..2b8c2d8a0 100644
--- a/plugins/Mollom/README
+++ b/plugins/Mollom/README
@@ -1,3 +1,5 @@
+The mollom plugin uses mollom.com to filter SN notices for spam.
+
== Dependencies ==
Your webserver needs to have xmlrpc php extention loaded.
This is called php5-xmlrpc in Debian/Ubuntu
@@ -5,11 +7,13 @@ This is called php5-xmlrpc in Debian/Ubuntu
== Installation ==
Add the following to your config.php
<?php
-addPlugin('Mollom');
-
-$config['mollom']['public_key'] = '...';
-$config['mollom']['private_key'] = '...';
-$config['mollom']['servers'] = array('http://88.151.243.81', 'http://82.103.131.136');
+addPlugin('Mollom',
+ array(
+ 'public_key' => '...',
+ 'private_key' => '...',
+ 'servers' => array('http://88.151.243.81', 'http://82.103.131.136')
+ )
+);
?>