Hi Gang
I have a observation which I don't understand...
Let's assume we have an inbound $rU = 12345
And I want to change $rU outbound to 0012345
Doing:
$rU = "0012345"; ds_select_dst("2000"),"6"); route(RELAY)
The call is being sent out with unaltered R-URI Username: 12345
Doing:
$rU = "0012345"; ds_select_domain("2000", "6"); route(RELAY);
The call is being sent out with the intended new R-URI Username: 0012345
Looking at the docs: https://kamailio.org/docs/modules/5.4.x/modules/dispatcher.html#dispatcher.f...
I can not figure out, why I see this difference.