### Description Upgraded to 5.6 from 5.5, looked through docs - and no mention of removal of ring_insert_callid - so upgrade failed.
Found https://github.com/kamailio/kamailio/issues/2989
### Possible Solutions Add documentation that the function is removed, and how to replace it with textops/htable and/or reply routes
Yes, this is indeed missing. Basically you can do something like this, to give you the idea:
``` route { ... t_on_reply("manage_18X"); t_relay() ... }
onreply_route[manage_18X] { if (t_check_status("183")) { # drop or alter message change_reply_status_code("180"); remove_body() } } ```
Closed #3212 as completed.
Added to the upgrade page in the wiki:
- https://github.com/kamailio/kamailio-wiki/blob/main/docs/install/upgrade/5.5...
If anyone wants to add more (e.g., examples), a commit/PR can be made to the wiki project.
If further discussions are needed for sorting out config solutions, the sr-users@lists.kamailio.org mailing list can be used.