Hi there, <br><br>to give you an idea of what Jon is saying...<br><br>in your extensions.conf you can probably try this..<br><br>exten =&gt; 1,1,BackGround(/var/lib/asterisk/sounds/TEXX-JP-WAV-8000/TEXX-JP-7-welcome)<br>exten =&gt; 1,2,SayDigits(${CALLERIDNUM})
<br>exten =&gt; 1,3,AGI(checkRegist.agi,${CALLERIDNUM})<br>exten =&gt; 1,4,GotoIf($[&quot;${ISREGISTERED}&quot; = &quot;0&quot;]?texx-nihonggo-temp-regt|readnum|1:texx-nihonggo-regt-menu|readnum|1)<br>exten =&gt; h,1,Hangup
<br><br>then in you agi script...<br><br>$sql = &quot;select status from phone where phonenumber = ? and status &lt;&gt; &#39;1&#39;&quot;;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $sth = $dbh-&gt;prepare($sql);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $sth-&gt;execute($phonenumber);
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ret = $sth-&gt;rows();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if ($ret &gt; 0) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $AGI-&gt;set_variable(&#39;ISREGISTERED&#39;, &#39;1&#39;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; exit;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } else {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $AGI-&gt;set_variable(&#39;ISREGISTERED&#39;,&#39;0&#39;);
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br><br><br>Hope that helps..<br><br>Best Regards,<br>Joanna Liza Mariazeta<br><a href="http://www.mariazeta.com">www.mariazeta.com</a><br><br><div><span class="gmail_quote">On 2/8/07, <b class="gmail_sendername">
prasanth</b> &lt;<a href="mailto:rpmadala@mantragroup.com">rpmadala@mantragroup.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I have a fairly complicated setup. Extensions (1,2 and 3). In 3 - I<br>execute AGI in java which plays few wav files depending on external<br>parameters.<br><br>Can I have a dial plan inside my AGI? If not, how do I accomodate user
<br>who needs to reach extension 2 from my agi? I have tried stream file and<br>get data but the two commands did not work at all.<br>_______________________________________________<br>--Bandwidth and Colocation provided by 
<a href="http://Easynews.com">Easynews.com</a> --<br><br>asterisk-users mailing list<br>To UNSUBSCRIBE or update options visit:<br>&nbsp;&nbsp; <a href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users
</a><br></blockquote></div><br>