Displaying 5 results from an estimated 5 matches for "hangup_handler_wip".
Did you mean:
hangup_handler_wipe
2020 Feb 04
1
Looking for sample hangup_handler_pop and _wipe using vars
Please point me to samples of popping and wiping hangup handlers. I don't
need to use the values returned; I just need to clear any handlers before I
push a new one.
It's not clear at
https://wiki.asterisk.org/wiki/display/AST/Hangup+Handlers+Specification how
to provide vars on the right-hand side.
Cheers,
David
-------------- next part --------------
An HTML attachment was scrubbed...
2012 Aug 20
1
Asterisk 11 queue calls - emulate Dial(b) functionality
...ided to investigate Asterisk 11 for the new Dial() b function and the new hangup handler CHANNEL variable.
I have the hints working more or less correctly on direct calls to/from the phones, making use of the b and U functions in Dial() and some judicious use of GROUP channel variables and CHANNEL(hangup_handler_wipe). But, on my live system, sometimes the users receive calls from a queue, and I don't see any way with the queue calls to emulate the b functionality in Dial() to be able to set the agent extension's device state to RINGING when the queue call gets created. Obviously, I can use membergos...
2013 Mar 25
1
Asterisk 11, hangup-handlers, Local channels and channel originate
...I'm observing that as I'm using expressions such as Local/1 at mycontext1, a
Local <ZOMBIE> channel is hanged before the second channel stops ringing.
When the second channel itself ends, my handler is not run anymore.
What would you suggest me to do ?
Should I delay my Set(CHANNEL(hangup_handler_wipe)= ...) statement till
both channels are bridged together ?
Regards
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20130325/ecf79d30/attachment.htm>
2013 Mar 12
0
Calls getting "stuck open"
...{ARG2})
same => n,ExecIf($[${ARG2} = RINGING]?ExecIf($[${GROUP_COUNT(${ARG1}@activecalls)} > 0]?Set(DEVICE_STATE(Custom:${ARG1})=RINGINUSE):Set(DEVICE_STATE(Custom:${ARG1})=RINGING)):Set(DEVICE_STATE(Custom:${ARG1})=INUSE))
same => n,Set(GROUP(activecalls)=${ARG1})
same => n,Set(CHANNEL(hangup_handler_wipe)=blf-endcall,s,1(${ARG1}))
same => n,Return()
[blf-endcall]
exten => s,1,Verbose("End of Call - reset BLF Custom Device state")
same => n,Verbose(Updating: ${ARG1} Calls: ${GROUP_COUNT(${ARG1}@activecalls)})
same => n,ExecIf($[${GROUP_COUNT(${ARG1}@activecalls)} > 1]?Set(...
2013 Mar 26
0
Asterisk 11, hangup-handlers, Local channels and channel originate [SOLVED]
...cal <ZOMBIE> channel is hanged before the second channel stops
> > > ringing.
> > > When the second channel itself ends, my handler is not run anymore.
> > >
> > >
> > > What would you suggest me to do ?
> > > Should I delay my Set(CHANNEL(hangup_handler_wipe)= ...) statement
> > > till
> > > both channels are bridged together ?
> > >
> >
> > It is hard to say without seeing the dialplan that you're using. Most
> > likely, the hangup handler has been attached to one half of the Local
> > channel as...