<br><br><div class="gmail_quote">On Mon, Nov 23, 2009 at 11:24 AM, Phillip Jones <span dir="ltr">&lt;<a href="mailto:pjintheusa@gmail.com">pjintheusa@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;">
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>&lt;!--control action=&quot;hangup&quot; digits=&quot;#&quot;/--&gt;<br><br>and even assigned # to another function:<br><br>&lt;control action=&quot;energy up&quot; digits=&quot;#&quot;/&gt;<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><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>    &lt;group name=&quot;custom&quot;&gt;  &lt;!-- notice the new name --&gt;<br>      &lt;control action=&quot;mute&quot; digits=&quot;0&quot;/&gt;                                                                                                                       <br>
      &lt;control action=&quot;deaf mute&quot; digits=&quot;*&quot;/&gt;                                                                                                                  <br>      &lt;control action=&quot;energy up&quot; digits=&quot;9&quot;/&gt;                                                                                                                  <br>
      &lt;control action=&quot;energy equ&quot; digits=&quot;8&quot;/&gt;                                                                                                                 <br>      &lt;control action=&quot;energy dn&quot; digits=&quot;7&quot;/&gt;                                                                                                                  <br>
      &lt;control action=&quot;vol talk up&quot; digits=&quot;3&quot;/&gt;                                                                                                                <br>      &lt;control action=&quot;vol talk zero&quot; digits=&quot;2&quot;/&gt;                                                                                                              <br>
      &lt;control action=&quot;vol talk dn&quot; digits=&quot;1&quot;/&gt;                                                                                                                <br>      &lt;control action=&quot;vol listen up&quot; digits=&quot;6&quot;/&gt;                                                                                                              <br>
      &lt;control action=&quot;vol listen zero&quot; digits=&quot;5&quot;/&gt;                                                                                                            <br>      &lt;control action=&quot;vol listen dn&quot; digits=&quot;4&quot;/&gt;                                                                                                              <br>
      &lt;!-- Notice that I removed the hangup option; # digit is not bound to anything; you can bind it to something else if you wish --&gt;<br>    &lt;/group&gt;     <br><br>Then make a copy of the default profile changing the profile name and the caller-controls parameter:<br>
    &lt;profile name=&quot;custom&quot;&gt; &lt;!-- notice the new name --&gt;<br>     &lt;!-- snip --&gt;                                                                                     <br>     &lt;param name=&quot;caller-controls&quot; value=&quot;some name&quot;/&gt;<br>
     &lt;!-- snip --&gt;                                                                                     <br>   
&lt;/profile&gt;<br><br>Give that a whirl and report back. :)<br>-MC<br></div></div><br>