Michael that for the reply.<br><br>I created a new group with # unbound and referenced it from the default profile:<br><br> <param name="caller-controls" value="myConf"/><br><br>And that worked fine.<br>
<br>Strangely though, changing the default group and referencing that from the default profile does not.<br><br><param name="caller-controls" value="default"/><br><br><br>Do you want me to test this on the latest trunk or is this as expected?<br>
<br>Phil<br><br><br><div class="gmail_quote">On Mon, Nov 23, 2009 at 3:12 PM, Michael Collins <span dir="ltr"><<a href="mailto:msc@freeswitch.org">msc@freeswitch.org</a>></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;">
<br><br><div class="gmail_quote"><div class="im">On Mon, Nov 23, 2009 at 11:24 AM, Phillip Jones <span dir="ltr"><<a href="mailto:pjintheusa@gmail.com" target="_blank">pjintheusa@gmail.com</a>></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;">
Hi there,<br><br>I have created a simple conference that works great. The only problem is, when a participant press # it exits the call. So when a user enters a conference with a PIN, and by habit they enter 12345 followed by pound, it puts them in and then straight out.<br>
<br>So I edited conference.conf.xml so:<br><br><!--control action="hangup" digits="#"/--><br><br>and even assigned # to another function:<br><br><control action="energy up" digits="#"/><br>
<br>and the same occurs. Pressing # exits the conference.<br><br>What am I missing here?<br><br>tia - phil<br> <br><br></blockquote></div><div><br>Phil,<br><br>I recommend that you create a custom profile and a custom caller control group. Just copy the defaults and rename them to something meaningful. In conference.conf.xml you can add a new call control group like this:<br>
<br> <group name="custom"> <!-- notice the new name --><br> <control action="mute" digits="0"/> <br>
<control action="deaf mute" digits="*"/> <br> <control action="energy up" digits="9"/> <br>
<control action="energy equ" digits="8"/> <br> <control action="energy dn" digits="7"/> <br>
<control action="vol talk up" digits="3"/> <br> <control action="vol talk zero" digits="2"/> <br>
<control action="vol talk dn" digits="1"/> <br> <control action="vol listen up" digits="6"/> <br>
<control action="vol listen zero" digits="5"/> <br> <control action="vol listen dn" digits="4"/> <br>
<!-- Notice that I removed the hangup option; # digit is not bound to anything; you can bind it to something else if you wish --><br> </group> <br><br>Then make a copy of the default profile changing the profile name and the caller-controls parameter:<br>
<profile name="custom"> <!-- notice the new name --><br> <!-- snip --> <br> <param name="caller-controls" value="some name"/><br>
<!-- snip --> <br>
</profile><br><br>Give that a whirl and report back. :)<br>-MC<br></div></div><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>
<br></blockquote></div><br>