diff options
Diffstat (limited to 'plugins/Mollom/README')
-rw-r--r-- | plugins/Mollom/README | 14 |
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') + ) +); ?> |