Recent content by toolfolks

  1. T

    Blacklist databases / services

    I have found the following : Tellows Hiya. We need to interrogate a caller ID and reject / divert any 'dodgy guys'. We allow the client to build his own but are looking to build a global spam list. Any resources out there ? Any pointers, links or experience appreciated.
  2. T

    Understanding the outgoing process to make calls.

    Thanks for the info Daz. I'm still not getting outgoing calls. 1. What are the various settings and which do I set ? Number Hostname Continue Destination 2. Are my settings in the image correct. 3. Do I simply add ^0(.*)$ to the condition and this allows all 11 digit numbers beginning with 0...
  3. T

    Understanding the outgoing process to make calls.

    Looks like its trying to call but the regex is failing. /HomeIP@test.toolfolks.com:10060 parsing [test.toolfolks.com->operator] continue=false 402de214-ae23-49f2-8e61-64a69cd40041 Dialplan: sofia/internal/HomeIP@test.toolfolks.com:10060 Regex (FAIL) [operator] destination_number(01613308446)...
  4. T

    Understanding the outgoing process to make calls.

    I have found this regex ^(?:(?:\(?(?:0(?:0|11)\)?[\s-]?\(?|\+)44\)?[\s-]?(?:\(?0\)?[\s-]?)?)|(?:\(?0))(?:(?:\d{5}\)?[\s-]?\d{4,5})|(?:\d{4}\)?[\s-]?(?:\d{5}|\d{3}[\s-]?\d{3}))|(?:\d{3}\)?[\s-]?\d{3}[\s-]?\d{3,4})|(?:\d{2}\)?[\s-]?\d{4}[\s-]?\d{4}))(?:[\s-]?(?:x|ext\.?|\#)\d{3,4})?$ from here...
  5. T

    Understanding the outgoing process to make calls.

    What would the regex for uk Numbers. 11 digits beginning with 0 01613308447 Or 13 with international format +441613308447
  6. T

    Understanding the outgoing process to make calls.

    I have now connected to my Sip provider. Incoming calls are working. I have created the following: Where Number = my sip provider number 1.Do I need to enable Continue and / or Destination to true ? I have the following Where Destination = my sip provider number When trying from our...
  7. T

    EAVESDROP not functioning

    I got the above working. In the app I initiate a call with in my app startCall('*331009'); sleep(2000); sendDTMFTone('1'); sendDTMFTone('1'); sendDTMFTone('1'); sendDTMFTone('1'); sendDTMFTone('#'); This allows me to join the call...
  8. T

    Call Block not actually blocking calls

    Hi guys, turned out the was no call_block script installed. Do I report this anywhere as a bug ?? Cheers
  9. T

    Where do I get a list of variables.

    Great. Thanks for the help.
  10. T

    EAVESDROP not functioning

    I am trying to implement 3 commands by sending key codes. If I use my dial pad and dial *331009 the system asks for the pin I enter 1111 and I join the call. If I send the code on a button click *331009,,,,1111# I still get prompted for the pin code. I thought ',' pauses for a second so the...
  11. T

    Where do I get a list of variables.

    Hi guys, eg in a dial plan ${destination_number} I need domain name Is there a list ?
  12. T

    SOLVED Push Notification.

    I found the following on the Freeswitch site: mod_dptools: system Skip to end of metadata Created by Jonatas Oliveira, last modified by John Boteler on 2016.12.15 Go to start of metadata About Execute an operating system command and wait for the result (blocking). Click here to expand Table...
  13. T

    SOLVED Dialplan application "system" is missing

    I'm having the same issue. The selected type goes back to the one I selected manually when saved. Did you resolve the issue.
  14. T

    SOLVED Push Notification.

    Hi guys, I am trying to get the php code to run and send a notification from the web browsers internally before adding to a dial plan. I have created push_notification.php in the www folder ( for now ) and made it an Hello World script. I ran http://192.168.1.2/push_notification.php and got the...