I'd like to modify the dial plan of a conference call to skip the request for the PIN Code based on the extension calling. Specifically, the conference phone in the room that this bridge is set up for. The pseudo code seems simple enough, but I'm struggling with it anyway. Here's the setup...
Conference Bridge: 5997 : PIN 1234
Conference Phone: 5999
When calling 5997 from 5999 I'd like to skip the PIN request.
Here's the Dialplan
<extension name="Test" continue="true" uuid="9ec7067b-3034-4f4e-bb11-7dd52240bd26">
<condition field="destination_number" expression="^(conf\+)?5997$"/>
<condition field="caller_id_number" expression="^(5999)$" break="on-true">
<action application="answer" data=""/>
<action application="conference" data="Test@easypbx.wswilson.net@default"/>
</condition>
<condition field="destination_number" expression="^(conf\+)?5997$">
<action application="answer" data=""/>
<action application="conference" data="Test@easypbx.wswilson.net@default+1234"/>
</condition>
</extension>
Any help would be appreciated
Conference Bridge: 5997 : PIN 1234
Conference Phone: 5999
When calling 5997 from 5999 I'd like to skip the PIN request.
Here's the Dialplan
<extension name="Test" continue="true" uuid="9ec7067b-3034-4f4e-bb11-7dd52240bd26">
<condition field="destination_number" expression="^(conf\+)?5997$"/>
<condition field="caller_id_number" expression="^(5999)$" break="on-true">
<action application="answer" data=""/>
<action application="conference" data="Test@easypbx.wswilson.net@default"/>
</condition>
<condition field="destination_number" expression="^(conf\+)?5997$">
<action application="answer" data=""/>
<action application="conference" data="Test@easypbx.wswilson.net@default+1234"/>
</condition>
</extension>
Any help would be appreciated