On 06.09.2010 13:46, [email protected] wrote:
dpid priority matchop matchex matchlen subsex replaceex attributes 0 1 1 (00|\+)([1-9][0-9]+) 0 (00|\+)([1-9][0-9]+) \2 0 1 1 ([5-9][0-9]{8}) 0 ([5-9][0-9]{8}) 34\1The first rule 'it's supposed' to remove + or 00 from full qualified E164 numbers, the seccond rule 'should' add 34 as prefix to all 'valid' spanish numbers, they was running on some little test I did, but when try to put them on pre-production enviroment I get strage results. I call dp_translate as dp_translate("0","$rU/$rU"); And this what I get : Input RURI Output RURI [email protected] [email protected]
I'd suppose that both rules match this RURI and since they have the same priority the first one applies.. (00|\+) matches 00 in any part of the string, so leading 9 is simply discarded and you get XXXXXX. Try putting it as ^(00|\+)([1-9][0-9]+) and ^([5-9][0-9]{8}) to designate start of the string.
-- Sincerely, Andrew Pogrebennyk _______________________________________________ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list [email protected] http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
