6
MeetMe Conferencing MeetMe conferencing can be configured in two steps: Configure the meetme.conf file Call a conference from extension.conf using the MeetMe application

MeetMe Conferencing

Embed Size (px)

DESCRIPTION

MeetMe Conferencing. MeetMe conferencing can be configured in two steps: Configure the meetme.conf file Call a conference from extension.conf using the MeetMe application. meetme.conf . The syntax is: Conf => conference_number [,pin] [,administrative_pin] Example: - PowerPoint PPT Presentation

Citation preview

Page 1: MeetMe Conferencing

MeetMe Conferencing

MeetMe conferencing can be configured in two steps:

• Configure the meetme.conf file• Call a conference from extension.conf using the MeetMe

application

Page 2: MeetMe Conferencing

meetme.conf

The syntax is:Conf => conference_number [,pin] [,administrative_pin]

Example:Conf => 2222,1821, 191871

where2222 is a room number1821 is a password 19187 is an administrative password

Page 3: MeetMe Conferencing

MeetMe() Application

Enter into a conference configured in meetme.confThe format is:MeetMe([cong_no][,[options][,pin]])Conf_no is the conference number to join

The options can be any of the following:m Monitor mode. Only listening, no talkingt Talk mode. Only talking, no listeningI Announce who is joining/leavingP A user can exit by pressing the # keyE Select the first empty PIN-less conference

Page 4: MeetMe Conferencing

r Conversation will be recorded in the format ${MEETME_RECORDINGFORMAT} and saved as ${MEETME_RECORDINGFILE}

C Upon entering, announce how many users are in a conference

M Music-on-hold will be played when there is only one user in the conference

S Enter menu(user & administrator) when the * key is pressed

P Always ask for a PIN even if it is specified

If a PIN argument is specified, the caller must enter that PIN in order to enter the conference

Page 5: MeetMe Conferencing

An Example

[globals] CONFMAX => 10 ; maximum persons in conference

exten => 8081,1,Macro(stdmeetme,8081))

[macro-stdmeetme] ; with limit to maximum number of persons in conference

exten => s,1,MeetMeCount(${MACRO_EXTEN}|count) exten => s,2,Gotoif,$[${count} >= ${CONFMAX}]?103 exten => s,3,MeetMe(${MACRO_EXTEN}) exten => s,4,Goto(s|1)

exten => s,103,Background(conf-full) exten => s,104,Hangup

Page 6: MeetMe Conferencing