exten => s,1,Background(Menu)
exten => 1,1,Queue(sales)
exten => 2,1,Queue(support)
I would like to do something like this
exten => s,1,Background(Menu)
exten => 1,1,Queue(sales) "if no answer go to queue(people)"
exten => 2,1,Queue(support) “if no answer go to queue(people)”
Someone could help me? Thank you
I have followed John tip and had to set joinempty=strict in queue.conf (was =no), and then if nobody in sales or support answer, go to people. However, after the first caller, the second go to people but the peer does not ring, and the console shows “app_queue.c:4232 can_ring_entry: SIP/xxx has another call trying, can’t receive call”.
There is 1 member active (peer) in people queue and THERE IS NO ANOTHER CALL… and console show that. I had to unregister the peer and register again to the peer rings again. What can be?