Synopsis
Jump to a particular priority, extension, or contextDescription
Goto([[context|]extension|]priority)Set the priority to the specified value, optionally setting the extension and optionally the context as well. The extension BYEXTENSION is special in that it uses the current extension, thus permitting you to go to a different context, without specifying a specific extension. Please note that the LEADING arguments to Goto() are optional, not the trailing arguments.
Variants
Goto(context,extension,priority)Goto(extension,priority)
Goto(priority)
Goto(context,extension,label)
Goto(extension,label)
Goto(label)
Note
Inserting a space after the commas that separate parameters has unexpected results.e.g.
Goto(confexisting, 1, 1)
looks for the extension " 1", i.e. with a preceding space character.
Examples
exten => 1,1,Goto(submenu,s,1) ; go to "submenu" context, "s" extension and priority 1exten => 600,4,Goto(s,6) ; go to "s" extension, priority 6, current context
exten => s,1,Dial(${ARG2},20,r)
exten => s,2,Goto(s-${DIALSTATUS},1)
exten => s-NOANSWER,1,Voicemail(u${ARG1})
exten => s-CHANUNAVAIL,1,Voicemail(b${ARG1})
exten => s-BUSY,1,Voicemail(b${ARG1})
exten => _s-.,1,Voicemail(u${ARG1})
This example may not work due to dialplan sorting. Use show dialplan to check prior to use.
See also
- GotoIf: Conditional goto application
- Gosub: Jump to a subroutine (new in v1.2)
- GosubIf: Conditional jump to a subroutine (new in v1.2)
- Macro
- Random: Random goto application
- Asterisk variables
- Asterisk variable DIALSTATUS: Returns the status of the dial (Added to CVS Head june 2004)
Asterisk | Applications | Functions | Variables | Expressions | Asterisk FAQ