Priorisation calls

hello

i wanna to priorise some calls on queue

can i use bd asterisk to that

thks

See QUEUE_PRIO in Asterisk call queues - VoIP-Info I have verified that this is still in the source code.

Also consider raising a bug report against the documentation. There seem to be a lot of problems with, in particular, completeness in the pseudo comments from which the documentation is created.

There is also a position option.

I don’t understand how this relates to the subject.

How can i insert a phone number on ast_db to : make a prio calls like ::

exten => number,1,set(DID=${EXTEN})
exten => number,n,NoOp(${DID})
exten => number,n,NoOp(${CALLERID(num)})
exten => number,n,GotoIf($[${DB_EXISTS} = 982252525]?vip:simple)
exten => number,n(vip),Set(QUEUE_PRIO=10)
exten => number,n,Goto(ligne_1,s,1)
exten => number,n,Hangup()
exten => number,n(simple),Set(QUEUE_PRIO=5)
exten => number,n,Goto(ligne_1,s,1)
exten => number,n,Hangup()

You would have to wild card match on the left hand side of the dialplan and do an explicit test on the right hand side.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.