Displaying 2 results from an estimated 2 matches for "_806xx".
2007 Apr 02
3
SIP - Automatic Redial on No Answer
Hi,
What is the best way to implement Automatic Redial on No Answer ?
Looking at
http://www.ietf.org/internet-drafts/draft-ietf-sipping-service-examples-12.txtI
can see how Automatic Redial on Busy could (should) be done.
How would you do it on No Answer ?
Is there any event you should SUBSCRIBE to so that you're notified that
you're callee is available ?
What if you ask to be notified
2007 May 08
0
Re: Call waiting tone
...g tone (thus he can decide whether to wait or hangup and call later).
What's I've done is that when the called party is on the phone a short message
is sent to the caller (may be also a recording of the stuttered ringing) and
then the call is passed. Here is the code fragment:
exten => _806XX,n,Set(Status=${DEVSTATE(SIP/${EXTEN})}) ; Get his status
exten => _806XX,n,GotoIf($["${Status}" == "NOT_INUSE"]?OK:WAITING_CALL)
exten => _806XX,n(WAITING_CALL),Playback(waiting-call)
exten => _806XX,n(OK),Dial(SIP/${EXTEN}${aEXTEN},20,) ; Dial the phone for 20
Hope...