Displaying 2 results from an estimated 2 matches for "member_ext".
Did you mean:
member_expr
2015 Mar 25
0
Determining if a queue member is paused in Dialplan logic. [1.8]
...n,Set(MEMBERS=${QUEUE_MEMBER_LIST(${arg1})})
same => n,Set(i=1)
same => n,Set(max=${FIELDQTY(MEMBERS,,)})
same => n,While($[${i} <= ${max}])
same => n,Set(MEMBER=${CUT(MEMBERS,\,,${i})})
same => n,Set(STATUS=${QUEUE_MEMBER(${arg1},paused,${MEMBER})})
same => n,Set(MEMBER_EXT=${CUT(MEMBER,\/,2)})
same => n,ExecIf($["${STATUS}" = "0"]?System(echo "IN" >
/var/spool/asterisk/status/agent-${MEMBER_EXT}-status.txt))
same => n,ExecIf($["${STATUS}" = "1"]?System(echo "PAU" >
/var/spool/asterisk/statu...
2015 Mar 25
2
Determining if a queue member is paused in Dialplan logic. [1.8]
Howdy,
I'm looking at enabling autopause on one of my queues where my queue
members are bad about leaving their desks without pausing.
The problem I see is that when the queue pauses an Member it doesn't jump
into the dialplan to do so which means my handy device state and asterisk
database driven Light for the Member showing their paused status won't
update.
My idea for solving