Hi, I'm handling with a Nortel CS2K softswitch that sends me incorrect SDP's since it uses LF at the end of each line in SDP instead of CRLF (as it's mandatory according to the SDP grammar). AFAIK some phones can fail when receiving this incorrect SDP.
Unfortunatelly I can't try a workaround now but I'm thinkink about using "textmodules" in this way:
if ($si == NORTEL_CS2K_IP) replace_body("\n$", "\r\n");
By your experience, should it work? I assume that "Content-Length" is automatically updated before the message leaves OpenSer. So just it, should it work?
Thanks a lot.