[Asterisk-doc] docs conf-files.xml,1.2,1.3
blitzrage
asterisk-doc@lists.digium.com
Mon, 31 May 2004 02:44:57 +0000
Comments:
Update of /cvsroot/asterisk/docs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29663/docs
Modified Files:
conf-files.xml
Log Message:
Mike Preston
- meetme.conf in chapter 3
Index: conf-files.xml
===================================================================
RCS file: /cvsroot/asterisk/docs/conf-files.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** conf-files.xml 7 May 2004 17:24:43 -0000 1.2
--- conf-files.xml 31 May 2004 02:44:48 -0000 1.3
***************
*** 75,79 ****
<sect2>
<title>meetme.conf</title>
! <para/>
</sect2>
<sect2>
--- 75,173 ----
<sect2>
<title>meetme.conf</title>
! <para>
! MeetMe is the Asterisk conferencing application, allowing multiple parties
! to all be part of the same phone call. It can be configured many ways, for
! example one person talking and many listening or as a many to many conference.
! It is possible to give certain users the ability to try to control the
! conference with the admin functions.
! </para>
!
! <para>
! It is generally controlled via the dial plan using two applications. MeetMe
! and MeetMeCount, and requires a timing source to be present in the system
! being used. ztdummy works fine for this and it is not necessary to use a
! zaptel card. However, ztdummy does not provide as reliable or scalable timing
! as a hardware interface, so use with caution.
! </para>
!
! <para>
! MeetMeCount returns the number of people active in a certain conference.
! MeetMe is much more complex in that it can take many options allowing
! privleges and abilities to be granted or taken away to users. For example
! you could have two extentions, one allowing the speaker to enter the room
! with a password and the ability to address the conference and another only
! allowing people to listen with no password.
! </para>
!
! <para>
! This could be done as follows:
! </para>
!
! <para>
! in extensions.conf
! </para>
!
! <informalexample>
! <programlisting>
! [conference]
! exten => 51000,1,MeetMe(1000|tp|1234) <linenotation>;speaker can speak and can exit with the press of #</linenotation>
! exten => 1000,1,MeetMe(1000|mq) <linenotation>;listeners can only recieve audio from the conference and when joining or leaving wont produce sound.</linenotation>
! </programlisting>
! </informalexample>
!
! <para>
! and in meetme.conf
! </para>
!
! <informalexample>
! <programlisting>
! [rooms]
! conf => 1000
! </programlisting>
! </informalexample>
!
! <para>
! The options are as follows (accurate as of 2004-05-30):
! </para>
!
! <simplelist>
! <member>'m' -- set monitor only mode (Listen only, no talking)</member>
! <member>'t' -- set talk only mode. (Talk only, no listening)</member>
! <member>'p' -- allow user to exit the conference by pressing '#'</member>
! <member>'d' -- dynamically add conference</member>
! <member>'D' -- dynamically add conference, prompting for a PIN</member>
! <member>'e' -- select an empty conference</member>
! <member>'E' -- select an empty pinless conference</member>
! <member>'v' -- video mode</member>
! <member>'q' -- quiet mode (don't play enter/leave sounds)</member>
! <member>'M' -- enable music on hold when the conference has a single caller</member>
! <member>'x' -- exit the conference if the last marked user left</member>
! <member>'b' -- run AGI script specified in ${MEETME_AGI_BACKGROUND}</member>
! <member>'s' -- Present menu (user or admin) when '*' is received ('send' to menu)</member>
! <member>'a' -- set admin mode</member>
! </simplelist>
!
! <para>
! You can also get this list by typing 'show application meetme' within the
! asterisk shell.
! </para>
!
! <para>
! meetme.conf simply lists all the staticly generated conferences in asterisk
! in the form:
! </para>
!
! <informalexample>
! <programlisting>
! conf => 1000
! conf => 1000,1234
! </programlisting>
! </informalexample>
!
! <para>
! where the first number is the conference number and the second is the deafult
! password for the conference.
! </para>
!
</sect2>
<sect2>