I was successful to control the max users (10) if I hardcode the
conference room number (in this case 101) as follows:
exten => 8600,1,Playback(conf-thereare)
exten => 8600,2,MeetMeCount(101)
exten => 8600,3,Playback(conf-peopleinconf)
exten => 8600,4,MeetMeCount(101,CONFCOUNT)
exten => 8600,5,GotoIf($[${CONFCOUNT} <= 10]?6:9)
exten => 8600,6,MeetMe(101,i)
exten => 8600,7,Playback(vm-goodbye)
exten => 8600,8,Hangup()
exten => 8600,9,Playback(conf-full)
exten => 8600,10,Playback(vm-goodbye)
exten => 8600,11,Hangup()

On the other hand, I thought it would be a better idea if I just allow
user to enter their conf number when they dial a generic meetme
extension.  
exten => 8600,1,MeetMe(,ciMps)
exten => 8600,2,Playback(vm-goodbye)
exten => 8600,3,Hangup()

However, if I choose the 2nd option, I do not seem to be able to control
the max number of users.

Any thoughts on how I can achieve this?

_______________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to