FreePBX Dialplan Customization AstriCon 2020
Intro
This page is a companion to the Astricon 2020 presentation by Lorne Gaetz. In places in the video, there are references to dialplan which are shared below.
Preprocess Inbound Calls
To apply user defined custom dialplan to an inbound call before it reaches your FreePBX Inbound routes, create a context similar to this:
[from-trunk-preprocess]Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â ; context name is arbitrary
; Characters that follow a ; are ignored, use for commenting
exten => _.,1,Noop(Entering user defined context from-trunk-preprocess in extensions_custom.conf)Â Â ; log some breadcrumbs to assist debugging later
exten => _.,n,Verbose(0,Caller ID: ${CALLERID(name)})Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â ; doesn't do much, just logs the Caller ID name
Â
;Â add whatever other lines you need
Â
exten => _.,n,Goto(from-trunk,${EXTEN},1)Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â ; context must end with at goto the from-trunk context
Â
; end of from-trunk-preprocess |
With the context created in /etc/asterisk/extensions_custom.conf, you now edit your FreePBX trunk(s) in the GUI and change the context to the name you used above, in this case 'from-trunk-preprocess`. Submit and apply config, and all inbound calls on those trunks will first use the preprocess context before going to the Inbound Routes.
Custom Destinations
If you want to direct a call thru the system to a specific destination with custom dialplan, you do it by creating a Custom Destination. In this example, we are using two APIs, the http://icanhazdadjoke.com to get the text of a joke, and the Voip Innovations apidaze API to send the content of that joke out via SMS. Example dialplan for /etc/asterisk/extensions_custom.conf:
[randomjoke-sms-apidaze]
exten => s,1,Noop(Entering user defined context randomjoke-sms-apidaze in extensions_custom.conf)
Â
exten => s,n,Set(apidaze_key=xxxxxxxxx)Â Â Â Â Â Â Â Â Â Â Â Â Â Â ; get from APIDAZE Dev App
exten => s,n,Set(apidaze_secret=xxxxxxxxxxxxxxx)Â Â Â Â Â ; get from APIDAZE Dev App
Â
exten => s,n,Set(from_DID=xxxxxxxxx)Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â ; DID associated with APIDAZE App
exten => s,n,Set(destination=${CALLERID(number)})
Â
; set headers and curl for corny joke
exten => s,n,set(CURLOPT(httpheader)=Accept:text/plain)
exten => s,n,set(CURLOPT(httpheader)=User-Agent:Asterisk-FreePBX-joke2SMS)
exten => s,n,set(joke=${URIENCODE(${CURL(https://icanhazdadjoke.com)})})Â Â Â Â Â Â Â Â ; make API call and encode it. Content returned with a <CR> is a problem
exten => s,n,set(joke=${URIDECODE(${STRREPLACE(joke,%0A,%20)})})Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â ; filter out <CR> by replacing with a space character
Â
; send the joke to the caller's CallerID number via SMS using Voip Innovations api-daze API
exten => s,n,set(result=${CURL(https://api.apidaze.io/${apidaze_key}/sms/send?api_secret=${apidaze_secret},from=${from_DID}&to=${destination}&body=${joke})})
Â
exten => s,n,Return                                  ; end the custom destination context with a return application |
With the above in place, create a Custom Destination with a GoSub string of:
randomjoke-sms-apidaze,s,1 |
And enable the Return option. Choose the destination for the call and submit.Â
Custom Feature Code Prefix
To create a dial prefix, use code similar to the following. If you want to dial an extension with a specific delay, you can do it with this code in /etc/asterisk/extensions_custom.conf
Once the dialplan has been reloaded (apply config), dialing "**015*1004" will allow the system to dial extension 1004 with a 15 second delay before dialing.
Dialplan Hook for Outbound Calls
If you want to perform an action on all outbound calls, you can use a dialplan hook macro similar to this:
Â
Related articles
Page: How to Install FreePBX 16 on Debian 11 with Asterisk 16
Page: How to Install FreePBX 15 on Debian 10 with Asterisk 16, PHP 7.3
Page: How to provision Cisco 8800 series 3PCC phones on FreePBX/PBXAct Endpoint Manager (EPM)
Page: Patching Asterisk 16 on FreePBX 16 with USECALLMANAGER.NZ Presence for Cisco SIP-Firmware Phones
Â
Â