Xavier D. wrote:
> Yes but what about the conference number ?
>

You can pass that on via the dial plan.  I'm using mysql to setup 
dynamic conferences.  A snippet below:

; ***********************************************************
; Get conference room number, if number entered is 5812
; jump to verify administrator password
; ************************************************************

exten => s,n,Read(get-room-num|conf-getconfno)
exten => s,n,NoOP(${conf-getchannel})
exten => s,n,GotoIf($["${get-room-num}" = "5812"]?s-verify,1:s,5)

; **********************************************************
; Create the conference room for the end user.  Info that
; was obtained from the MySQL database
; **********************************************************

exten => s-process,1,SetMusicOnHold(conference)
exten => 
s-process,n,Meetme(${conference.room}|ciMDPs|${conference.password})
exten => s-process,n,Hangup()

Doug

-- 
Ben Franklin quote:

"Those who would give up Essential Liberty to purchase a little Temporary 
Safety, deserve neither Liberty nor Safety."


-- 
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

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

Reply via email to