Displaying 2 results from an estimated 2 matches for "tapiev".
Did you mean:
tapdev
2006 Jun 09
1
hangup extension
...the debug version of AstTAPI, which worked for a few
calls, then a bit later in the day (and ever since), when the call is
hung up, the TAPI client doesn't get notified.
Looking at the server logs, The TAPI message that is sent upon hangup,
isn't being sent.
exten => h,1,UserEvent(TAPI|TAPIEVENT: LINE_CALLSTATE LINECALLSTATE_IDLE)
This is in the same context as the call is being placed from.
Is there anything stupid that I may have done, that will prevent
asterisk from issuing the above call when the call is hung up?
2006 Jun 19
0
asttapi 0.10
...reported to the list here
<http://lists.digium.com/pipermail/asterisk-users/2006-May/151260.html>
Apparently hangup should be done by making use of UserEvent commands. So I
have configured this context for being used when making calls from outlook:
[outlook]
exten => _X.,1,UserEvent(TAPI|TAPIEVENT: [~${UNIQUEID}] LINE_CALLSTATE
LINECALLSTATE_CONNECTED)
exten => _X.,2,Dial(SIP/${EXTEN}@MACHINE <mailto:SIP/${EXTEN}@MACHINE>)
exten => _X.,3,UserEvent(TAPI|TAPIEVENT:[~${UNIQUEID}] LINE_CALLSTATE
LINECALLSTATE_HANGUP)
exten => _X.,4,Hangup
Dialling is ok, but outlook keeps on g...