We have used the "toll_allow" condition to the Outbound dialplan to accomplish this.
By adding a toll_allow condition to your dialplan, and then having the corresponding "Toll Allow" reference on your extensions, you can prevent outbound calls from the PBX, but still allow...
We have a soft phone app we've created that does all of the regular desktop functions.
Registers using a MAC address as well to keep install simple for end users.
Let me know if you're interested in more info.
Here’s my complete dialplan for this...
I added the stop_record_session action to prevent the person eavesdropping from being added to the recording of the call they are eavesdropping on.
Let me know if this helps :)
I use the following within the eavesdrop dialplan to prevent access to specific extensions...
destination_number ^\*33(?!525)(\d{3,4})$
In this example the ?! before the extension number 525 prevents permission to 525. If you have multiple extensions just add those references...
I need to find a way to allow a Compliance person to access the CDR, and to listen to recorded calls on all extensions except for company owners and executives.
I know access can be modified through Group Permissions and then I can just assign the specific extensions the person needs access to...
I find with send dtmf that this works best fo rme...
I usually put a space in between the digits for send_dtmf because if I don’t the digits might get presented too fast.
You could do something like this in your dialplan... the person must dial 47 + number for the executed dial string to be *47*12340 + number
condition >> destination_number = ^47?(\d{7})$
action >> bridge = sofia/gateway/{your gateway here}/*47*12340$1
The other option would be to just have the...
Welcome!
I’m new here as well. Similar business in Canada; we provide Hosted PBX, SIP, SMS, Chat, Email and Data services.
I’m hoping to find answers to some questions we have with FusionPBX, as well as provide some answers we’ve come up with.