<html><head><meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"><style>body { line-height: 1.5; }blockquote { margin-top: 0px; margin-bottom: 0px; margin-left: 0.5em; }body { font-size: 10.5pt; font-family: 'Microsoft YaHei UI'; color: rgb(0, 0, 0); line-height: 1.5; }</style></head><body>
<div><span></span>Hi Chircu,</div><div><br></div><div>Thanks for your reply.</div><div>The 30s just my test value.</div><div>And maybe i didn't discribe my problem clearly.</div><div>I can understand that t_newtran() can create the transaction first , and i already did it before i send the first email.</div><div>But as i said, the caller still can not cancel it, because i don't know how to do it.</div><div>t_cancel_branch() only can be used in onreply_route&nbsp;<span style="font-size: 10.5pt; line-height: 1.5; background-color: window;">&nbsp;</span><span style="font-size: 10.5pt; line-height: 1.5; background-color: window;">but at that</span><span style="font-size: 10.5pt; line-height: 1.5; background-color: window;">&nbsp; time, callee is offline.</span></div><div><span style="font-size: 10.5pt; line-height: 1.5; background-color: window;"><br></span></div><div><span style="font-size: 10.5pt; line-height: 1.5; background-color: window;">Here is my cancel processing in the route , would you please tell me how can i cancel the invite which still in the while loop?</span></div><div><br></div><div><span style="font-family: &quot;" microsoft="" yahei="" ui'";="" font-size:="" 14px;="" color:="" rgb(0,="" 0,="" 0);="" background-color:="" rgba(0,="" font-weight:="" normal;="" font-style:="" normal;text-decoration:="" none;'="">&nbsp; &nbsp; &nbsp; &nbsp; #&nbsp;CANCEL&nbsp;processing<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(is_method("CANCEL"))<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(t_check_trans()){<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;t_relay();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;exit;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</span></div>
<div><br></div><hr style="width: 210px; height: 1px;" color="#b5c4df" size="1" align="left">
<div><span><div style="MARGIN: 10px; FONT-FAMILY: verdana; FONT-SIZE: 10pt"><div>merlin.li@tsingch.com</div></div></span></div>
<blockquote style="margin-top: 0px; margin-bottom: 0px; margin-left: 0.5em;"><div><br></div><div>
<div>&nbsp;</div>
<div>Message: 1</div>
<div>Date: Tue, 03 Mar 2015 14:57:32 +0200</div>
<div>From: Liviu Chircu &lt;liviu@opensips.org&gt;</div>
<div>Subject: Re: [OpenSIPS-Users] how to cancel an INVITE before the</div>
<div>        callee receive it?</div>
<div>To: users@lists.opensips.org</div>
<div>Message-ID: &lt;54F5AFBC.1000200@opensips.org&gt;</div>
<div>Content-Type: text/plain; charset="windows-1252"; Format="flowed"</div>
<div>&nbsp;</div>
<div>Hello merlin,</div>
<div>&nbsp;</div>
<div>First of all, from a user's perspective, a Post-Dial Delay of up to 30 </div>
<div>seconds should be quite annoying. Your SIP logic will also increase the </div>
<div>amount of traffic received by your platform, due to lots of </div>
<div>retransmissions for all failed calls.</div>
<div>&nbsp;</div>
<div>That being said, here is what you should add in order to make it work:</div>
<div>&nbsp;</div>
<div>t_newtran();</div>
<div>...</div>
<div>while (...) {</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp; if (t_was_cancelled()) {</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; t_reply("487", "Request Cancelled");</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; exit;</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp; }</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp; ...</div>
<div>}</div>
<div>&nbsp;</div>
<div>Best regards,</div>
<div>&nbsp;</div>
<div>Liviu Chircu</div>
<div>OpenSIPS Developer</div>
<div>http://www.opensips-solutions.com</div>
<div>&nbsp;</div>
<div>On 03.03.2015 10:45, merlin.li@tsingch.com wrote:</div>
<div>&gt; Hi,</div>
<div>&gt;</div>
<div>&gt; Or is there a way i can break the while loop in the route block when i </div>
<div>&gt; receive the CANCEL request?</div>
<div>&gt;</div>
<div>&gt; ------------------------------------------------------------------------</div>
<div>&gt; merlin.li@tsingch.com</div>
<div>&gt;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; *From:* merlin.li@tsingch.com &lt;mailto:merlin.li@tsingch.com&gt;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; *Date:* 2015-03-03 16:14</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; *To:* users &lt;mailto:users@lists.opensips.org&gt;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; *Subject:* how to cancel an INVITE before the callee receive it?</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Hi all,</div>
<div>&gt;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Let me describe my scenario first.</div>
<div>&gt;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; if the callee is not online, opensips will wait for 30s.</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; During the 30s, if the callee be online, opensips will send the</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; invite to it.</div>
<div>&gt;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $avp(timeout) = 30 ;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; while( !lookup("location","m") ){</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if( $avp(timeout)==0 ){</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; send_reply("420","Can not find the callee!");</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; exit;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sleep("1");</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $avp(timeout) = $avp(timeout)-1;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</div>
<div>&gt;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; This works well, the only problem is the caller can not cancel it</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; during that 30s</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; t_cancel_branch() only can be used in onreply_route, but at that</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; time, callee is offline.</div>
<div>&gt;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; My question is :</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Is it possible that terminate a request in route block?</div>
<div>&gt;</div>
<div>&gt;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; ------------------------------------------------------------------------</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; merlin.li@tsingch.com</div>
<div>&gt;</div>
<div>&gt;</div>
<div>&gt;</div>
<div>&gt; _______________________________________________</div>
<div>&gt; Users mailing list</div>
<div>&gt; Users@lists.opensips.org</div>
<div>&gt; http://lists.opensips.org/cgi-bin/mailman/listinfo/users</div>
<div>&nbsp;</div>
<div>-------------- next part --------------</div>
<div>An HTML attachment was scrubbed...</div>
<div>URL: &lt;http://lists.opensips.org/pipermail/users/attachments/20150303/a9747213/attachment-0001.htm&gt;</div>
<div>&nbsp;</div>
<div>------------------------------</div>
<div>&nbsp;</div>
<div>Message: 2</div>
<div>Date: Tue, 03 Mar 2015 15:15:23 +0200</div>
<div>From: Liviu Chircu &lt;liviu@opensips.org&gt;</div>
<div>Subject: Re: [OpenSIPS-Users] how to cancel an INVITE before the</div>
<div>        callee receive it?</div>
<div>To: users@lists.opensips.org</div>
<div>Message-ID: &lt;54F5B3EB.9050808@opensips.org&gt;</div>
<div>Content-Type: text/plain; charset="windows-1252"; Format="flowed"</div>
<div>&nbsp;</div>
<div>The previous solution won't work because you can't call </div>
<div>t_was_cancelled() in the main route... You should:</div>
<div>&nbsp;</div>
<div>1) set $T_fr_timeout and $T_fr_inv_timeout to 1</div>
<div>2) t_on_failure(...) [1]</div>
<div>3) t_relay() to a bogus gateway [2]</div>
<div>4) catch the 408 timeout in the failure route. Using an $avp counter, go </div>
<div>back to step 1) until 30 tries have been done. In this failure route, </div>
<div>you may now also use t_was_cancelled().</div>
<div>&nbsp;</div>
<div>[1] : http://www.opensips.org/Documentation/Script-Routes-2-1#toc3</div>
<div>[2] : http://www.opensips.org/html/docs/modules/2.1.x/tm.html#trelay-1</div>
<div>&nbsp;</div>
<div>On 03.03.2015 14:57, Liviu Chircu wrote:</div>
<div>&gt; Hello merlin,</div>
<div>&gt;</div>
<div>&gt; First of all, from a user's perspective, a Post-Dial Delay of up to 30 </div>
<div>&gt; seconds should be quite annoying. Your SIP logic will also increase </div>
<div>&gt; the amount of traffic received by your platform, due to lots of </div>
<div>&gt; retransmissions for all failed calls.</div>
<div>&gt;</div>
<div>&gt; That being said, here is what you should add in order to make it work:</div>
<div>&gt;</div>
<div>&gt; t_newtran();</div>
<div>&gt; ...</div>
<div>&gt; while (...) {</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; if (t_was_cancelled()) {</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; t_reply("487", "Request Cancelled");</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; exit;</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; }</div>
<div>&gt;&nbsp;&nbsp;&nbsp;&nbsp; ...</div>
<div>&gt; }</div>
<div>&gt;</div>
<div>&gt; Best regards,</div>
<div>&gt; Liviu Chircu</div>
<div>&gt; OpenSIPS Developer</div>
<div>&gt; http://www.opensips-solutions.com</div>
<div>&gt; On 03.03.2015 10:45, merlin.li@tsingch.com wrote:</div>
<div>&gt;&gt; Hi,</div>
<div>&gt;&gt;</div>
<div>&gt;&gt; Or is there a way i can break the while loop in the route block when </div>
<div>&gt;&gt; i receive the CANCEL request?</div>
<div>&gt;&gt;</div>
<div>&gt;&gt; ------------------------------------------------------------------------</div>
<div>&gt;&gt; merlin.li@tsingch.com</div>
<div>&gt;&gt;</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; *From:* merlin.li@tsingch.com &lt;mailto:merlin.li@tsingch.com&gt;</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; *Date:* 2015-03-03 16:14</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; *To:* users &lt;mailto:users@lists.opensips.org&gt;</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; *Subject:* how to cancel an INVITE before the callee receive it?</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; Hi all,</div>
<div>&gt;&gt;</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; Let me describe my scenario first.</div>
<div>&gt;&gt;</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; if the callee is not online, opensips will wait for 30s.</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; During the 30s, if the callee be online, opensips will send the</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; invite to it.</div>
<div>&gt;&gt;</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $avp(timeout) = 30 ;</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; while( !lookup("location","m") ){</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if( $avp(timeout)==0 ){</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; send_reply("420","Can not find the callee!");</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; exit;</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sleep("1");</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $avp(timeout) = $avp(timeout)-1;</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</div>
<div>&gt;&gt;</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; This works well, the only problem is the caller can not cancel it</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; during that 30s</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; t_cancel_branch() only can be used in onreply_route, but at that</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; time, callee is offline.</div>
<div>&gt;&gt;</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; My question is :</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; Is it possible that terminate a request in route block?</div>
<div>&gt;&gt;</div>
<div>&gt;&gt;</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; ------------------------------------------------------------------------</div>
<div>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; merlin.li@tsingch.com</div>
<div>&gt;&gt;</div>
<div>&gt;&gt;</div>
<div>&gt;&gt;</div>
<div>&gt;&gt; _______________________________________________</div>
<div>&gt;&gt; Users mailing list</div>
<div>&gt;&gt; Users@lists.opensips.org</div>
<div>&gt;&gt; http://lists.opensips.org/cgi-bin/mailman/listinfo/users</div>
<div>&gt;</div>
<div>&gt;</div>
<div>&gt;</div>
<div>&gt; _______________________________________________</div>
<div>&gt; Users mailing list</div>
<div>&gt; Users@lists.opensips.org</div>
<div>&gt; http://lists.opensips.org/cgi-bin/mailman/listinfo/users</div>
<div>&nbsp;</div>
<div>-------------- next part --------------</div>
<div>An HTML attachment was scrubbed...</div>
<div>URL: &lt;http://lists.opensips.org/pipermail/users/attachments/20150303/31768207/attachment-0001.htm&gt;</div>
<div>&nbsp;</div>
<div>------------------------------</div>
<div>&nbsp;</div>
<div>Message: 3</div>
<div>Date: Tue, 3 Mar 2015 17:02:44 +0100</div>
<div>From: Adri? Vidal &lt;adriavidal@gmail.com&gt;</div>
<div>Subject: Re: [OpenSIPS-Users] CDRtool 9.3 web interface</div>
<div>To: OpenSIPS users mailling list &lt;users@lists.opensips.org&gt;</div>
<div>Message-ID:</div>
<div>        &lt;CAFYw3-dR_RcmaN=yXsm3gRB2urSWw325ANAcvm+VE_-kaoA15A@mail.gmail.com&gt;</div>
<div>Content-Type: text/plain; charset="utf-8"</div>
<div>&nbsp;</div>
<div>2015-03-03 11:30 GMT+01:00 Tijmen de Mes &lt;tijmen@ag-projects.com&gt;:</div>
<div>&nbsp;</div>
<div>&gt; Hi,</div>
<div>&gt;</div>
<div>&gt; Clicking on the icons does not work. If you click on the input field you</div>
<div>&gt; should get a date picker.</div>
<div>&gt;</div>
<div>&gt; If you don?t get it please take a look at the webbrowsers console if get</div>
<div>&gt; any error or exception.</div>
<div>&gt;</div>
<div>&gt; Best regards,</div>
<div>&gt;</div>
<div>&gt; Tijmen de Mes</div>
<div>&gt;</div>
<div>&nbsp;</div>
<div>I see no input field to click on</div>
<div>&nbsp;</div>
<div>https://www.dropbox.com/s/w55ynwrc1kbps6d/Captura%20de%20pantalla%202015-03-03%2017.02.14.png?dl=0</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>-- </div>
<div>--</div>
<div>Adri? Vidal</div>
<div>&nbsp;</div>
<div>T. 93 150 31 80 | M 607 28 89 56</div>
<div>&nbsp;</div>
<div>@ adria@gmail.com</div>
<div>&nbsp;</div>
<div>www www.xpreme.net | centralitaip.xpreme.net</div>
<div>&nbsp;</div>
<div>twitter xpreme_it &lt;https://twitter.com/intent/user?screen_name=xpreme_it&gt;</div>
<div>-------------- next part --------------</div>
<div>An HTML attachment was scrubbed...</div>
<div>URL: &lt;http://lists.opensips.org/pipermail/users/attachments/20150303/7b382bc0/attachment.htm&gt;</div>
<div>&nbsp;</div>
<div>------------------------------</div>
<div>&nbsp;</div>
<div>_______________________________________________</div>
<div>Users mailing list</div>
<div>Users@lists.opensips.org</div>
<div>http://lists.opensips.org/cgi-bin/mailman/listinfo/users</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>End of Users Digest, Vol 80, Issue 6</div>
<div>************************************</div>
</div></blockquote>
</body></html>