Hi can you help me to build a asterisk manager command event to join a conference? i've seen that there is the event Event: MeetmeJoin Channel: <channel> Uniqueid: <uniqueid> Meetme: <meetme> Usernum: <usernum> Can you explain me how it works? Can i use it to join an existing conference? Thanks
In article <9469c3170612220904q3b250177kfff477e3b6cc882f@mail.gmail.com>, nik600 <nik600@gmail.com> wrote:> Hi > > can you help me to build a asterisk manager command event to join a conference? > > i've seen that there is the event > > Event: MeetmeJoin > Channel: <channel> > Uniqueid: <uniqueid> > Meetme: <meetme> > Usernum: <usernum> > > Can you explain me how it works?It is sent by Asterisk to your Manager Client when someone joins a Meetme conference.> Can i use it to join an existing conference?No, it isn't a command from you to Asterisk, it is information from Asterisk to you. You have to join a conference using the dialplan. If you want the Manager Client to be able to make an existing call join a conference, set up an extension in the dialplan that does what you want, and then use the Manager "Redirect" command to transfer the channel to that extension. Cheers Tony -- Tony Mountifield Work: tony@softins.co.uk - http://www.softins.co.uk Play: tony@mountifield.org - http://tony.mountifield.org
> > You have to join a conference using the dialplan. If you want the > Manager Client to be able to make an existing call join a conference, > set up an extension in the dialplan that does what you want, and > then use the Manager "Redirect" command to transfer the channel > to that extension. >Many thanks, do you know if it is possible to join a conference from different channels with this method? (For example, 2 calls from SIP and one from H323) ?
On 12/23/06, nik600 <nik600@gmail.com> wrote:> > > > You have to join a conference using the dialplan. If you want the > > Manager Client to be able to make an existing call join a conference, > > set up an extension in the dialplan that does what you want, and > > then use the Manager "Redirect" command to transfer the channel > > to that extension. > >And sorry, another question...how can i automatically do a redirect command when i recive a call? for example, my dialplan will be: [default] ; extension called from external user exten => 777,1,Dial(999) exten => 777,2,Dial(SIP/user1@host1) exten => 777,3,transfer ... exten => 777,4,Dial(SIP/user1@host2) exten => 777,5,transfer ... ; extension to join a conference exten => 999,1,Answer exten => 999,2,Meetme(100) Can i do something like that?
In article <9469c3170612230158v51d3ed80q567c657743be25fc@mail.gmail.com>, nik600 <nik600@gmail.com> wrote:> > > > You have to join a conference using the dialplan. If you want the > > Manager Client to be able to make an existing call join a conference, > > set up an extension in the dialplan that does what you want, and > > then use the Manager "Redirect" command to transfer the channel > > to that extension. > > > > Many thanks, do you know if it is possible to join a conference from > different channels with this method? (For example, 2 calls from SIP > and one from H323) ?Yes, any kind of channel that is executing in the dialplan can join a conference by calling Meetme with the appropriate parameters. Each channel needs to do this separately. Cheers Tony -- Tony Mountifield Work: tony@softins.co.uk - http://www.softins.co.uk Play: tony@mountifield.org - http://tony.mountifield.org