Yes, I&#39;m able to see the inbound channel created:<br><br>freeswitch@localhost.localdomain&gt; show channels<br>API CALL [show(channels)] output:<br>uuid,direction,created,created_epoch,name,state,cid_name,cid_num,ip_addr,dest,application,application_data,dialplan,context,read_codec,read_rate,write_codec,write_rate,secure,hostname,presence_id,presence_data<br>
6d347eaa-aea8-47e3-b915-8cfdf0f8fd9c,inbound,2010-01-19 17:04:22,1263891862,skypiax/interface5,CS_EXECUTE,Jingwei,jingwei.yang,,779,eavesdrop,all,XML,default,L16,16000,L16,16000,,localhost.localdomain,,<br><br>Hmmm, may I know how you could tell it&#39;s a dialplan problem?<br>
<br>Regards,<br>-Jingwei<br><br><div class="gmail_quote">On Mon, Jan 18, 2010 at 3:25 PM, Seven Du <span dir="ltr">&lt;<a href="mailto:dujinfang@gmail.com">dujinfang@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
did you happened to run &quot;show channels&quot; ?<br>
<br>
clearly it&#39;s a dialplan problem other than a fifo one.<br>
<br>
<br>
Dialplan: skypiax/interface8 Regex (PASS) [eavesdrop]<br>
destination_number(779) =~ /^779$/ break=on-false<br>
Dialplan: skypiax/interface8 Action answer()<br>
Dialplan: skypiax/interface8 Action<br>
set(eavesdrop_indicate_failed=tone_stream://%(500, 0, 320))<br>
Dialplan: skypiax/interface8 Action<br>
set(eavesdrop_indicate_new=tone_stream://%(500, 0, 620))<br>
Dialplan: skypiax/interface8 Action<br>
set(eavesdrop_indicate_idle=tone_stream://%(250, 0, 920))<br>
Dialplan: skypiax/interface8 Action eavesdrop(all)<br>
<div><div></div><div class="h5"><br>
<br>
<br>
2010/1/18 Jingwei Yang &lt;<a href="mailto:jingwei.yang@gmail.com">jingwei.yang@gmail.com</a>&gt;:<br>
&gt; Logs submitted: <a href="http://pastebin.freeswitch.org/11836" target="_blank">http://pastebin.freeswitch.org/11836</a><br>
&gt;<br>
&gt; I was trying to check whether the call had been added into the queue via<br>
&gt; telnet, but failed to find the fifo events. Here&#39;s my simplified dialplan:<br>
&gt;<br>
&gt; &lt;extension name=&quot;in_fifo&quot;&gt;<br>
&gt;    &lt;condition field=&quot;destination_number&quot; expression=&quot;^779$&quot;&gt;<br>
&gt;      &lt;action application=&quot;answer&quot;/&gt;<br>
&gt;      &lt;action application=&quot;fifo&quot; data=&quot;myq in undef undef&quot;/&gt;<br>
&gt;   &lt;/condition&gt;<br>
&gt; &lt;/extension&gt;<br>
&gt;<br>
&gt; Please advise where went wrong.<br>
&gt;<br>
&gt; Thanks and best regards,<br>
&gt; -Jingwei<br>
&gt;<br>
&gt;<br>
&gt; On Mon, Jan 18, 2010 at 11:42 AM, Seven Du &lt;<a href="mailto:dujinfang@gmail.com">dujinfang@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; better to pastebin your log.<br>
&gt;&gt;<br>
&gt;&gt; 2010/1/18 Jingwei Yang &lt;<a href="mailto:jingwei.yang@gmail.com">jingwei.yang@gmail.com</a>&gt;:<br>
&gt;&gt; &gt; Thanks for replying. This is my dialplan<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;     &lt;extension name=&quot;in_fifo&quot;&gt;<br>
&gt;&gt; &gt;       &lt;condition field=&quot;destination_number&quot; expression=&quot;^779$&quot;&gt;<br>
&gt;&gt; &gt;         &lt;action application=&quot;set&quot; data=&quot;fifo_music=$${hold_music}&quot;/&gt;<br>
&gt;&gt; &gt;         &lt;action application=&quot;answer&quot;/&gt;<br>
&gt;&gt; &gt;         &lt;action application=&quot;fifo&quot; data=&quot;myq in undef undef&quot;/&gt;<br>
&gt;&gt; &gt;       &lt;/condition&gt;<br>
&gt;&gt; &gt;     &lt;/extension&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; And I created a queue in fifo.conf.xml like this<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;     &lt;fifo name=&quot;myq&quot; importance=&quot;0&quot;&gt;<br>
&gt;&gt; &gt;       &lt;!--&lt;member timeout=&quot;60&quot; simo=&quot;1&quot;<br>
&gt;&gt; &gt; lag=&quot;20&quot;&gt;{member_wait=nowait}user/1005@$${domain}&lt;/member&gt;--&gt;<br>
&gt;&gt; &gt;     &lt;/fifo&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; However, I&#39;m still not able to see the incoming call get queued.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; freeswitch@localhost.localdomain&gt; fifo list myq<br>
&gt;&gt; &gt; API CALL [fifo(list myq)] output:<br>
&gt;&gt; &gt; &lt;fifo_report&gt;<br>
&gt;&gt; &gt;   &lt;fifo name=&quot;myq&quot; consumer_count=&quot;0&quot; caller_count=&quot;0&quot; waiting_count=&quot;0&quot;<br>
&gt;&gt; &gt; importance=&quot;0&quot;&gt;<br>
&gt;&gt; &gt;     &lt;callers&gt;&lt;/callers&gt;<br>
&gt;&gt; &gt;     &lt;consumers&gt;&lt;/consumers&gt;<br>
&gt;&gt; &gt;   &lt;/fifo&gt;<br>
&gt;&gt; &gt; &lt;/fifo_report&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I tried both mod_skypiax and mod_dingaling, but with the same result.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Regards,<br>
&gt;&gt; &gt; -Jingwei<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; On Sun, Jan 17, 2010 at 11:37 AM, Seven Du &lt;<a href="mailto:dujinfang@gmail.com">dujinfang@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; 2010/1/15, Jingwei Yang &lt;<a href="mailto:jingwei.yang@gmail.com">jingwei.yang@gmail.com</a>&gt;:<br>
&gt;&gt; &gt;&gt; &gt; Hi Guys,<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; I&#39;m implementing an ACD system using ESL and mod_fifo. Based on what<br>
&gt;&gt; &gt;&gt; &gt; Anthony<br>
&gt;&gt; &gt;&gt; &gt; suggested in this post:<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; <a href="http://www.mail-archive.com/freeswitch-users@lists.freeswitch.org/msg01652.html" target="_blank">http://www.mail-archive.com/freeswitch-users@lists.freeswitch.org/msg01652.html</a><br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; *You can make an event socket application that listens for FIFO<br>
&gt;&gt; &gt;&gt; &gt; events<br>
&gt;&gt; &gt;&gt; &gt; and<br>
&gt;&gt; &gt;&gt; &gt; keeps track of what FIFOs are currently busy and when there are<br>
&gt;&gt; &gt;&gt; &gt; people<br>
&gt;&gt; &gt;&gt; &gt; waiting you can have that script generate a call to a group of SIP<br>
&gt;&gt; &gt;&gt; &gt; phones so<br>
&gt;&gt; &gt;&gt; &gt; when the first one answers, it sends them in as an agent where they<br>
&gt;&gt; &gt;&gt; &gt; can<br>
&gt;&gt; &gt;&gt; &gt; field the calls.<br>
&gt;&gt; &gt;&gt; &gt; *<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; 1. How should I handle the concurrent issues? If I bridge a user to<br>
&gt;&gt; &gt;&gt; &gt; two<br>
&gt;&gt; &gt;&gt; &gt; agents and both of them answers, how does FS take care of this<br>
&gt;&gt; &gt;&gt; &gt; situation?<br>
&gt;&gt; &gt;&gt; &gt; Will a slower agent get a busy tone automatically?<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; I think it just follow the standard originate dialstring rules.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt; 2. If the socket application is brought up after some users have<br>
&gt;&gt; &gt;&gt; &gt; called<br>
&gt;&gt; &gt;&gt; &gt; in,<br>
&gt;&gt; &gt;&gt; &gt; what command should I use to check the busy queues? fifo list?<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; Yes. Perhaps you can also check the fifo db, either sqlite or ODBC.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt; 3. Am I using fifo list and fifo count correctly?<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; here&#39;s the testing dialplan:<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;     &lt;extension name=&quot;in_fifo&quot;&gt;<br>
&gt;&gt; &gt;&gt; &gt;       &lt;condition field=&quot;destination_number&quot; expression=&quot;^779$&quot;&gt;<br>
&gt;&gt; &gt;&gt; &gt;         &lt;action application=&quot;set&quot; data=&quot;fifo_music=$${hold_music}&quot;/&gt;<br>
&gt;&gt; &gt;&gt; &gt;         &lt;action application=&quot;answer&quot;/&gt;<br>
&gt;&gt; &gt;&gt; &gt;         &lt;action application=&quot;fifo&quot; data=&quot;*myq *in&quot;/&gt;<br>
&gt;&gt; &gt;&gt; &gt;       &lt;/condition&gt;<br>
&gt;&gt; &gt;&gt; &gt;     &lt;/extension&gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; when a call comes in and gets queued, these are the results of some<br>
&gt;&gt; &gt;&gt; &gt; commands<br>
&gt;&gt; &gt;&gt; &gt; I tried.<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; freeswitch@localhost.localdomain&gt; fifo list<br>
&gt;&gt; &gt;&gt; &gt; API CALL [fifo(list)] output:<br>
&gt;&gt; &gt;&gt; &gt; &lt;fifo_report&gt;<br>
&gt;&gt; &gt;&gt; &gt;   &lt;fifo name=&quot;<a href="mailto:cool_fifo@192.168.1.104">cool_fifo@192.168.1.104</a>&quot; consumer_count=&quot;0&quot;<br>
&gt;&gt; &gt;&gt; &gt; caller_count=&quot;0&quot;<br>
&gt;&gt; &gt;&gt; &gt; waiting_count=&quot;0&quot; importance=&quot;0&quot;&gt;<br>
&gt;&gt; &gt;&gt; &gt;     &lt;callers&gt;&lt;/callers&gt;<br>
&gt;&gt; &gt;&gt; &gt;     &lt;consumers&gt;&lt;/consumers&gt;<br>
&gt;&gt; &gt;&gt; &gt;   &lt;/fifo&gt;<br>
&gt;&gt; &gt;&gt; &gt; &lt;/fifo_report&gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; freeswitch@localhost.localdomain&gt; fifo list myq<br>
&gt;&gt; &gt;&gt; &gt; API CALL [fifo(list myq)] output:<br>
&gt;&gt; &gt;&gt; &gt; &lt;fifo_report&gt;&lt;/fifo_report&gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; freeswitch@localhost.localdomain&gt; fifo count myq<br>
&gt;&gt; &gt;&gt; &gt; API CALL [fifo(count myq)] output:<br>
&gt;&gt; &gt;&gt; &gt; none<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; It seems *myq* doesn&#39;t get created at all? Please enlighten.<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; Thanks and best regards,<br>
&gt;&gt; &gt;&gt; &gt; -Jingwei<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; AFAIK, thant means the channel didn&#39;t queued in. Did you see any error<br>
&gt;&gt; &gt;&gt; logs? I think you need to remove the stars in   &lt;action<br>
&gt;&gt; &gt;&gt; application=&quot;fifo&quot; data=&quot;*myq *in&quot;/&gt;.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; _______________________________________________<br>
&gt;&gt; &gt;&gt; FreeSWITCH-users mailing list<br>
&gt;&gt; &gt;&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt;&gt; &gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt; &gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; FreeSWITCH-users mailing list<br>
&gt;&gt; &gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt;&gt; &gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt;&gt; &gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt; &gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; FreeSWITCH-users mailing list<br>
&gt;&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; FreeSWITCH-users mailing list<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt;<br>
<br>
_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</div></div></blockquote></div><br>