View Single Post
  #35 (permalink)  
Old 01-05-2009, 07:31 AM
bluecc bluecc is offline
Intermediate Member
 
Posts: 15
Default

Thank you for the advice. It looks like I was handling the phone prefix and user preferences extension setting incorrectly. However, after changing I still have the same issue.

As an overview, the extension I'm trying to use is 200. So I now have the following set:

Code:
<property name="astDialChannelType">SIP</property>
<property name="srcPhonePrefix">2</property>
<property name="astDialContext">phones</property>
srcPhone Property in zimlet's user config: 00
This is what is in the 'phones' context for that user:

Code:
exten => 200,1,Dial(SIP/200,20)
exten => 200,n,VoiceMail(100,u)
exten => 200,n,Playback(vm-goodbye)
exten => 200,n,Hangup()
This is what the dial plan for the phones context is:

Code:
exten => _X.,1,Set(CALLERID(ani)=OURNUMBERMASKED)
exten => _X.,2,Dial(SIP/${EXTEN}@viatalk-2)
exten => _XXXXXXXXXXX,1,Dial(SIP/viatalk-2/${EXTEN})
exten => _011X.,1,Dial(SIP/${EXTEN}@viatalk-2)
Any other thoughts on where to look or does something look out of place?
Reply With Quote