Displaying 2 results from an estimated 2 matches for "confcount".
2007 Mar 11
4
Problem configuring voice conference
...Conferencing
;Here the syntax is exten => extension(normally the
conf room no.),prority,
;MeetMe(conf. room no.,i(announces when people enter
and exit the conference),password)
exten => 700,1,MeetMe(600,i,1234)
;limit the conference room to 10 participants
exten => 700,1,MeetMeCount(600,CONFCOUNT)
exten => 700,2,GotoIf($[${CONFCOUNT} <= 10]?3:100)
exten => 700,3,MeetMe(600,i,1234)
exten => 700,100,Playback(conf-full)
[macro-voicemail]
exten => s,1,Dial(${ARG1},10)
exten => s,2,VoiceMail(u${MACRO_EXTEN}@default)
exten => s,102,VoiceMail(b${MACRO_EXTEN}@default)
;So us...
2009 May 29
1
how to detect dtmf in meetme
hello
i want to kick participant in a meeting by pressing the digit on sip phone.when i entry the meeting ,no matter how i press the button,the dtmf does not work.
here is my dialplan and my agi script,and sip.conf
[from-internal]
exten =>121,1,MeetMeCount(900,CONFCOUNT)
exten =>121,2,GotoIF($[${CONFCOUNT}<10]?3:100)
exten =>121,3,Authenticate(123456)
exten =>121,4,MeetMe(900,MDbF)
exten =>121,5,MeetMe(900,MD)
exten =>121,100,Playback(demo-moreinfo)
#!/usr/bin/php -q
<?php
//include("phpagi.php");
//include("phpagi-asmanager.ph...