I need to block calls that they start with number 0. <br>i did this, but it`s not OK: <br>if (uri=~"^sip:[1-9]*@.*") {<br> rewritehost("<a href="http://10.0.0.10">10.0.0.10</a>");<br> log("access ok");
<br> route(1);<br> break;<br>};<br><br>if (uri=~"^sip:0[1-9]*@.*") {<br> log("access deny");<br> break;<br>};<br><br> How can i do this? <br>