Hi all, i am playing around with several optipoint4x0 and run into trouble trying to get hint functionality to work. I notice that there is no status notifications. But afaik this should be implemented via the SUBSCRIBE/NOTIFY mechanism. I can see INVITE, TRYING, RINGING, ACK, BYE but no SUBSBCRIBE in my sip debug traces. I have problem to understand how hint priority works. I follow the instructions from http://www.voip-info.org/wiki/index.php page=Asterisk+standard+extensions but it still doesn't work. [2001] type=friend context=local host=dynamic dtmfmode=rfc2833 incominglimit=1 notifyringing=yes subscribecontext=notify disallow=all allow=alaw allow=ulaw [2002] type=friend context=local host=dynamic dtmfmode=rfc2833 incominglimit=1 notifyringing=yes subscribecontext=notify disallow=all allow=alaw allow=ulaw [local] exten => 2001,1,Dial(SIP/2001,10,tr) exten => 2002,1,Dial(SIP/2002,10,tr) [notify] exten => 2001,hint,SIP/2001 exten => 2002,hint,SIP/2002 thx in advance for your help. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
On 17/05/2006, at 7:36 PM, richard Coco wrote:> [local] > exten => 2001,1,Dial(SIP/2001,10,tr) > exten => 2002,1,Dial(SIP/2002,10,tr) > > [notify] > exten => 2001,hint,SIP/2001 > exten => 2002,hint,SIP/2002Try this: [local] exten => 2001,1,Dial(SIP/2001,10,tr) exten => 2001,hint,SIP/2001 exten => 2002,1,Dial(SIP/2002,10,tr) exten => 2002,hint,SIP/2002 cYa, Avi