Displaying 1 result from an estimated 1 matches for "agentnr".
Did you mean:
agentno
2009 Jun 29
0
asterisk 1.4.21.2 a caller waited in queue, after connect to agent hears silence
...21 at agents);
agents-context in extension.ael looks like this:
context agents
{
// Anrufe von queue an agenten
*21 => &queuecallagent(${EXTEN:1});
*22 => &queuecallagent(${EXTEN:1});
*23 => &queuecallagent(${EXTEN:1});
}
macro queuecallagent(agentnr)
{
Dial(IAX2/${agentnr}||xtTg);
switch(${DIALSTATUS})
{
case BUSY:
break;
case ANSWER:
break;
default:...