Hi,
i have one sip phone connected to cucm 12.0 , i have created an SIP Normalization Script attached to an sip profile.
Function in M.outbound_INVITE seem to work correctly, but function M.inbound_INVITE not trigger.
There is a limit in this?
I have make this to test but my phone send invite with SDP and cucm seem to receive it and call is established, i expect
a call drop
M = {}
function M.inbound_INVITE(msg)
msg:setSdp(nil)
return M
if i make this
M = {}
function M.outbound_INVITE(msg)
msg:setSdp(nil)
return M
calls correctly dropped (this is only for a test, i need to change some ip in my sdp).
Why Normalization Script not work for inbound invite message?