["set <JAIL> maxretry <RETRY>","sets the number of failures <RETRY> before banning the host for <JAIL>"],
["set <JAIL> maxmatches <INT>","sets the max number of matches stored in memory per ticket in <JAIL>"],
["set <JAIL> maxlines <LINES>","sets the number of <LINES> to buffer for regex search for <JAIL>"],
["set <JAIL> addaction <ACT>[ <PYTHONFILE> <JSONKWARGS>]","adds a new action named <ACT> for <JAIL>. Optionally for a Python based action, a <PYTHONFILE> and <JSONKWARGS> can be specified, else will be a Command Action"],
["set <JAIL> delaction <ACT>","removes the action <ACT> from <JAIL>"],
@ -130,6 +133,7 @@ protocol = [
["get <JAIL> datepattern","gets the patern used to match date/times for <JAIL>"],
["get <JAIL> usedns","gets the usedns setting for <JAIL>"],
["get <JAIL> maxretry","gets the number of failures allowed for <JAIL>"],
["get <JAIL> maxmatches","gets the max number of matches stored in memory per ticket in <JAIL>"],
["get <JAIL> maxlines","gets the number of lines to buffer for <JAIL>"],
["get <JAIL> actions","gets a list of actions for <JAIL>"],
This defines where the persistent data for fail2ban is stored. This persistent data allows bans to be reinstated and continue reading log files from the last read position when fail2ban is restarted. A value of \fINone\fR disables this feature.
.TP
.Bdbmaxmatches
Max number of matches stored in database per ticket. Default: 10
.br
This option sets the max number of matched log-lines could be stored per ticket in the database. This also affects values resolvable via tags \fB<ipmatches>\fR and \fB<ipjailmatches>\fR in actions.
.TP
.Bdbpurgeage
Database purge age in seconds. Default: 86400 (24hours)
.br
@ -276,6 +281,9 @@ regex (Python \fBreg\fRular \fBex\fRpression) to be added to the filter's failre
.TP
.Bignoreregex
regex which, if the log line matches, would cause Fail2Ban not consider that line. This line will be ignored even if it matches a failregex of the jail or any of its filters.
.TP
.Bmaxmatches
max number of matched log-lines the jail would hold in memory per ticket. By default it is the same value as \fBmaxretry\fR of jail (or default). This option also affects values resolvable via tag \fB<matches>\fR in actions.