Hi
I am using Asterisk 13 certified version for implementing queue.
At initial stage all the callers are getting answered in an ordered way as i have chosen rrmemory for queue strategy. Later this ordering is getting affected as certain callers are maintained in queue for longer time (and getting disconnected due to timeout), and the most recent callers are getting answered.
This is my extension and queue conf settings
extensions.conf
exten =>333,1,Answer()
same =>n,Queue(queue_crm,,,,20)
same =>n,Hangup()
queues.conf
[queue_crm]
musicclass=default
strategy=rrmemory
joinempty=yes
leavewhenempty=no
ringinuse=no
timeout=5
retry=1
maxlen=0
wrapuptime=0
timeoutpriority=conf
autofill=yes
Plz help me out of this issue.