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