@miconda Please check latest commit.
It brakes 180 and 183 responses with Contact header
```
/* keep contact without updates for redirect responses sent out */
** if(msg->first_line.u.reply.statuscode<300
** || msg->first_line.u.reply.statuscode>=400) {
contact_keep = 1;
}
if(contact_keep==0 && msg->first_line.u.reply.statuscode>100
&& msg->first_line.u.reply.statuscode<200
&& msg->contact==NULL) {
contact_keep = 1;
}
if(contact_keep==0) {
```
Expression marked with ** evaluates for 180 and 183 before your expression and set
contact_keep = 1 so next expression will not be evaluated.
Thank you.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/1720#issuecomment-441043323