Re: [Asterisk-Users] MeetMe questions

2005-12-11 Thread Rich Adamson
I have seen several different explanations of how MeetMe is supposed to function. I am having a tough time figuring out which is correct. If I put the room number in the extensions.conf file, I never get prompted for a PIN. When I leave it out of the extensions.conf file, I get prompted for

Re: [Asterisk-Users] MeetMe questions

2005-12-11 Thread Doug Lytle
Schochet, Wes wrote: 2. Ideally, I'd like to have a leader passcode and a participant passcode where the participants can't talk to each other until the leader joins. Any way to do that? Check out the 'w' — wait until the marked user enters the conference

[Asterisk-Users] MeetMe questions

2005-12-10 Thread Schochet, Wes
Hi- I have seen several different explanations of how MeetMe is supposed to function. I am having a tough time figuring out which is correct. If I put the room number in the extensions.conf file, I never get prompted for a PIN. When I leave it out of the extensions.conf file, I get prompted for

Re: [Asterisk-Users] MeetMe questions

2004-02-04 Thread PBXtech
The Meetme needs to monitor DTMF and be able to trigger an AGI. and When the Meetme room is emptied it needs to be notified back to * so you can trigger a clean-up event or what not. that is what i would like to see. :) There really aren't any. Once you're in a conference, you can only exit

Re: [Asterisk-Users] MeetMe questions

2004-02-04 Thread PBXtech
how? I dont see anything in there to listen for a 1 to trigger a recording context... ? Jeremy McNamara wrote: PBXtech wrote: The Meetme needs to monitor DTMF and be able to trigger an AGI. and When the Meetme room is emptied it needs to be notified back to * so you can trigger a clean-up

Re: [Asterisk-Users] MeetMe questions

2004-02-04 Thread Brian West
'b' -- run AGI script specified in ${MEETME_AGI_BACKGROUND} Default: conf-background.agi (Note: This does not work with non-Zap channels in the same conference) NEXT!!! :P bkw On Wed, 4 Feb 2004, PBXtech wrote: how? I dont see anything in there to listen for

Re: [Asterisk-Users] MeetMe questions

2004-02-04 Thread PBXtech
ok, makes sense.anyone got an AGI script that will pasrse DTMF? or want to start one? Thanks Brian West wrote: 'b' -- run AGI script specified in ${MEETME_AGI_BACKGROUND} Default: conf-background.agi (Note: This does not work with non-Zap channels in the same

Re: [Asterisk-Users] MeetMe questions

2004-02-04 Thread Brian West
#!/usr/bin/perl use Asterisk::AGI; $AGI = new Asterisk::AGI; my %input = $AGI-ReadParse(); $AGI-setcallback(\mycallback); my $connected = 1; my $digit; while ($connected) { $digit = $AGI-get_data('beep', -1, 1); if ($digit == '1') {

Re: [Asterisk-Users] MeetMe questions

2004-02-04 Thread PBXtech
You rock! even though you dont like Janets TT :) Thanks Brian West wrote: #!/usr/bin/perl use Asterisk::AGI; $AGI = new Asterisk::AGI; my %input = $AGI-ReadParse(); $AGI-setcallback(\mycallback); my $connected = 1; my $digit; while ($connected) { $digit = $AGI-get_data('beep', -1,

Re: [Asterisk-Users] MeetMe questions

2004-02-04 Thread PBXtech
Could you use this setup to sense the end of a meetmet call to execute a cleanup script also? Brian West wrote: #!/usr/bin/perl use Asterisk::AGI; $AGI = new Asterisk::AGI; my %input = $AGI-ReadParse(); $AGI-setcallback(\mycallback); my $connected = 1; my $digit; while ($connected) {

Re: [Asterisk-Users] MeetMe questions

2004-02-04 Thread Brian West
You might be able to.. not totally sure. Oh and Janets TT wasn't all that. bkw On Wed, 4 Feb 2004, PBXtech wrote: Could you use this setup to sense the end of a meetmet call to execute a cleanup script also? Brian West wrote: #!/usr/bin/perl use Asterisk::AGI; $AGI = new

[Asterisk-Users] MeetMe questions

2004-01-20 Thread Chris Robertson
I'm looking into deploying * for an internal conference call server (using MeetMe) and had a couple of quick questions for those of you who have used it. I checked the Wiki but there weren't a lot of details for MeetMe. - Can you limit the size of a conference room, ie max 8 people, etc. - Is

Re: [Asterisk-Users] MeetMe questions

2004-01-20 Thread Philipp von Klitzing
Hi! - Can you limit the size of a conference room, ie max 8 people, etc. With MeetMeCount() and GotoIf() you are be able to limit the size of a conference room easily, it's a just a little bit of dialplan magic in extensions.conf. - Is there a list somewhere (besides the source ;) that has

Re: [Asterisk-Users] MeetMe questions

2004-01-20 Thread Tilghman Lesher
On Tuesday 20 January 2004 12:28, Chris Robertson wrote: I'm looking into deploying * for an internal conference call server (using MeetMe) and had a couple of quick questions for those of you who have used it. I checked the Wiki but there weren't a lot of details for MeetMe. - Can you

Re: [Asterisk-Users] MeetMe questions

2004-01-20 Thread John Todd
I'm looking into deploying * for an internal conference call server (using MeetMe) and had a couple of quick questions for those of you who have used it. I checked the Wiki but there weren't a lot of details for MeetMe. - Can you limit the size of a conference room, ie max 8 people, etc. - Is