I’ve setup an AstDB and put conf pins in there. I need to be able to have a participant call in but the conference doesn’t start until the Leader for that conference has key’d in. Also I’m currently having an issue where if there’s NO PIN entered it defaults to conference number 0
exten => phonenumber,1,Answer ; Answer the line
exten => phonenumber,n,Wait(2)
exten => phonenumber,n,Playback(confanswer) ;Greeting
exten => phonenumber,n,Read(conf_num,enter-conf-call-number,6) ;Pin collection
exten => phonenumber,n,set(passpin=${DB(confer/${conf_num})}) ;setting collected pin to variable
exten => phonenumber,n,MeetMe(${conf_num}|sIMdEcq) ;calling meetme application
exten => phonenumber,n,Hangup()
Your help is greatly appreciated!