Displaying 1 result from an estimated 1 matches for "screen_vm_ext".
2009 Mar 06
1
GoSub & Queue
...exten => 2,3,GotoIf($["${HOLD_OPT}" != "" ]?s,1)
exten => 2,4,GotoIf($[${HOLD_LOOPCOUNT} > 10]?h,1)
exten => 2,5,Set(HOLD_LOOPCOUNT=$[${HOLD_LOOPCOUNT}] + 1])
exten => 2,6,Goto(2,2)
;; Send the caller to voicemail
exten => 3,1,Set(GOSUB_RESULT=GOTO:voicemail^${SCREEN_VM_EXT}^1)
exten => 3,2,Return
;; Hangup on the caller
exten => 4,1,Set(GOSUB_RESULT=GOTO:hangup^s^1)
exten => 4,2,Return
;; Return Caller to queue
exten => 5,1,Set(GOSUB_RESULT=CONTINUE);
exten => 5,2,Return
;; Reidentify the caller
exten => 6,1,Goto(s,1)
;; Invalid Option
exten => i...