Recent content by Architect

  1. A

    Outgoing calls route Time and day

    We've added a Time Zone table based on Area Code to our instance which covers Canada and the US. We call al lua script (timezone.lua) when the toll_allow "timezone" is present on the user's extension. We did this because we wanted to be able to control by Area Code within each Time Zone. If the...
  2. A

    SOLVED Resetting Call Center Agent Statistics regularly (every night?)

    We run a nightly script that resets all Call Centers. Happy to share if you are still interested in something automated?
  3. A

    No recorded call after extension-to-extension transfer

    I'm hoping someone may have experienced this already and knows how to remedy it... here's my example: Extension 123 places an outbound call to 4165551212 4165551212 answers the call and speaks with Ext 123 Ext 123 then initiates a 3-way call by adding in Ext 456 Ext 123 is now connected with...
  4. A

    Number translation

    You will need to create 2 Outbound Routes because you will need to reference 2 destination_number conditions: ^0?(\d{10})$ This one will accept both of the following and strip the leading zero 2238222826 02238222826 ^0?(\d{11})$ This one will accept both of the following and strip the...
  5. A

    Who is calling me?

    You can use the CID Name Prefix option in the Ring Group you have set up. All calls to the Ring Group will have the prefix displayed on screen with the Caller ID info, but calls direct to the bookkeeper will not. Example attached...
  6. A

    Inbound Routing based on Area Code

    Hoping someone may implemented something like this already... I want to be able to direct calls to specific Call Centre Queues based on the Caller's Area Code. e.g., > A call comes in to Destination 416-555-1212 from caller 514-555-1212 and it gets passed to Call Centre Queue CCQ_01 because...
  7. A

    enable/disable/record outage mesage to be played before IVR from any phone

    You should look at putting a Call Flow in place. You can then use a Feature Code to easily Activate/Deactivate it. Once you create the Call Flow, have your Inbound Destination pointed to the Call Flow as the Action. Let me know if you need more info or any assistance. Happy to help.
  8. A

    Hello from Victoria, Australia

    Hi Summer, If you are experiencing call drop at 3:20 try switching the Transport from UDP to TCP (or TCP to UDP - whichever is the reverse). We've seen this in the past and that resolved the issue for us.
  9. A

    Looking for UK sip supplier suggestion

    In that case, my company offers SIP trunks for UK termination. I'd be happy to set you up with a test trunk to try us out. We allow for you to control CLI through the PBX.
  10. A

    Looking for UK sip supplier suggestion

    You could use a single Gateway, then set up an Outbound Route for each customer with the Toll Allow feature enabled. Would give you control over the CLI as well as the Outbound permission for each customer.
  11. A

    regex - how to get the syntax correct

    I use this link to do tests on my regex... http://regexstorm.net/tester The Table tab at the bottom shows you what your input gets replaced with to confirm you're passing what you expected to pass to the gateway.
  12. A

    4 digit call

    In your Outbound Dialplan (image 1)add: Tag = condition Type = ${toll_allow} Data = Outbound You can make it any word you want, we just used international for our rule In each Extension (image 2) you would then enter the word you used (again, ours is the word Outbound) for the Extensions you...
  13. A

    4 digit call

    Would it help you if I were to provide some screen shots of how we set it up?
  14. A

    Secretarial numbers.

    You could accomplish this with a custom dialplan rule for the extension that redirects to the secretary's extension any time the manager's extension is dialed. The secretary would just need their own custom diaplan for dialing 606 or their calls will get redirected back to them. Essentially...
  15. 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...