Diogo Peralta Cordeiro 6e031d623a [VersionBump] 2.0.0beta0 3 سال پیش
..
actions ab3e8ce21d [LIB_REFACTOR] Fix requires 3 سال پیش
classes 16b5ddd230 [DATABASE] Re-introduce PostgreSQL support 3 سال پیش
forms de55d8f83b plugins onAutoload now only overloads if necessary (extlibs etc.) 11 سال پیش
lib 3f17a0efea [DATABASE] Introduce a bool type in schema 3 سال پیش
locale 6e031d623a [VersionBump] 2.0.0beta0 3 سال پیش
scripts a0f72fe5c6 Avoid ordering just by a timestamp 3 سال پیش
ActivitySpamPlugin.php 165edc2609 [CORE] Add GNUSOCIAL_ENGINE_REPO_URL and increase usage of GNUSOCIAL_ENGINE_URL 3 سال پیش
README a614205663 Add plugin READMEs 8 سال پیش

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