Hi.
Can someone help me make a LUA script which removes the "Asserted Identity" field in the SIP header for inbound calls to a CUCM 8 SIP trunk?
Thanks.
Best reg,
Tore S
The following code should do what you have requested:
M = {}
function M.inbound_INVITE(msg)
msg:removeHeader("P-Asserted-Identity")
end
return M