Diogo Cordeiro b730582336 [CORE] Add GNUSOCIAL_ENGINE_REPO_URL and increase usage of GNUSOCIAL_ENGINE_URL 5 vuotta sitten
..
actions b41f9620fa [LIB_REFACTOR] Fix requires 5 vuotta sitten
classes ee7f0a2016 [DATABASE] Re-introduce PostgreSQL support 5 vuotta sitten
forms de55d8f83b plugins onAutoload now only overloads if necessary (extlibs etc.) 11 vuotta sitten
lib 62b90c29db [DATABASE] Introduce a bool type in schema 5 vuotta sitten
locale aee5506f00 [PLUGINS] Removed GeoURL as the service doesn't exist anymore 5 vuotta sitten
scripts ad91ef66bd [SCRIPTS] Set PUBLICDIR in plugin scripts as well 5 vuotta sitten
ActivitySpamPlugin.php b730582336 [CORE] Add GNUSOCIAL_ENGINE_REPO_URL and increase usage of GNUSOCIAL_ENGINE_URL 5 vuotta sitten
README a614205663 Add plugin READMEs 8 vuotta sitten

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');