Displaying 1 result from an estimated 1 matches for "pausequeuememberstatus".
Did you mean:
unpausequeuememberstatus
2011 May 05
1
Why is PQMSTATUS empty?
...ePauseStatus subroutine and
; pass the values for: variable to check,
; value to check for, and file to play
exten => unpause,n,Hangup()
; ### Subroutine we use to check pausing and unpausing status ###
[changePauseStatus]
; ARG1: variable name to check, such as PQMSTATUS and UPQMSTATUS
(PauseQueueMemberStatus / UnpauseQueueMemberStatus)
; ARG2: value to check for, such as PAUSED or UNPAUSED
; ARG3: file to play back if our variable value matched the value to check
for
;
exten => start,1,NoOp()
exten => start,n,Playback(silence/1)
; Please note that ${ARG1} is wrapped in ${ } in order to expand...