[Asterisk-Users] Setting QUEUE_PRIO

2006-05-03 Thread Douglas Garstang
Has anyone tried to use this? I have: exten = 2944000,1,Queue(some_q) exten = 2944000,2,Set(QUEUE_PRIO=10) exten = 2944000,3,Queue(some_q) When the user enters the queue again, they are being put at the back of the queue. It seems this new variable does not work. Doug.

Re: [Asterisk-Users] Setting QUEUE_PRIO

2006-05-03 Thread Kevin P. Fleming
Douglas Garstang wrote: When the user enters the queue again, they are being put at the back of the queue. It seems this new variable does not work. It works fine; lower numbers mean higher priority, and the default priority is 1 IIRC, so you asked the queue application to put the caller at

RE: [Asterisk-Users] Setting QUEUE_PRIO

2006-05-03 Thread Douglas Garstang
of 1 doesn't seem to work. -Original Message- From: Kevin P. Fleming [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 03, 2006 3:37 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Setting QUEUE_PRIO Douglas Garstang wrote: When the user

Re: [Asterisk-Users] Setting QUEUE_PRIO

2006-05-03 Thread Kevin P. Fleming
Douglas Garstang wrote: I originally had a lower number, 1, but changed to a higher priority after it did not work. I was wrong; higher numbers are higher priority. Your example should have resulted in the caller being placed into the queue ahead of any callers with a priority less than 10