<div dir="ltr">ok thank you i will verify and i will update you <div><br></div><div style>thanks for your help </div></div><div class="gmail_extra"><br><br><div class="gmail_quote">2013/7/25 A J Stiles <span dir="ltr">&lt;<a href="mailto:asterisk_list@earthshod.co.uk" target="_blank">asterisk_list@earthshod.co.uk</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">On Thursday 25 July 2013, Salaheddine Elharit wrote:<br>
</div><div class="im">&gt; thanks for your help when i use<br>
&gt;<br>
&gt; exten =&gt; s,1,NoOp(User chose support option)<br>
&gt; exten =&gt; s,n,Dial(SIP/228, 10)<br>
&gt; exten =&gt; s,n,Goto(${DIALSTATUS},1)<br>
&gt; exten =&gt; NOANSWER,1,Goto(call,s,1)<br>
&gt;<br>
&gt; with no answer i can coto [call] without issue but with answer like below i<br>
&gt; can&#39;t get [call]<br>
&gt;<br>
&gt; exten =&gt; s,1,NoOp(User chose support option)<br>
&gt; exten =&gt; s,n,Dial(SIP/228, 10)<br>
&gt; exten =&gt; s,n,Goto(${DIALSTATUS},1)<br>
&gt; exten =&gt; ANSWER,1,Goto(call,s,1)<br>
<br>
<br>
</div>Immediately after the Dial() statement, add a line like<br>
exten =&gt; s,nNoOp(Dial status is ${DIALSTATUS})<br>
<br>
That will show you the actual contents of ${DIALSTATUS} in the CLI  (in case<br>
it is not what you are expecting).  Call your extension a few times, and see<br>
exactly what you get when the line is answered, unanswered, engaged and maybe<br>
if the phone is unplugged.<br>
<br>
Instead of having a separate extension named after every possible value of<br>
${DIALSTATUS} it might be easier to use a GotoIf() statement to jump away in<br>
one case  (most sensibly, if the call was answered),  and fall through to the<br>
default otherwise  (&quot;engaged&quot; and &quot;phone not connected&quot; are similar enough to<br>
&quot;no answer&quot; for that probably to be what you want, barring special values --<br>
feel free to use more GotoIf() statements if required).<br>
<br>
Something like:<br>
<br>
exten =&gt; s,n,GotoIf($[&quot;${DIALSTATUS}&quot; = &quot;ANSWER&quot;]?answered)<br>
exten =&gt; s,n,NoOp(execution continues here if no answer)<br>
...<br>
exten =&gt; s,n,Hangup()<br>
exten =&gt; s,n(answered),NoOp(we jump here if call was answered)<br>
...<br>
exten =&gt; s,n,Hangup()<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
--<br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
               <a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
   <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br>
</div></div></blockquote></div><br></div>