README 802 B

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