Diogo Cordeiro 1049080df5 [CORE] Move public resources to a /public directory 6 år sedan
..
actions 7967db6ff5 Various obvious bug fixes and better PHP 7 support 5 år sedan
classes 7967db6ff5 Various obvious bug fixes and better PHP 7 support 5 år sedan
forms de55d8f83b plugins onAutoload now only overloads if necessary (extlibs etc.) 11 år sedan
lib 63c087a255 Consistent behaviour for ScopingNoticeStream $scoped 8 år sedan
locale c7afe2f86c [TRANSLATION] Update Plugin POs 5 år sedan
scripts 2a4dc77a63 The overloaded DB_DataObject function staticGet is now called getKV 11 år sedan
ActivitySpamPlugin.php 5c0a3102ff [ROUTES] Allow accept-header specification during router creation 5 år sedan
README a614205663 Add plugin READMEs 8 år sedan

README

The ActivitySpam plugin is a spam filter for GNU social.

It needs to connect to a activityspam server.
You can run one yourself: https://github.com/e14n/activityspam
Or use a public instance ( ex: https://spamicity.info/ )

Installation
============
add "addPlugin('ActivitySpam');"
to the bottom of your config.php

Settings
========
server: URL to the activityspam server
consumerkey: The "key" provided by the activityspam server after you've registered and configured an account.
secret: The "secret" provided by the activityspam server after you've registered and configured an account

Example
=======
$config['activityspam']['server'] = 'https://spamicity.info/';
$config['activityspam']['consumerkey'] = 'CONSUMER_KEY';
$config['activityspam']['secret'] = 'SECRET';
addPlugin('ActivitySpam');