Hey guys,

My asterisk is all working for inbound calls, however for outbound calls it doesnt appear to be working, I used a very simiar config to my italk numbers, but i get these errors:

    -- Executing Dial("SIP/1020-b7142678", "SIP/*62@as.wxcnz.net") in new stack
    -- Called *62@as.wxcnz.net
    -- Got SIP response 604 "Does Not Exist Anywhere" back from 58.28.20.150
  == No one is available to answer at this time (1:0/0/0)
    -- Executing SetCDRUserField("SIP/1020-b7131db8", "Auckland| NZ") in new stack
    -- Executing Dial("SIP/1020-b7131db8", "SIP/099742910@as.wxcnz.net|60") in new stack
    -- Called 099742910@as.wxcnz.net
    -- Got SIP response 604 "Does Not Exist Anywhere" back from 58.28.20.150
  == No one is available to answer at this time (1:0/0/0)
    -- Executing Congestion("SIP/1020-b7131db8", "") in new stack
  == Spawn extension (home, 099742910, 3) exited non-zero on 'SIP/1020-b7131db8'

Config in asterisk as follows:
[vfx]
type=peer
fromdomain=as.wxcnz.net
fromuser=XXX; this is your VFX Number without the leading 0 i.e. 9950XXXX
host=as.wxcnz.net
insecure=invite,port
canreinvite=no
nat=no
secret=XXX
username=XXX
disallow=all
allow=g729
allow=ulaw
allow=alaw
qualify=yes
context=home

Local context contains the following for outbound:
exten => _XXXXXXX,1,Dial(SIP/${EXTEN}@as.wxcnz.net,60) ;Auckland

exten => _09.,1,SetCDRUserField(Auckland, NZ)
exten => _09.,2,Dial(SIP/${EXTEN}@as.wxcnz.net,60) ;Auckland
exten => _09.,3,Congestion


There is obviously more in my contexts but this is all that should be required to make an outbound?