<div dir="ltr">i have <span style="font-family:arial,sans-serif;font-size:12.727272033691406px">Create a &quot;h&quot; extension and all works without issue .thank you so much for your help and support </span><font face="arial, sans-serif">i really appreciate it.</font></div>
<div class="gmail_extra"><br><br><div class="gmail_quote">2013/7/31 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 Wednesday 31 July 2013, Salaheddine Elharit wrote:<br>
</div><div class="im">&gt; hi<br>
&gt;<br>
&gt; i use the code below but i didn&#39;t get the We reached step 102&quot; the same<br>
&gt; result<br>
&gt;<br>
&gt; exten =&gt; 534,1,Dial(SIP/228, 10)<br>
&gt; exten =&gt; 534,n,NoOp(Dial status is ${DIALSTATUS})<br>
&gt; exten =&gt; 534,n,GotoIf($[&quot;${DIALSTATUS}&quot; = &quot;ANSWER&quot;]?answered)<br>
&gt; exten =&gt; 534,n,Goto(home,s,1)<br>
&gt; exten =&gt; 534,n(answered),NoOp(Call was answered)<br>
&gt; exten =&gt; 534,102,NoOp(We reached step 102)<br>
<br>
<br>
</div>So it looks as though it&#39;s breaking out of the extension logic altogether, if<br>
the call gets answered.  In that case, you&#39;ll have to do it the old-fashioned<br>
way:  Create a &quot;h&quot; extension  (which fires when a call is hung up)  *in the<br>
same context as your 534 extension*  (you can have a h extension in each<br>
context, if needs be), and do all your fancy end-of-call stuff there.<br>
<div class="im"><br>
exten =&gt; 534,1,Dial(SIP/228, 10)<br>
exten =&gt; 534,n,NoOp(Dial status is ${DIALSTATUS})<br>
</div>exten =&gt; 534,n,Goto(home,s,1)<br>
<br>
exten =&gt; h,1,NoOp(Hangup received. Dial status is ${DIALSTATUS})<br>
<br>
Note that if there are other extensions in the context, h will be called when<br>
they get hung up -- you might need some logic in there to deal with this  (or<br>
cheat by just having one extension besides h in this context, and use a fully-<br>
specified Goto() to jump into it.)<br>
<div class="im HOEnZb"><br>
<br>
--<br>
AJS<br>
<br>
Answers come *after* questions.<br>
<br>
</div><div class="HOEnZb"><div class="h5">--<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>