how can i dial multiple extension in asterisk using dial command in round robin method? I do not want to use queues. I want to dial 3 extensions in round robin method.
0
votes
1 Answers
0
votes
You can try dial sequentially all ramal or extensions that do you want like it:
exten => 111(start),1,Dial(SIP/YOUR_RAMAL,30,tT)
exten => 111,n,Dial(SIP/YOUR_RAMAL,30,tT)
exten => 111,n,Dial(SIP/YOUR_RAMAL,30,tT)
exten => 111,n,GotoIf($["${DIALSTATUS}" = "NOANSWER"]?start)
In this case we try call the first dial for 30 seconds if no answer he jump for the next, at the end if does not exist answer he jump to start again!