Hi Everyone,
I am new in asterisk without any experience.
somebody created the following script and I want to understand the sequence of the instructions.
I read about RECOGSTATUS but can’t understand how it’s used in that example.
exten => s,n,NoOp (XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX${RECOGSTATUS});
exten => s,n,NoOp(${RECOG_RESULT});
exten => s,n,NoOp(${RECOG_INSTANCE(0)});
exten => s,n,GotoIf($["${RECOGSTATUS}" = “ERROR”]?998,1);
exten => s,n,GotoIf($["${RECOG_INSTANCE(0)}" = “”]?t,1);
exten => s,n,goto(${RECOG_INSTANCE(0)},1);
exten => s,n,hangup();
Thank you for your help
Lyes