]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Mollom/README
Merge branch '0.9.x' into 1.0.x
[quix0rs-gnu-social.git] / plugins / Mollom / README
index 210e9000bf618720a67305a98d5c828f3cbcf123..2b8c2d8a0f9a3fd43bb34be3c5a5dd3827ed2d13 100644 (file)
@@ -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')
+    )
+);
 
 ?>