Dynamic Queues #277
Replies: 3 comments 1 reply
-
Just create a queue with an unregistered agent 200001. Register a softphone under the number 200001 |
Beta Was this translation helpful? Give feedback.
-
Thanks for the reply, Thanks |
Beta Was this translation helpful? Give feedback.
-
Thank you, you have been very kind |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone, I'm trying to create dynamic queues but Miko doesn't let me create agentless queues.
This was my configuration with dynamic agents on old asterisk:
queues.conf
[drmercuri]
musicclass = default
strategy = ringall
timeout = 30
retry = 5
wrapuptime = 10
maxlen = 0
announce-frequency = 90
min-announce-frequency = 15
announce-holdtime = one
announce-position = more
announce-position-limit = 10
announce-round-seconds = 30
relative-periodic-announce = yes
reportholdtime = yes
ringinuse = no
joinempty = yes
leavewhenempty = yes
extensions.conf
exten => * 50,1, Verbose (2, Logging In Queue Member)
same => n, Set (MemberChannel {CHANNEL (channeltype)} = $ {CHANNEL (peername)})
same => n, AddQueueMember (drmercuri, $ {MemberChannel})
same => n, Verbose (1, $ {AQMSTATUS}); ADDED, MEMBERALREADY, NOSUCHQUEUE
same => n, Playback (agent-loginok)
same => n, Hangup ()
exten => * 51,1, Verbose (2, Logging Out Queue Member)
same => n, Set (MemberChannel {CHANNEL (channeltype)} = $ {CHANNEL (peername)})
same => n, RemoveQueueMember (drmercuri, $ {MemberChannel})
same => n, Verbose (1, $ {RQMSTATUS}); REMOVED, NOTINQUEUE, NOSUCHQUEUE
same => n, Playback (agent-loggedoff)
same => n, Hangup ()
Can someone help me? Thank you
Beta Was this translation helpful? Give feedback.
All reactions