]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/ActivitySpam/README
Merge branch 'master' into mmn_fixes
[quix0rs-gnu-social.git] / plugins / ActivitySpam / README
1 The ActivitySpam plugin is a spam filter for GNU social.
2
3 It needs to connect to a activityspam server.
4 You can run one yourself: https://github.com/e14n/activityspam
5 Or use a public instance ( ex: https://spamicity.info/ )
6
7 Installation
8 ============
9 add "addPlugin('ActivitySpam');"
10 to the bottom of your config.php
11
12 Settings
13 ========
14 server: URL to the activityspam server
15 consumerkey: The "key" provided by the activityspam server after you've registered and configured an account.
16 secret: The "secret" provided by the activityspam server after you've registered and configured an account
17
18 Example
19 =======
20 $config['activityspam']['server'] = 'https://spamicity.info/';
21 $config['activityspam']['consumerkey'] = 'CONSUMER_KEY';
22 $config['activityspam']['secret'] = 'SECRET';
23 addPlugin('ActivitySpam');