Remove whitespace
This commit is contained in:
parent
d3eab78782
commit
70055d4d76
@ -26,33 +26,33 @@
|
|||||||
*/
|
*/
|
||||||
$rcmail_config['defense_whitelist'] = array('127.0.0.1');
|
$rcmail_config['defense_whitelist'] = array('127.0.0.1');
|
||||||
$rcmail_config['defense_blacklist'] = array();
|
$rcmail_config['defense_blacklist'] = array();
|
||||||
|
|
||||||
|
|
||||||
/* IP is banned when there are <defense_fail_max> failed
|
/* IP is banned when there are <defense_fail_max> failed
|
||||||
* login attempts within <defense_fail_reset> seconds */
|
* login attempts within <defense_fail_reset> seconds */
|
||||||
|
|
||||||
// Number of failed attempts until ban. Set to 0 to never ban (why would you do that?)
|
// Number of failed attempts until ban. Set to 0 to never ban (why would you do that?)
|
||||||
$rcmail_config['defense_fail_max'] = 5;
|
$rcmail_config['defense_fail_max'] = 5;
|
||||||
|
|
||||||
// Reset fail counter after this number of seconds
|
// Reset fail counter after this number of seconds
|
||||||
$rcmail_config['defense_fail_reset'] = 600;
|
$rcmail_config['defense_fail_reset'] = 600;
|
||||||
|
|
||||||
// Default ban period
|
// Default ban period
|
||||||
$rcmail_config['defense_ban_period'] = 120;
|
$rcmail_config['defense_ban_period'] = 120;
|
||||||
|
|
||||||
// Repeated offenders have their banperiod multiplied, set to 1 to not multiply
|
// Repeated offenders have their banperiod multiplied, set to 1 to not multiply
|
||||||
$rcmail_config['defense_repeat_multiplier'] = 4;
|
$rcmail_config['defense_repeat_multiplier'] = 4;
|
||||||
|
|
||||||
// Reset repeat offender count after this number of seconds or
|
// Reset repeat offender count after this number of seconds or
|
||||||
// multiply last ban period by <defense_repeat_multiplier>, whichever is greater
|
// multiply last ban period by <defense_repeat_multiplier>, whichever is greater
|
||||||
$rcmail_config['defense_repeat_reset'] = 86400;
|
|
||||||
|
|
||||||
|
$rcmail_config['defense_repeat_reset'] = 86400;
|
||||||
// Name of table in database
|
// Name of table in database
|
||||||
$rcmail_config['defense_db_table'] = 'defense';
|
$rcmail_config['defense_db_table'] = 'defense';
|
||||||
|
|
||||||
// Expire database entries more than X days old. Set to 0 to never expire
|
// Expire database entries more than X days old. Set to 0 to never expire
|
||||||
$rcmail_config['defense_db_expire'] = 30;
|
$rcmail_config['defense_db_expire'] = 30;
|
||||||
|
|
||||||
// Log attempted passwords (could be insecure, disabled by default)
|
// Log attempted passwords (could be insecure, disabled by default)
|
||||||
$rcmail_config['defense_log_pwd'] = false;
|
$rcmail_config['defense_log_pwd'] = false;
|
||||||
?>
|
?>
|
Loading…
x
Reference in New Issue
Block a user