Mariusz,<div><br></div><div>After moving from the main conference to the second conference, when the user presses digits, do any of them work? The way to test would be to call in to the first conference then press #1 to go to the sub conference, then press 0 a few times to see if you mute/unmute. Also, try pressing  1, 2, 3, etc. and watch the FS console. Be sure that you are in debug mode on the console. (If you use fs_cli then you will be at loglevel debug by default.)</div>
<div><br></div><div>Question - what customizations have you made? I see that your version is &quot;hacked&quot; so most likely you&#39;ve done some tinkering. One thing you can do to test is to update to latest git and don&#39;t do any &quot;hacking&quot; to the code. Test your dialplan and see if the DTMFs work as expected. If your DTMFs work on a plain install then you know that your customizations are doing something. If not, then pastebin your output (<a href="http://pastebin.freeswitch.org">pastebin.freeswitch.org</a>) and we&#39;ll take a look.</div>
<div><br></div><div>-MC</div><div><br><div class="gmail_quote">On Fri, Jan 14, 2011 at 8:31 AM, Mariusz Czulada <span dir="ltr">&lt;<a href="mailto:manieq@wp.eu">manieq@wp.eu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hi All,<br>
<br>
I&#39;m trying to implement subconference feature, to allow some<br>
participants go (or rather &quot;gosub&quot;) to a another conference room to<br>
discuss something then get back to the main conference. I use FreeSWITCH<br>
Version 1.0.head (hacked-20110112T172836Z). Bellow some configure<br>
extracts:<br>
<br>
&gt;From conference.conf.xml:<br>
  ...<br>
  &lt;caller-controls&gt;<br>
    ...<br>
    &lt;group name=&quot;just_exit&quot;&gt;<br>
      &lt;control action=&quot;hangup&quot; digits=&quot;#&quot;/&gt;<br>
      &lt;control action=&quot;hangup&quot; digits=&quot;1&quot;/&gt;<br>
      &lt;control action=&quot;mute&quot; digits=&quot;0&quot;/&gt;<br>
    &lt;/group&gt;<br>
    ...<br>
  &lt;/caller-controls&gt;<br>
  ...<br>
  &lt;profiles&gt;<br>
    ..<br>
    &lt;profile name=&quot;confX_M&quot;&gt;<br>
      ...<br>
      &lt;param name=&quot;caller-controls&quot; value=&quot;just_exit&quot;/&gt;<br>
      ...<br>
    &lt;/profile&gt;<br>
    &lt;profile name=&quot;confX_S&quot;&gt;<br>
      ...<br>
      &lt;param name=&quot;caller-controls&quot; value=&quot;just_exit&quot;/&gt;<br>
      ...<br>
    &lt;/profile&gt;<br>
  &lt;/profiles&gt;<br>
  ...<br>
<br>
<br>
&gt;From dialplan (own) public/confX.conf.xml:<br>
    ...<br>
    &lt;extension name=&quot;confX_join&quot;&gt;<br>
      &lt;condition field=&quot;destination_number&quot; expression=&quot;^confX_join$&quot;/&gt;<br>
      &lt;condition field=&quot;${confX_num}&quot; expression=&quot;^1(\d{4})$&quot;&gt;<br>
        &lt;action application=&quot;bind_meta_app&quot; data=&quot;1 a s<br>
execute_extension::subX_1&quot;/&gt;<br>
        &lt;action application=&quot;bind_meta_app&quot; data=&quot;2 a s<br>
execute_extension::subX_2&quot;/&gt;<br>
        &lt;action application=&quot;bind_meta_app&quot; data=&quot;3 a s<br>
execute_extension::subX_3&quot;/&gt;<br>
        &lt;action application=&quot;conference&quot; data=&quot;confX_${cpnfX_num}@confX_M&quot;/&gt;<br>
      &lt;/condition&gt;<br>
    &lt;/extension&gt;<br>
    ...<br>
    &lt;extension name=&quot;subX_1&quot;&gt;<br>
      &lt;condition field=&quot;destination_number&quot; expression=&quot;^subX_1$&quot;&gt;<br>
        &lt;action application=&quot;set&quot; data=&quot;pass_rfc2833=true&quot;/&gt;<br>
        &lt;action application=&quot;conference&quot; data=&quot;confX_${cpnfX_num}_1@confX_S&quot;/&gt;<br>
      &lt;/condition&gt;<br>
    &lt;/extension&gt;<br>
    &lt;extension name=&quot;subX_2&quot;&gt;<br>
      &lt;condition field=&quot;destination_number&quot; expression=&quot;^subX_2$&quot;&gt;<br>
        &lt;action application=&quot;set&quot; data=&quot;pass_rfc2833=true&quot;/&gt;<br>
        &lt;action application=&quot;conference&quot; data=&quot;confX_${cpnfX_num}_2@confX_S&quot;/&gt;<br>
      &lt;/condition&gt;<br>
    &lt;/extension&gt;<br>
    &lt;extension name=&quot;subX_3&quot;&gt;<br>
      &lt;condition field=&quot;destination_number&quot; expression=&quot;^subX_3$&quot;&gt;<br>
        &lt;action application=&quot;set&quot; data=&quot;pass_rfc2833=true&quot;/&gt;<br>
        &lt;action application=&quot;conference&quot; data=&quot;confX_${cpnfX_num}_3@confX_S&quot;/&gt;<br>
      &lt;/condition&gt;<br>
    &lt;/extension&gt;<br>
    ...<br>
<br>
<br>
During connection user is first handled by IVR, where he enters<br>
conference number (assume: &quot;1234&quot;) which is stored in &quot;confX_num&quot;<br>
variable. Then call is transfered to &quot;confX_join&quot;. Here I assign actions<br>
for *1, *2 and *3 DTMF sequences then join main conference<br>
(&quot;confX_1234_M&quot;). When some user presses i.e. &quot;*2&quot; then he also enters<br>
subconf 2 (&quot;confX_1234_2&quot;). Those users attached to &quot;confX_1234_2&quot; are<br>
at the same time still attached also to &quot;confX_1234_M&quot;, but found muted<br>
and deaf to other participants. Then, leaving subconference they will be<br>
back &quot;alive&quot; in master conference, which I tested by kicking them from<br>
&quot;confX_1234_2&quot; manually.<br>
<br>
Now my problem begins. Then user is on &quot;confX_1234_M&quot; dialing &quot;#&quot; forces<br>
user to leave conference, as defined in &quot;just-exit&quot; controls. But when<br>
user enters also &quot;confX_1234_2&quot; DTMF codes are no longer processed,<br>
neither by master conference nor by subconference. I set<br>
&quot;pass_rfc2833=true&quot; but it is not helpful. Did I missed to set something<br>
[1] in the dialplan or other config files, or [2] actually no DTMF codes<br>
can be processed while in &quot;*2&quot; leg? And if [2]==true: would it be<br>
possible to develop such DTMF handling?<br>
<br>
BTW: DTMFs are not processed while in subconference but if user is<br>
kicked off from subconf back to main conference, one can use DTMF codes<br>
again to (un)mute (0), join sub (*2) or leave (# or 1).<br>
<br>
TIA for your help or tips.<br>
<br>
Regards,<br>
Mariusz<br>
<br>
<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>
</blockquote></div><br></div>