[Asterisk-Users] Dial Plan Help
Luki
asterisk at lugosoft.com
Fri Dec 3 14:01:20 MST 2004
> exten=>200,Goto(office,102,1);forward to 102 in office context
> exten=>201,Goto(office,110,1);forward to 110 in office context
These are invalid -- no priority -- and hence dropped. Didn't you see the
errors while loading (it's easy to miss, there's plenty of stuff output).
Change to:
exten=>200,1,Goto(office,102,1);forward to 102 in office context
exten=>201,1,Goto(office,110,1);forward to 110 in office context
--Luki
More information about the asterisk-users
mailing list