Search results

  1. A

    4 digit call

    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...
  2. A

    Call center softphones?

    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.
  3. A

    eavesdrop specific extention only

    I believe it will do that if no active call is taking place.
  4. A

    eavesdrop specific extention only

    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 :)
  5. A

    eavesdrop specific extention only

    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...
  6. A

    Outnound Route Not Working

    Are you able to post a screen shot of the Outbound Route you have created?
  7. A

    Call Recording Access

    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...
  8. A

    How to dial an outgoing code automatically ??

    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.
  9. A

    How to dial an outgoing code automatically ??

    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...
  10. A

    Can't receive incoming calls, urgent setup needed

    Did you add your phone number as a Destination and ensure it's properly tied to an Inbound Route?
  11. A

    Time to introduce myself.

    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.
  12. A

    How to dial an outgoing code automatically ??

    Just want to make sure I’m understanding your question... Do you want the dialplan to insert the prefix *47*12340 in front of any number dialed?