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

http://www.voip-info.org/wiki/index.php?page=Asterisk+cmd+MeetMe

Doug

--
Ben Franklin quote:

"Those who would give up Essential Liberty to purchase a little Temporary Safety, 
deserve neither Liberty nor Safety."


___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


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 a room
> number and a PIN.  What I want, is to have a room number based on the DID
> extension that asks the user to enter his/her PIN.  I can't make that
> happen.
> 
> Here is my current files:
> 
> extensions.conf:
> [ext-meetme]
> exten => 5570,1,Answer
> exten => 5570,2,wait(1)
> exten => 5570,3,MeetMe(|M)
> 
> Meetme.conf:
> conf => 100,2321
> conf => 101,2331
> conf => 102,2231
> 
> 1. How can I get 5570 always go to room 100 and just prompt the caller for a
> pin?
> 
> 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?

For question #1, take a look at 'show application meetme' and some of the 
examples on the wiki. Here's two simple examples:
; Meetme Conference room #1 (no pin required) 
exten => 3555,1,Meetme(3555|pM)  
 
; Meetme Conference room #2 (pin number required to join)
exten => 3556,1,Answer
exten => 3556,2,Wait,1
exten => 3556,3,Authenticate(45678)
exten => 3556,4,Meetme(3556|pM)

For question #2, not sure how to accomplish that; never had to attempt
that before. Pure guess is it would likely involve an AGI script and
multiple access numbers, but others may have a better perspective then I.


___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[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 a room
number and a PIN.  What I want, is to have a room number based on the DID
extension that asks the user to enter his/her PIN.  I can't make that
happen.

Here is my current files:

extensions.conf:
[ext-meetme]
exten => 5570,1,Answer
exten => 5570,2,wait(1)
exten => 5570,3,MeetMe(|M)

Meetme.conf:
conf => 100,2321
conf => 101,2331
conf => 102,2231

1. How can I get 5570 always go to room 100 and just prompt the caller for a
pin?

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?

Thanks,

Wes
___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


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::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') {
> >$AGI->stream_file('somefile');
> >} elsif ($digit == '2') {
> >$AGI->stream_file('someotherfile');
> >} elsif ($digit == '#') {
> >$connected = 0;
> >}
> >
> >}
> >
> >sub mycallback {
> >my ($returncode) = @_;
> >print STDERR "MYCALLBACK: User Hungup ($returncode)\n";
> >exit($returncode);
> >}
> >
> >
> >On Wed, 4 Feb 2004, PBXtech wrote:
> >
> >
> >
> >>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
> >>>conference)
> >>>
> >>>
> >>>NEXT!!! :P
> >>>
> >>>bkw
> >>>
> >>>On Wed, 4 Feb 2004, PBXtech wrote:
> >>>
> >>>
> >>>
> >>>
> >>>
> 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 event or what not.
> >>
> >>
> >>that is what i would like to see.   :)
> >>
> >>
> >>
> >>
> >You can already do this, using Zap channels.
> >
> >show application MeetMe
> >
> >
> >Jeremy McNamra
> >
> >
> >___
> >Asterisk-Users mailing list
> >[EMAIL PROTECTED]
> >http://lists.digium.com/mailman/listinfo/asterisk-users
> >To UNSUBSCRIBE or update options visit:
> > http://lists.digium.com/mailman/listinfo/asterisk-users
> >
> >
> >
> >
> >
> >
> ___
> Asterisk-Users mailing list
> [EMAIL PROTECTED]
> http://lists.digium.com/mailman/listinfo/asterisk-users
> To UNSUBSCRIBE or update options visit:
>   http://lists.digium.com/mailman/listinfo/asterisk-users
> 
> 
> 
> 
> 
> >>>___
> >>>Asterisk-Users mailing list
> >>>[EMAIL PROTECTED]
> >>>http://lists.digium.com/mailman/listinfo/asterisk-users
> >>>To UNSUBSCRIBE or update options visit:
> >>>  http://lists.digium.com/mailman/listinfo/asterisk-users
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>___
> >>Asterisk-Users mailing list
> >>[EMAIL PROTECTED]
> >>http://lists.digium.com/mailman/listinfo/asterisk-users
> >>To UNSUBSCRIBE or update options visit:
> >>   http://lists.digium.com/mailman/listinfo/asterisk-users
> >>
> >>
> >>
> >___
> >Asterisk-Users mailing list
> >[EMAIL PROTECTED]
> >http://lists.digium.com/mailman/listinfo/asterisk-users
> >To UNSUBSCRIBE or update options visit:
> >   http://lists.digium.com/mailman/listinfo/asterisk-users
> >
> >
> >
> >
>
> ___
> Asterisk-Users mailing list
> [EMAIL PROTECTED]
> http://lists.digium.com/mailman/listinfo/asterisk-users
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
>
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


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) {
   $digit = $AGI->get_data('beep', -1, 1);

   if ($digit == '1') {
   $AGI->stream_file('somefile');
   } elsif ($digit == '2') {
   $AGI->stream_file('someotherfile');
   } elsif ($digit == '#') {
   $connected = 0;
   }
}

sub mycallback {
   my ($returncode) = @_;
   print STDERR "MYCALLBACK: User Hungup ($returncode)\n";
   exit($returncode);
}
On Wed, 4 Feb 2004, PBXtech wrote:

 

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
conference)
NEXT!!! :P

bkw

On Wed, 4 Feb 2004, PBXtech wrote:



 

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 event or what not.
that is what i would like to see.   :)

   

You can already do this, using Zap channels.

show application MeetMe

Jeremy McNamra

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users


 

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
 http://lists.digium.com/mailman/listinfo/asterisk-users


   

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
 http://lists.digium.com/mailman/listinfo/asterisk-users


 

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users
   

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users
 

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


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, 1);

   if ($digit == '1') {
   $AGI->stream_file('somefile');
   } elsif ($digit == '2') {
   $AGI->stream_file('someotherfile');
   } elsif ($digit == '#') {
   $connected = 0;
   }
}

sub mycallback {
   my ($returncode) = @_;
   print STDERR "MYCALLBACK: User Hungup ($returncode)\n";
   exit($returncode);
}
On Wed, 4 Feb 2004, PBXtech wrote:

 

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
conference)
NEXT!!! :P

bkw

On Wed, 4 Feb 2004, PBXtech wrote:



 

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 event or what not.
that is what i would like to see.   :)

   

You can already do this, using Zap channels.

show application MeetMe

Jeremy McNamra

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users


 

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
 http://lists.digium.com/mailman/listinfo/asterisk-users


   

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
 http://lists.digium.com/mailman/listinfo/asterisk-users


 

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users
   

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users
 

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


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') {
$AGI->stream_file('somefile');
} elsif ($digit == '2') {
$AGI->stream_file('someotherfile');
} elsif ($digit == '#') {
$connected = 0;
}

}

sub mycallback {
my ($returncode) = @_;
print STDERR "MYCALLBACK: User Hungup ($returncode)\n";
exit($returncode);
}


On Wed, 4 Feb 2004, PBXtech wrote:

> 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
> >conference)
> >
> >
> >NEXT!!! :P
> >
> >bkw
> >
> >On Wed, 4 Feb 2004, PBXtech wrote:
> >
> >
> >
> >>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 event or what not.
> 
> 
> that is what i would like to see.   :)
> 
> 
> >>>
> >>>You can already do this, using Zap channels.
> >>>
> >>>show application MeetMe
> >>>
> >>>
> >>>Jeremy McNamra
> >>>
> >>>
> >>>___
> >>>Asterisk-Users mailing list
> >>>[EMAIL PROTECTED]
> >>>http://lists.digium.com/mailman/listinfo/asterisk-users
> >>>To UNSUBSCRIBE or update options visit:
> >>>  http://lists.digium.com/mailman/listinfo/asterisk-users
> >>>
> >>>
> >>>
> >>>
> >>___
> >>Asterisk-Users mailing list
> >>[EMAIL PROTECTED]
> >>http://lists.digium.com/mailman/listinfo/asterisk-users
> >>To UNSUBSCRIBE or update options visit:
> >>   http://lists.digium.com/mailman/listinfo/asterisk-users
> >>
> >>
> >>
> >___
> >Asterisk-Users mailing list
> >[EMAIL PROTECTED]
> >http://lists.digium.com/mailman/listinfo/asterisk-users
> >To UNSUBSCRIBE or update options visit:
> >   http://lists.digium.com/mailman/listinfo/asterisk-users
> >
> >
> >
> >
>
> ___
> Asterisk-Users mailing list
> [EMAIL PROTECTED]
> http://lists.digium.com/mailman/listinfo/asterisk-users
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
>
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


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
conference)
NEXT!!! :P

bkw

On Wed, 4 Feb 2004, PBXtech wrote:

 

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 event or what not.
that is what i would like to see.   :)
   

You can already do this, using Zap channels.

show application MeetMe

Jeremy McNamra

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
 http://lists.digium.com/mailman/listinfo/asterisk-users
 

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users
   

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users
 

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


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 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 event or what not.
> >>
> >>
> >> that is what i would like to see.   :)
> >
> >
> >
> > You can already do this, using Zap channels.
> >
> > show application MeetMe
> >
> >
> > Jeremy McNamra
> >
> >
> > ___
> > Asterisk-Users mailing list
> > [EMAIL PROTECTED]
> > http://lists.digium.com/mailman/listinfo/asterisk-users
> > To UNSUBSCRIBE or update options visit:
> >   http://lists.digium.com/mailman/listinfo/asterisk-users
> >
> >
>
> ___
> Asterisk-Users mailing list
> [EMAIL PROTECTED]
> http://lists.digium.com/mailman/listinfo/asterisk-users
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
>
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


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 event or what not.

that is what i would like to see.   :)


You can already do this, using Zap channels.

show application MeetMe

Jeremy McNamra

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] MeetMe questions

2004-02-04 Thread Jeremy McNamara
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 event or what not.

that is what i would like to see.   :)


You can already do this, using Zap channels.

show application MeetMe

Jeremy McNamra

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


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 the conference, if you entered with option p specified in the
dialplan, by pressing a #.  Otherwise, the only way to exit a
conference is to hangup.
 

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


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 there a list somewhere (besides the source ;) that has all the commands
availible to people in the conferences?  Specifically can you do a mute all
new callers type action (when people are really just calling up to listen.
- Passwords/Pins for the conference rooms?
Thanks all,
Chris Robertson
Network Engineer
Instill Corp.
You could do all this through the dialplan fairly easily.  I have 
already implemented everything you're talking about for several 
customers.

 - use MeetMeCount to deny additional users past N members
 - type "show application MeetMe" to get a list of commands
 - type "show application Authenticate" for password logic
JT
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


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 limit the size of a conference "room", ie max 8 people,
> etc.

Not directly, but you could run a MeetMeCount(confnum|varname),
then check the results of varname and either allow/disallow that
participant based upon the result.

> - Is there a list somewhere (besides the source ;) that has
> all the commands availible to people in the conferences? 

There really aren't any.  Once you're in a conference, you can only
exit the conference, if you entered with option p specified in the
dialplan, by pressing a #.  Otherwise, the only way to exit a
conference is to hangup.

> Specifically can you do a mute all new callers type action (when
> people are really just calling up to listen.

You want the monitor-only option, i.e. option m:
MeetMe(1234|m)

> - Passwords/Pins for
> the conference rooms?

For dynamic conferences, not yet, but you can with static-defined
conferences:  conf => 1234,4231 in meetme.conf.

You can also pre-enter the PIN for a conference number in the
dialplan:  MeetMe(1234||4231).  This might be useful if you wanted
to protect the conference from people who could enter an arbitrary
number but were using an alternate method of authentication.  Sorry,
there is currently no way to have multiple PINs per conference.

Note that you do not currently need to restart or reload Asterisk for
MeetMe to notice new entries in meetme.conf.

-Tilghman

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


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 all the commands
> availible to people in the conferences?  Specifically can you do a mute all
> new callers type action (when people are really just calling up to listen.

http://www.voip-info.org/wiki-Asterisk+cmd+MeetMe

> - Passwords/Pins for the conference rooms?

Use the dialplan. Put Authenticate() before MeetMe().

http://www.voip-info.org/wiki-Asterisk+cmd+Authenticate

Cheers, Philipp


___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[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 there a list somewhere (besides the source ;) that has all the commands
availible to people in the conferences?  Specifically can you do a mute all
new callers type action (when people are really just calling up to listen.
- Passwords/Pins for the conference rooms?

Thanks all,
Chris Robertson
Network Engineer
Instill Corp. 
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users