Displaying 3 results from an estimated 3 matches for "_417xx".
2013 Jul 24
2
What is my syntax error here?
...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.notused.com>\;info=)
; alert-external, alert-group and alert-internal are
; Snom predefined values.
exten => _417XX,n,Set(AlertExternalCall=alert-external)
; alert_internal_call and alert_internal_transfer are
; locally customised values
exten => _417XX...
2013 Jul 03
2
Question on AEL2 string comparisons
I have this code in a dial plan:
exten => _417XX,n,GotoIf($["${CALLERID(num)}" >
"SIP/41799"]?notfromlocal)
exten => _417XX,n,GotoIf($["${CALLERID(num)}" <
"SIP/41700"]?notfromlocal)
The value of "${CALLERID(num)}" appears to be "SIP/41712-00000181"
-- Executing [41720 at...
2013 Jul 03
1
Custom dial plan for internal transfers of external calls
...ring-tone when an external call is transferred internally. Based on
an earlier solution I discovered I am attempting this:
[from-internal]
include => set-alert-if-local
[from-internal-original]
include => from-internal-xfer
include => bad-number
[set-alert-if-local]
. . .
exten => _417XX,n,GotoIf($["${CALLERID(num)}" >
"SIP/41799"]?notfromlocal)
exten => _417XX,n,GotoIf($["${CALLERID(num)}" <
"SIP/41710"]?notfromlocal)
;If we reach here then the caller is within the upper and lower bounds
exten => _417XX,n,Set(__ALERT_INFO=${Alert...