Hmm, not entirely sure why it&#39;s doing that. It looks like the limit is being called twice for each dialstring. Just for kicks, can you change execute_on_originate to execute_on_media? If that doesn&#39;t work, try execute_on_ring as well. I&#39;m just hoping to get some empirical data on what happens in these scenarios. Once we iron it out we&#39;ll get it all wikified.<br>
<br>Thanks,<br>MC<br><br><div class="gmail_quote">On Mon, Jun 4, 2012 at 3:21 AM, Jose Fco. Irles Durá <span dir="ltr">&lt;<a href="mailto:josefu@gmail.com" target="_blank">josefu@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I tried with &quot;execute_on_originate&quot; and with one &quot;member&quot; in the ring<br>
group works, but when I have more than one member doesn&#39;t work.<br>
<br>
This is a log with one memeber on the ring group (user 100), this works:<br>
<a href="http://pastebin.com/9rdeQhDf" target="_blank">http://pastebin.com/9rdeQhDf</a><br>
<br>
And this is with two members (user 100 and 171), don&#39;t work:<br>
<a href="http://pastebin.com/aTdTTnnH" target="_blank">http://pastebin.com/aTdTTnnH</a><br>
<br>
My bridge args is:<br>
[execute_on_originate=limit hash callwaiting 100<br>
1]user/<a href="mailto:100@128.23.0.1">100@128.23.0.1</a>,[execute_on_originate=limit hash callwaiting 171<br>
1]user/<a href="mailto:171@128.23.0.1">171@128.23.0.1</a> for the second case.<br>
<br>
<br>
I&#39;m thinking that I need some event processing for doing this.<br>
<br>
<br>
2012/6/4 Michael Collins &lt;<a href="mailto:msc@freeswitch.org">msc@freeswitch.org</a>&gt;:<br>
&gt; Good point! Thanks for the tip.<br>
&gt; -MC<br>
&gt;<br>
&gt; On Sun, Jun 3, 2012 at 4:47 PM, Dave R. Kompel &lt;<a href="mailto:drk@drkngs.net">drk@drkngs.net</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Change that to &quot;execute_on_originate&quot;. On answer will blow the call off if<br>
&gt;&gt; it&#39;s over limits when the user answers.<br>
&gt;&gt;<br>
&gt;&gt; --Dave<br>
&gt;&gt;<br>
&gt;&gt; ________________________________<br>
&gt;&gt; From: Michael Collins [mailto:<a href="mailto:msc@freeswitch.org">msc@freeswitch.org</a>]<br>
&gt;&gt; To: FreeSWITCH Users Help [mailto:<a href="mailto:freeswitch-users@lists.freeswitch.org">freeswitch-users@lists.freeswitch.org</a>]<br>
&gt;&gt; Sent: Sun, 03 Jun 2012 13:54:08 -0700<br>
&gt;&gt; Subject: Re: [Freeswitch-users] limit app problem with loopback channels<br>
&gt;&gt;<br>
&gt;&gt; You can solve this issue by avoiding loopback. Don&#39;t use loopback unless<br>
&gt;&gt; there is absolutely no other alternative. Try replacing the loopback calls<br>
&gt;&gt; in the group definition to &quot;user/xxx&quot; instead:<br>
&gt;&gt;<br>
&gt;&gt;    &lt;extension name=&quot;group_dial_sales&quot;&gt;<br>
&gt;&gt;      &lt;condition field=&quot;destination_number&quot; expression=&quot;^2000$&quot;&gt;<br>
&gt;&gt;        &lt;action application=&quot;bridge&quot;<br>
&gt;&gt; data=&quot;[execute_on_answer=&#39;limit hash callwaiting 1000 1&#39;]user/1000,<br>
&gt;&gt; [execute_on_answer=&#39;limit hash callwaiting<br>
&gt;&gt; 1001 1&#39;]user/1001&quot;/&gt;<br>
&gt;&gt;      &lt;/condition&gt;<br>
&gt;&gt;    &lt;/extension&gt;<br>
&gt;&gt;<br>
&gt;&gt; This is just off the top of my head, so please do the usual testing and<br>
&gt;&gt; tinkering before you report back that it does not work. :)<br>
&gt;&gt;<br>
&gt;&gt; -MC<br>
&gt;&gt;<br>
&gt;&gt; On Sun, Jun 3, 2012 at 8:47 AM, Jose Fco. Irles Durá &lt;<a href="mailto:josefu@gmail.com">josefu@gmail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Hello,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I&#39;m trying to limit calls to one user with limit application, all<br>
&gt;&gt;&gt; works fine when a user dials to the number user (the caller is<br>
&gt;&gt;&gt; transfered to limit_exceeded extension)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; But when a caller dials to the 2000 extensions (a &quot;ring group&quot; to<br>
&gt;&gt;&gt; loopback channels) and one of the users (for example 1001) answer the<br>
&gt;&gt;&gt; call, the limit app removes the limit count for this channel when the<br>
&gt;&gt;&gt; loopback channel disappears (when the direct bridge occurs between the<br>
&gt;&gt;&gt; caller channel and callee channel).<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Where is the problem? How can I avoid that the limit app removes the<br>
&gt;&gt;&gt; limit for this loopback channel?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; There is the fragmet of my dialplan (is the vainilla dialplan from git<br>
&gt;&gt;&gt; with the limit action added)<br>
&gt;&gt;&gt; &lt;context name=&quot;default&quot;&gt;<br>
&gt;&gt;&gt; ...<br>
&gt;&gt;&gt;  &lt;extension name=&quot;Local_Extension&quot;&gt;<br>
&gt;&gt;&gt;      &lt;condition field=&quot;destination_number&quot; expression=&quot;^(10[01][0-9])$&quot;&gt;<br>
&gt;&gt;&gt;        &lt;action application=&quot;export&quot; data=&quot;dialed_extension=$1&quot;/&gt;<br>
&gt;&gt;&gt;        &lt;action application=&quot;set&quot; data=&quot;ringback=${us-ring}&quot;/&gt;<br>
&gt;&gt;&gt;        &lt;action application=&quot;set&quot;<br>
&gt;&gt;&gt; data=&quot;transfer_ringback=$${hold_music}&quot;/&gt;<br>
&gt;&gt;&gt;        &lt;action application=&quot;set&quot; data=&quot;call_timeout=30&quot;/&gt;<br>
&gt;&gt;&gt;        &lt;action application=&quot;set&quot; data=&quot;hangup_after_bridge=true&quot;/&gt;<br>
&gt;&gt;&gt;        &lt;action application=&quot;set&quot; data=&quot;continue_on_fail=true&quot;/&gt;<br>
&gt;&gt;&gt;       &lt;action application=&quot;limit&quot; data=&quot;hash callwaiting<br>
&gt;&gt;&gt; ${dialed_extension} 1&quot;/&gt;<br>
&gt;&gt;&gt;        &lt;action application=&quot;bridge&quot;<br>
&gt;&gt;&gt; data=&quot;user/${dialed_extension}@${domain_name}&quot;/&gt;<br>
&gt;&gt;&gt;        &lt;action application=&quot;answer&quot;/&gt;<br>
&gt;&gt;&gt;        &lt;action application=&quot;sleep&quot; data=&quot;1000&quot;/&gt;<br>
&gt;&gt;&gt;        &lt;action application=&quot;bridge&quot;<br>
&gt;&gt;&gt; data=&quot;loopback/app=voicemail:default ${domain_name}<br>
&gt;&gt;&gt; ${dialed_extension}&quot;/&gt;<br>
&gt;&gt;&gt;      &lt;/condition&gt;<br>
&gt;&gt;&gt;    &lt;/extension&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;    &lt;extension name=&quot;group_dial_sales&quot;&gt;<br>
&gt;&gt;&gt;      &lt;condition field=&quot;destination_number&quot; expression=&quot;^2000$&quot;&gt;<br>
&gt;&gt;&gt;        &lt;action application=&quot;bridge&quot;<br>
&gt;&gt;&gt; data=&quot;loopback/1000/default,loopback/1001/default&quot;/&gt;<br>
&gt;&gt;&gt;      &lt;/condition&gt;<br>
&gt;&gt;&gt;    &lt;/extension&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; ...<br>
&gt;&gt;&gt; &lt;/context&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; --<br>
&gt;&gt;&gt; Jose Fco. Irles Durá<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _________________________________________________________________________<br>
&gt;&gt; Professional FreeSWITCH Consulting Services:<br>
&gt;&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt;&gt; <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;&gt;<br>
&gt;&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
&gt;&gt; <a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
&gt;&gt;<br>
&gt;&gt; Official FreeSWITCH Sites<br>
&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt; <a href="http://wiki.freeswitch.org" target="_blank">http://wiki.freeswitch.org</a><br>
&gt;&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
&gt;&gt;<br>
&gt;&gt; Join Us At ClueCon - Aug 7-9, 2012<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;&gt;<br>
&gt;<br>
&gt;<br>
&gt; _________________________________________________________________________<br>
&gt; Professional FreeSWITCH Consulting Services:<br>
&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt; <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;<br>
&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
&gt; <a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
&gt;<br>
&gt; Official FreeSWITCH Sites<br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt; <a href="http://wiki.freeswitch.org" target="_blank">http://wiki.freeswitch.org</a><br>
&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
&gt;<br>
&gt; Join Us At ClueCon - Aug 7-9, 2012<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>
<br>
<br>
<br>
--<br>
Jose Fco. Irles Durá<br>
<br>
_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
<a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<a href="http://wiki.freeswitch.org" target="_blank">http://wiki.freeswitch.org</a><br>
<a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
<br>
Join Us At ClueCon - Aug 7-9, 2012<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>
</blockquote></div><br>