Displaying 2 results from an estimated 2 matches for "callerid_all".
2013 Jul 24
2
What is my syntax error here?
I have thsi code in a dial plan. The purpose of which is to set
distinctive ring tones for internal and transferred calls.
exten => _.,1,Noop(CALLERID_ALL=${CALLERID(all)})
exten => _.,n,Set(CallerIDNum=${CALLERID(num)})
; This just shows a list of interesting variables and their values
; Comment it out when finished debugging
;include => macro-dumpvars
;exten => _.,n,Macro(dumpvars)
exten => _417XX,n,Set(AlertSnom=<http://www...
2013 Jul 26
0
Dial plan flow control
...rred between extensions in the
[from-internal-custom] context, which is presumably best placed in the
file named /etc/asterisk/extensions_custom.conf. To begin testing I
did this
[from-internal-custom]
include => set-snom-ringtone-variables
[set-snom-ringtone-variables]
exten => _X.,1,Noop(CALLERID_ALL=${CALLERID(all)})
exten => _X.,n,Set(CallerIDNum=${CALLERID(num)})
Which simply does not work at all. The effect is that the extensions
stop working. So, clearly I misunderstand something very basic about
flow control and thus my question. How do I return from my
from-internal-custom contex...