forked from leftypol/leftypol
Fix indenting of filter code
This commit is contained in:
parent
96babb9229
commit
e69e18ae26
1 changed files with 25 additions and 25 deletions
|
@ -343,11 +343,11 @@
|
||||||
* Read more: http://tinyboard.org/docs/index.php?p=Config/Filters
|
* Read more: http://tinyboard.org/docs/index.php?p=Config/Filters
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Minimum time between between each post by the same IP address.
|
// Minimum time between between each post by the same IP address.
|
||||||
$config['flood_time_ip'] = 10;
|
$config['flood_time_ip'] = 10;
|
||||||
// Minimum time between between each post with the exact same content
|
// Minimum time between between each post with the exact same content
|
||||||
$config['flood_time_repost'] = 30;
|
$config['flood_time_repost'] = 30;
|
||||||
// Minimum time between between each post with the exact same content AND same IP address.
|
// Minimum time between between each post with the exact same content AND same IP address.
|
||||||
$config['flood_time_ip_repost'] = 120;
|
$config['flood_time_ip_repost'] = 120;
|
||||||
// Minimum time between between any opening post on the same board.
|
// Minimum time between between any opening post on the same board.
|
||||||
$config['flood_time_board_op'] = 30;
|
$config['flood_time_board_op'] = 30;
|
||||||
|
@ -355,47 +355,47 @@
|
||||||
$config['flood_time_ip_op'] = 180;
|
$config['flood_time_ip_op'] = 180;
|
||||||
|
|
||||||
// Minimum time between posts by the same IP address (all boards).
|
// Minimum time between posts by the same IP address (all boards).
|
||||||
$config['filters'][] = array(
|
$config['filters'][] = array(
|
||||||
'condition' => array(
|
'condition' => array(
|
||||||
'flood-match' => array('ip'), // Only match IP address
|
'flood-match' => array('ip'), // Only match IP address
|
||||||
'flood-time' => &$config['flood_time_ip']
|
'flood-time' => &$config['flood_time_ip']
|
||||||
),
|
),
|
||||||
'action' => 'reject',
|
'action' => 'reject',
|
||||||
'message' => &$config['error']['flood']
|
'message' => &$config['error']['flood']
|
||||||
);
|
);
|
||||||
|
|
||||||
// Minimum time between between each post with the exact same content (all boards)
|
// Minimum time between between each post with the exact same content (all boards)
|
||||||
$config['filters'][] = array(
|
$config['filters'][] = array(
|
||||||
'condition' => array(
|
'condition' => array(
|
||||||
'flood-match' => array('body'), // Only match post body
|
'flood-match' => array('body'), // Only match post body
|
||||||
'flood-time' => &$config['flood_time_repost']
|
'flood-time' => &$config['flood_time_repost']
|
||||||
),
|
),
|
||||||
'action' => 'reject',
|
'action' => 'reject',
|
||||||
'message' => &$config['error']['flood']
|
'message' => &$config['error']['flood']
|
||||||
);
|
);
|
||||||
|
|
||||||
// Minimum time between posts by the same IP address with the same text (all boards)
|
// Minimum time between posts by the same IP address with the same text (all boards)
|
||||||
$config['filters'][] = array(
|
$config['filters'][] = array(
|
||||||
'condition' => array(
|
'condition' => array(
|
||||||
'flood-match' => array('ip', 'body'), // Only match IP address and post body
|
'flood-match' => array('ip', 'body'), // Only match IP address and post body
|
||||||
'flood-time' => &$config['flood_time_ip_repost'],
|
'flood-time' => &$config['flood_time_ip_repost'],
|
||||||
'!body' => '/^$/', // Post body is NOT empty
|
'!body' => '/^$/', // Post body is NOT empty
|
||||||
),
|
),
|
||||||
'action' => 'reject',
|
'action' => 'reject',
|
||||||
'message' => &$config['error']['flood']
|
'message' => &$config['error']['flood']
|
||||||
);
|
);
|
||||||
|
|
||||||
// Minimum time between between each opening post (same board)
|
// Minimum time between between each opening post (same board)
|
||||||
$config['filters'][] = array(
|
$config['filters'][] = array(
|
||||||
'condition' => array(
|
'condition' => array(
|
||||||
'OP' => true,
|
'OP' => true,
|
||||||
'flood-match' => array('board'), // Only match OPs on the same board
|
'flood-match' => array('board'), // Only match OPs on the same board
|
||||||
'flood-match' => array('isop'),
|
'flood-match' => array('isop'),
|
||||||
'flood-time' => &$config['flood_time_board_op']
|
'flood-time' => &$config['flood_time_board_op']
|
||||||
),
|
),
|
||||||
'action' => 'reject',
|
'action' => 'reject',
|
||||||
'message' => 'New threads are being created too quickly.'
|
'message' => 'New threads are being created too quickly.'
|
||||||
);
|
);
|
||||||
|
|
||||||
// Minimum time between opening posts by the same IP address (all boards)
|
// Minimum time between opening posts by the same IP address (all boards)
|
||||||
$config['filters'][] = array(
|
$config['filters'][] = array(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue