Create Dialplan condition to skip pin code on conference call

Status
Not open for further replies.

Craig Fox

New Member
Mar 21, 2018
26
3
3
53
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
 

volkswagner

New Member
Nov 18, 2020
12
0
1
53
I'm also interested in this. Any progress?

I'd just like outside callers to be required to enter a pin, but
any extension should be able to dial without needing a pin.
 

DigitalDaz

Administrator
Staff member
Sep 29, 2016
3,044
565
113
I have a dialplan to allow certain outside callers in without a pin, the sip_from_user string should be easily modifiable to suit what you do and don't want let in

confexternal.png
 

DigitalDaz

Administrator
Staff member
Sep 29, 2016
3,044
565
113
Actually reading back, I don't think the above suits your needs as you still want some with pin, this just transfers them to a pinless conference, I'll look later.
 

cptnmidnight

New Member
Apr 27, 2022
5
0
1
48
I am struggling with a similar issue. I am trying to connect a fanvil PA in reverse to a conference. The goal is to allow any extension to listen in on a broadcast from the fanvil.

I have tried multiple ways but I don't see how to get the moderator flag to work in any capacity, everything just joins as a user and the wait-for-moderator music plays.
 
Status
Not open for further replies.