13 июн. 2019 г.

Asterisk - поставить звонок в начало очереди

All animals are equal, but some animals are more equal than others.


exten => n,GotoIf($["${CALLERID(num)}" = "2666"]?bigdick:others)
; Вызовы от важных клиентов
same => n(bigdick),Playback(welcome)
same => n,SetVar(QUEUE_PRIO=10)
same => n,Queue(support)

; Вызовы от менее важных клиентов
same => n(others),Playback(welcome)
same => n,SetVar(QUEUE_PRIO=5)
same => n,Queue(support)