Dear serusers,
I am running 0.9.4 and am successfully logging calls to MySQL using the ACC
module.
I have added a statement to my ser.cfg to get the ACC module to NOT log
OPTIONS as follows:
if (method!="OPTIONS")
{
setflags..
}
The above works and I am not logging OPTIONS.
I tried the modification below, but it didn't work to get rid of ACK's. They
are still being logged.
if ((method!="OPTIONS") & (method!="ACK"))
{
setflags..
}
How can I get ACC NOT to log ACK's records into the database?
Leo P.