I'd like some feedback on my solution so far for using queues in a
multi tenant configuration.  For most of the configuration files
I've been able to use a naming scheme for the context names, which
works nicely for making multi tenant fairly transparent.  However
that won't work for everything and queues is one of them.<br>
<br>
In queues.conf the naming scheme will work for defining a queue.&nbsp;
It won't work for the agents though as they all have to have unique
names.&nbsp; My thought is to create a pool of available agent numbers,
and the web gui for the tenants will let the tenant pick the agent
numbers they want to assign out of the pool.&nbsp; As numbers are used
they are taken out of the pool, and as they become available they go
back into the pool.&nbsp; The&nbsp; downside to this is that a tenant
won't get to pick the exact numbers they want, but that doesn't seem
like too much of a compromise for a multi tenant system. <br>
<br>
Anyone have any better ideas?<br>
<br>
Chris<br>