<div dir="ltr">On Fri, Jan 11, 2013 at 10:29 AM, Satish Barot <span dir="ltr">&lt;<a href="mailto:satish4asterisk@gmail.com" target="_blank">satish4asterisk@gmail.com</a>&gt;</span> wrote:<br><div class="gmail_extra"><div class="gmail_quote">
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div class="im">On Thu, Jan 10, 2013 at 7:53 PM, RSCL Mumbai <span dir="ltr">&lt;<a href="mailto:rscl.mumbai@gmail.com" target="_blank">rscl.mumbai@gmail.com</a>&gt;</span> wrote:<br>
</div><div class="gmail_extra"><div class="gmail_quote"><div class="im">
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Hello,<br>
<br>
Can asteriskCDR logs tell me if a call was disconnected by the caller<br>
or the Agent ?<br>
<br>
My call flow is as follows:<br>
Caller Dials a DID &gt;&gt; Inbound Routes &gt; Play Greeting &gt; Call Enter<br>
Queue &gt; Call sent to Dynamic Logged-in Agent(s)<br>
<br>
Thank you in advance.<br>
<br>
Best regards,<br>
Sans<br></blockquote><div><br></div></div><div>I would use userfield of CDR to identify who disconnected the call and have following sort of logic in a context where I send a call to Queue application. </div><div><br>
</div><div><div>... ...</div><div>... ...</div><div>same =&gt; n,Set(HNGPPARTY=CALLER)</div><div>same =&gt; n,Queue(QNAME,c,,,60)</div><div>same =&gt; n,ExecIf($[&quot;${QUEUESTATUS}&quot; = &quot;CONTINUE&quot;]?Set(HNGPPARTY=AGENT):)</div>

<div>... ...</div><div><br></div><div>exten =&gt; h,1,set(CDR(userfield)=${HNGPPARTY})</div><div><br></div><div>Note that if nobody answers a call then a variable HNGPPARTY would be empty.<span class=""><font color="#888888"><br>
</font></span></div><span class=""><font color="#888888"><div><br></div><div>
--Satish Barot</div><div>Ahmedabad,Gujarat,India.</div></font></span></div></div></div></div>
</blockquote></div><br></div><div class="gmail_extra" style>A small correction...</div><div class="gmail_extra" style>same =&gt; n,ExecIf($[&quot;${QUEUESTATUS}&quot; = &quot;CONTINUE&quot;]?Set(HNGPPARTY=AGENT):Set(HNGPPARTY=))</div>
</div>