Hello,
I can monitor a SIP channel using HINT using something like:
Cakewalk!
But I want to monitor a dialplan extension and for that I created a custom hint. When a call reach that extension I can set the “INUSE” state all right and the BLF light on my phones are working,
exten => 1000,hint,Custom:1000
exten => 1000,1,Answer()
exten => 1000,n,Set(DEVICE_STATE(Custom:1000)=INUSE) ; the BLF lights are now ON!
exten => 1000,n,MusicOnHold() ; the device is put on hold
exten => 1000,n,Set(DEVICE_STATE(Custom:1000)=NOT_INUSE) ;this is not executed after hangup
exten => 1000,n,HangUp()
BUT, when I hangup the extension the BLF buttons won’t go off. How can I set the state to “NOT_INUSE” after a call is finished?
Is it possible to monitor a diaplan extension? Maybe be something like this?