Displaying 3 results from an estimated 3 matches for "alertsnom".
2013 Jul 24
2
What is my syntax error here?
...; _.,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,n,Set(AlertInte...
2015 Mar 06
0
Guidence in DialPlan programming.
...is placed by a local extension then context
[from-internal-noxfer] is used. If a blind transfer is performed the
context is [from-internal-xfer]. What I am considering is placing the
following code in extensions-custom.conf:
[from-internal-custom].
exten => _X,1,Noop()
exten => _X,n,Set(AlertSnom=<http://www.notused.com>\;info=)
exten => _X,n,Set(AlertInternalTransfer=alert_internal_transfer)
exten => _X,n,Set(__ALERT_INFO=${AlertSnom}${AlertInternalTransfer})
exten => s,1,Macro(hangupcall)
exten => h,1,Macro(hangupcall)
My question is: are the last two lines the corre...
2013 Jul 03
1
Custom dial plan for internal transfers of external calls
...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=${AlertSnom}${AlertInternalTransfer})
exten => _417XX,n(notfromlocal),Goto(from-internal-original,${EXTEN},1)
;The following three lines must not be changed!
exten => _.,1,Goto(from-internal-original,${EXTEN},1)
exten => s,1,Goto(from-internal-original,s,1)
exten => h,1,Macro(hangupcall)
This con...