<br><br><div class="gmail_quote">On Mon, Apr 4, 2011 at 8:09 AM, Asterisk User <span dir="ltr">&lt;<a href="mailto:asteruserlist@gmail.com">asteruserlist@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<br>Hello all, I am trying to figure out the logic in on prefix matching for Asterisk 1.4.5. I want to be able to pass all international calls EXCEPT calls to 011870, 01137455 and so on. <br><br>exten =&gt; _011870.,1,Goto(intl-disabled,s,1)<br>

exten =&gt; _01137455.,2,Goto(intl-disabled,s,1)<br>exten =&gt; _01137477.,3,Goto(intl-disabled,s,1)<br>exten =&gt; _0113749.,4,Goto(intl-disabled,s,1)<br>exten =&gt; _011.,5,Goto(intl-disabled,s,1)<br>exten =&gt; _011.,6,Playback(all-outgoing-lines-unavailable)<br>

exten =&gt; _011.,7,Wait(1)<br>exten =&gt; _011.,8,Playback(please-hang-up-and-dial-operator)<br>exten =&gt; _011.,9,Hangup<br><br>Is this correct or should it be:<br><br>exten =&gt; _011870X,1,Goto(intl-disabled,s,1)<br>

exten =&gt; _01137455X,2,Goto(intl-disabled,s,1)<br><br>I tried searching for definitive information on voip-wiki, nerd vittles, but there is a lot of confusion.<br></blockquote><div><br>Assuming that 011870 is followed by more than digit, normally, I&#39;d say your first set is more applicable.<br>
The . in the pattern at the end means any number of digits, followed by a timeout.<br>If you know the number of digits, and it is fixed, then you could use<br>_011870XXXXXXX or similar to avoid the timeout, and begin the Goto immediately on reception of the final digit.<br>
<br>The X in the second set will match just one digit, and the Goto will be be executed.<br><br>Does that help?<br> <br></div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<br><br></blockquote></div>-- <br><div><span style="font-size: 13.3px; font-family: Verdana,Arial,Helvetica,sans-serif;"><div style="margin: 0pt 0pt 8px;"><p style="margin: 0pt;"><span style="font-family: comic sans ms,sans-serif; font-size: medium;">Steve Murphy</span></p>

<p style="margin: 0pt;"><span style="font-family: comic sans ms,sans-serif; font-size: medium;">ParseTree Corporation<br></span></p><br>
</div></span></div>