1<?php 2 3$conf['tba_block_time'] = 600; // Block a user 10 minutes 4$conf['tba_nb_attempt'] = 5; // If he failed 5 attempts to login 5$conf['tba_mean_time'] = 120; // Within 2 minutes 6$conf['tba_whitelist'] = '127.0.0.1'; // And is not on the white list 7 8$conf['tba_iptime_file'] = 'users.pbf'; // Log users attempts into this file 9$conf['tba_block_file'] = 'block.pbf'; // Log blocked users into this one 10$conf['tba_lockfile'] = 'lock.pbf'; // Lock file to know when we can put content into the two others 11 12$conf['tba_send_mail'] = ''; // Send email to admins when a user has been banned, leave blank if to noone 13 14$conf['tba_block_whole_wiki'] = 0; // Define whether to block the whole wiki or just the login page 15