Dynamic Queues #277
frank81
started this conversation in
General ( Обо всём )
Replies: 3 comments 1 reply
|
Just create a queue with an unregistered agent 200001. Register a softphone under the number 200001 |
0 replies
|
Thanks for the reply, Thanks |
1 reply
|
Thank you, you have been very kind |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

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
All reactions