<Solved> Extension not found

Hi

I am usign Asterisk 1.4.44, with vicidial 2.7 rc1.
When I add phones in vicidial gui, it updates the conf files.

sip-vicidial.conf

[201]
username=201
secret=<201pswd>
accountcode=201
callerid="sip201" <7275551212>
mailbox=201
context=default
type=friend
host=dynamic

[601]
username=601
secret=<601pswd>
accountcode=601
callerid="601_praveena" <>
mailbox=601
context=default
type=friend
host=dynamic

extensions-vicidial.conf


[vicidial-auto-phones]
exten => h,1,DeadAGI(agi://127.0.0.1:4577/call_log--HVcauses--PRI-----NODEBUG-----${HANGUPCAUSE}-----${DIALSTATUS}-----${DIALEDTIME}-----${ANSWEREDTIME})

; Phones direct dial extensions:
exten => 201,1,Dial(SIP/201|60|)
exten => 201,2,Goto(default,85026666666666201,1)
exten => 601,1,Dial(SIP/601|60|)
exten => 601,2,Goto(default,85026666666666601,1)

extensions.conf

[default]
;
; By default we include the demo.  In a production system, you
; probably don't want to have the demo there.
;
include => demo

Phones are getting registered successfully in XLite and Linphone. But I am not able to call each other. It is giving extension not found in the asterisk logs.

Please let me know what should I do.

The context containing the extensions is no,t and is not included in, the context associated with the devices making the call.

go the the defualt context in your extensions.conf and include vicidial-auto-phones . ofcourse its better to change sip users context to vicidial-auto-phones

[default]
include => vicidial-auto-phones

Thanks a lot. It is resovled by

[default]
include => vicidial-auto-phones