On Dec 04, 2004 at 19:59, Axel <axel(a)avenue500.com> wrote:
Hi,
I am running SER and MYSQL on Solaris 8 and have the latest package of both running. Ser
will run fine as standalone without any connection to MYSQL, but as soona s I try to
connect it with MYSQL I get an error. I have it pasted here and after is my config file:
bash-2.03# serA
[...]
0(9289) parse error (79,16-23): syntax error
0(9289) parse error (79,16-23): equal/!= operator expected
^^^^^^^^^^ this is the error
[...]
route{
# initial sanity checks -- messages with
# max_forwards==0, or excessively long requests
if (!mf_process_maxfwd_header("10")) {
sl_send_reply("483","Too Many Hops");
break;
};
if ( msg:len max_len ) {
^^^^^^^^^^^^^^^^
msg:len > max_len
or better
msg:len > 4096 (since > max_len will never happen)
Andrei