Hi everyone,
I wanted to post this message as a follow-up to an existing topic that I got solved on here, but the forum looks to be forcing me to make a new topic due to the age of that post. Anyway, the experience on this forum is invaluable, so once again I’m looking for some insight on a relatively simple task: Running a cURL HTTP command after all outbound calls.
I’m currently running an Elastix 2.5.0 server on CentOS 2.6.18 with Asterisk v11.17.1. In the past I was running Elastix 2.4.0 and had this running 100%, but it looks like something is different in the 2.5.0 version, or in the version of CentOS or Asterisk I’m now running. Below is the code from my old server in extensions_custom.conf:
[outbound-allroutes-custom] ; for all 4 of the main dial plans we use to call customers
exten => _NXXXXXX,2,System(curl "http://sub.mywebsite.com/api/callerid/?did=${EXTEN}")
exten => _NXXNXXXXXX,2,System(curl "http://sub.mywebsite.com/api/callerid/?did=${EXTEN}")
exten => _1NXXNXXXXXX,2,System(curl "http://sub.mywebsite.com/api/callerid/?did=${EXTEN}")
exten => _+1NXXNXXXXXX,2,System(curl "http://sub.mywebsite.com/api/callerid/?did=${EXTEN}")
With this simple code in the extensions_custom.conf file, my PBX would automatically send a CID lookup result via HTTP to my CRM software (which allows us to keep track of outgoing calls made by staff members). I made sure cURL was installed on the new PBX and copied the exact same code as before, but nothing is working.
What I’ve tried so far to get something to work (no success yet):
[ul]Using and removing the “_” in front of the dial plan.
Changing the order from “,2,” to alternatives like “,1,” and “,n,”.
Changing the usage “System” to alternatives like “Set” or “Dial”. [/ul]
I’ve watched the CLI output and it looks like the cURL command is never running. If I manually copy and paste the command, everything obviously works. I’m just not able to get the command to run on behalf of outgoing calls. Can someone please tell me what I’m missing to get outbound calls to run this command script?
If you’d like to see more details about the previously solved topic, here’s the link: viewtopic.php?f=13&t=95540
Thanks everyone!