[Asterisk-doc] docs chapter03.xml,1.2,1.3
asterisk-doc@lists.digium.com
asterisk-doc@lists.digium.com
Tue, 16 Dec 2003 11:39:54 -0800
Update of /cvsroot/asterisk/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv9686/docs
Modified Files:
chapter03.xml
Log Message:
blitzrage
- add MeetMe configuration example to chapter 3 (submitted by Wasim Baig)
Index: chapter03.xml
===================================================================
RCS file: /cvsroot/asterisk/docs/chapter03.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** chapter03.xml 12 Dec 2003 09:08:29 -0000 1.2
--- chapter03.xml 16 Dec 2003 19:39:51 -0000 1.3
***************
*** 152,161 ****
</sect2>
<sect2>
! <title>Meet-Me: The meetme.conf File</title>
! <para/>
! <sect3>
! <title>Don't Forget The Timing (Part B)</title>
! <para/>
! </sect3>
</sect2>
<sect2>
--- 152,196 ----
</sect2>
<sect2>
! <title>MeetMe: The meetme.conf File</title>
! <para>
! MeetMe is a simple conference bridge application. Trivial to setup, there
! are only three things you can get wrong ... well, four if you count that
! name of the file or its location (/etc/asterisk/meetme.conf)
! </para>
! <para>
! Please remember, a timing device is CRITICAL for meetme to work, timing
! can be had from any of the following (they give 1000hz, i.e. 1 timing
! point ever millisecond, thus 1000 ticks per second)
! <simplelist>
! <member>put any zaptel hardware card (X100P, TDM400P, E/TX00P, etc)</member>
! <member>use ztdummy (only if you have USB-UHCI)</member>
! <member>use ztrtc (won't work if you have SMP)</member>
! </simplelist>
!
! so in meetme.conf you have a [rooms] definition which is self-explanatory
!
! <programlisting>
! [rooms]
! </programlisting>
!
! and after this we have any number of conference rooms numbers such as
!
! <programlisting>
! <lineannotation>; Usage is conf => confno</lineannotation>
!
! conf => 1234
! conf => 1239487
! conf => 11
! </programlisting>
!
! etc... now, you can access these from your extensions.conf such as
!
! <programlisting>
! exten => 44,1,MeetMe(1234)
! </programlisting>
!
! MeeMe application has a number of flags and options that can be used, some functional, others proposed
! (see Appendix 3 for a full listing of options and the use of the MeetMe application)
! </para>
</sect2>
<sect2>