gnu-social/plugins/Blacklist
2017-04-26 22:41:59 +02:00
..
actions Moving form to its own file as we do nowadays 2017-04-25 21:13:29 +02:00
classes
forms Moving form to its own file as we do nowadays 2017-04-25 21:13:29 +02:00
locale
BlacklistPlugin.php Test URLs against blacklist also on PuSH subscriptions. 2017-04-26 22:41:59 +02:00
README Add plugin READMEs 2016-02-08 17:48:37 +00:00

Plugin to prevent use of nicknames or URLs on a blacklist

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

Settings
========
nicknames: Array of nicknames to blacklist
urls: Array of URLs to blacklist

Example
=======
$config['blacklist']['nicknames'] = array('bad_nickname', 'worse_nickname');
$config['blacklist']['urls'] = array('http://example.org', 'http://example.net');
addPlugin('Blacklist');