Latest fail2ban upgrade broked everything.
the latest fail2ban update switched to a new datedetector.py
this detector does not intercept date like this:
Oct 1 10:06:14 (maillog format)
or this:
30/Sep/2013:19:44:50 (sslaccesslog)
for this I have this entry:
# Apache format [31/Oct/2006:09:22:55 -0000]
template = DateStrptime()
template.setName("Day/MONTH/Year:Hour:Minute:Second")
template.setRegex("\d{2}/\S{3}/\d{4}:\d{2}:\d{2}:\d{2}")
template.setPattern("%d/%b/%Y:%H:%M:%S")
I am trying to insert the correct entry in the date detector to match this date
but without any luck.
Have you got fail2ban working for this entry?