Thanks Ben,
i see this function of uri module, but as I understand it convert only « tel » format on RURI and not on To (or From) header. Regards De : Users <[email protected]> au nom de Ben Newlin <[email protected]> Répondre à : OpenSIPS users mailling list <[email protected]> Date : jeudi 13 décembre 2018 à 14:04 À : OpenSIPS users mailling list <[email protected]> Objet : Re: [OpenSIPS-Users] convert from tel: to sip: on To header Alain, The URI module also contains a tel2sip conversion function you may wish to use. It properly handles converting parameters from tel: to sip: format, which I don’t believe your solution does. https://opensips.org/html/docs/modules/2.4.x/uri.html#func_tel2sip Ben Newlin From: Users <[email protected]> on behalf of Alain Bieuzent <[email protected]> Reply-To: OpenSIPS users mailling list <[email protected]> Date: Thursday, December 13, 2018 at 5:57 AM To: OpenSIPS users mailling list <[email protected]> Subject: Re: [OpenSIPS-Users] convert from tel: to sip: on To header Reply to myself, perhaps it can help someone ##### if we receive a call with "tel:" in To header we remove it $var(str) = 'tel:'; $var(tu) = $tu; if ($(var(tu){s.index, $var(str)}) >=0) { $var(reg) = "/tel://g"; $var(newtu) = $(var(tu){re.subst,$var(reg)}); uac_replace_to("","sip:$var(newtu)@$Ri"); } De : Users <[email protected]> au nom de Alain Bieuzent <[email protected]> Répondre à : OpenSIPS users mailling list <[email protected]> Date : mercredi 12 décembre 2018 à 17:10 À : OpenSIPS users mailling list <[email protected]> Objet : [OpenSIPS-Users] convert from tel: to sip: on To header Hi All, what is the best way to convert « tel: » format to « sip: » on a To header. For exemple : INVITE sip:[email protected];user=phone SIP/2.0 Via: SIP/2.0/UDP X.Y.Z.Z:5060;branch=z9hG4bKiqehr50040ilbvfkjfn0.1 To: <tel:+33999999999> From: "De 0888888888"<sip:[email protected];user=phone>;tag=SDu2kba01-1653662573-1544626875515- Call-ID: SDu2kba01-1317d56f03e5fc6d6dc2136c0254bed0-v300g00 CSeq: 293066302 INVITE Max-Forwards: 67 Content-Length: 255 I want to convert : « To: tel:+33999999999 » to « To: sip:[email protected]:5060 » Thanks for your help _______________________________________________ Users mailing list [email protected] http://lists.opensips.org/cgi-bin/mailman/listinfo/users _______________________________________________ Users mailing list [email protected] http://lists.opensips.org/cgi-bin/mailman/listinfo/users
_______________________________________________ Users mailing list [email protected] http://lists.opensips.org/cgi-bin/mailman/listinfo/users
