Code: Select all
As this applies to ZoneMinder filters, you might want to search for events in a period of time, or maybe for example create a purge filter that removes events older than 30 days. For the later you would want at least two lines in your filter. The first line should be:
[<Archive Status> <equal to> <Unarchived Only>]
as you don't want to delete your archived events.
Your second line to find events older than 30 days would be:
[and <Date>< greater than> -30 days]
[and <Date>< less than> -30 days]
At least, I could delete events older than 30 days, when using that condition.