]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Mollom/README
Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
[quix0rs-gnu-social.git] / plugins / Mollom / README
index 210e9000bf618720a67305a98d5c828f3cbcf123..63175c2b7de8f06a23bcb0832d5f05dd0f00e1c9 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,14 +7,17 @@ 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')
+    )
+);
 
-?>
 
-replace '...' with your own public and private keys for your site, which you can get from mollom.com
+replace '...' with your own public and private keys for your site, which you can
+get from mollom.com.
 
-If you're using this plugin, i'd love to know about it -- shiny@cpan.org or shiny on freenode.
+If you're using this plugin, i'd love to know about it -- shiny@cpan.org or
+shiny on freenode.