Asterisk Asterisk
2007-Mar-11 22:48 UTC
[asterisk-users] Problem configuring voice conference
Hey! I am trying to configure the voice onference with MeetMe application for my internal users. I have my server and 4 clients on same LAN and following is my extensions.conf file: [globals] Ahsen=SIP/222 Tahami=SIP/444 Uzair=SIP/333 Wasif=SIP/555 [internal] exten => 1234,1,Macro(voicemail,${Ahsen}) exten => 4321,1,Macro(voicemail,${Uzair}) exten => 5678,1,Macro(voicemail,${Tahami}) exten => 8765,1,Macro(voicemail,${Wasif}) ;For Call 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 usrs can dial 500 to access their voicemail exten => 500,1,VoiceMailMain( ) But from any client i dial extension 700 to initiate teh conference i get the following error at asterisk CLI: [Mar 12 15:41:38] WARNING[2756]: pbx.c:1779 pbx_extension_helper: No application 'MeetMe' for extension (internal, 700, 1) Send instant messages to your online friends http://uk.messenger.yahoo.com
I have setup my Asterisk server to have 3 outbound routes 1 being for local calls 2 being for toll calls 3 being international call What I am wanting to do is automaticly setup if you dial a local number it goes out on the local interface If you dial a toll call it will go out on the tall provider. Now for the 3 option I want it to pick up the slack of the other eg if I have not put the dialing prefix in it will default to this trunk Any help would be greatfull Thomas Patterson
Looks like you may have missed building zaptel - without zaptel there is no meetme. PaulH On Mon, 2007-03-12 at 05:48 +0000, Asterisk Asterisk wrote:> Hey! > > I am trying to configure the voice onference with > MeetMe application for my internal users. I have my > server and 4 clients on same LAN and following is my > extensions.conf file: > > [globals] > Ahsen=SIP/222 > Tahami=SIP/444 > Uzair=SIP/333 > Wasif=SIP/555 > > > [internal] > exten => 1234,1,Macro(voicemail,${Ahsen}) > exten => 4321,1,Macro(voicemail,${Uzair}) > exten => 5678,1,Macro(voicemail,${Tahami}) > exten => 8765,1,Macro(voicemail,${Wasif}) > > > ;For Call 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 usrs can dial 500 to access their voicemail > exten => 500,1,VoiceMailMain( ) > > But from any client i dial extension 700 to initiate > teh conference i get the following error at asterisk > CLI: > > [Mar 12 15:41:38] WARNING[2756]: pbx.c:1779 > pbx_extension_helper: No application 'MeetMe' for > extension (internal, 700, 1) > > > Send instant messages to your online friends http://uk.messenger.yahoo.com > _______________________________________________ > --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
Do you have a Meetme application? Look at /usr/lib/asterisk/modules and look at the log files when asterisk starts up and see if there is a problem with meetme if you have it -- and check the case as well. on Monday 03/12/2007 Asterisk Asterisk(asteriskbunnies@yahoo.com) wrote > > Hey! > > I am trying to configure the voice onference with > MeetMe application for my internal users. I have my > server and 4 clients on same LAN and following is my > extensions.conf file: > > [globals] > Ahsen=SIP/222 > Tahami=SIP/444 > Uzair=SIP/333 > Wasif=SIP/555 > > > [internal] > exten => 1234,1,Macro(voicemail,${Ahsen}) > exten => 4321,1,Macro(voicemail,${Uzair}) > exten => 5678,1,Macro(voicemail,${Tahami}) > exten => 8765,1,Macro(voicemail,${Wasif}) > > > ;For Call 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 usrs can dial 500 to access their voicemail > exten => 500,1,VoiceMailMain( ) > > But from any client i dial extension 700 to initiate > teh conference i get the following error at asterisk > CLI: > > [Mar 12 15:41:38] WARNING[2756]: pbx.c:1779 > pbx_extension_helper: No application 'MeetMe' for > extension (internal, 700, 1) > > > Send instant messages to your online friends http://uk.messenger.yahoo.com > _______________________________________________ > --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 -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com
Asterisk Asterisk
2007-Mar-12 03:18 UTC
[asterisk-users] Problem configuring voice conference
Hey i installed zaptel and when i tried to install asterisk and ran command menuselect it showed me that there are some discrepencies that are not being fullfilled for meetme application, but i have also installed ztdummy when i installed zaptel. I am totally stuck and nowhere to go what should i do. --- Paul Hales <phales@asteriskit.com.au> wrote:> > Sure, but you will probably have to recompile > Asterisk to get all the > extra bits. > > Should only take you 10 minutes. > > later, > > PaulH > > On Mon, 2007-03-12 at 06:54 +0000, Asterisk Asterisk > wrote: > > Hey! Thanks you are absolutely rite could i > install > > ity now after i have compiled and installed > asterisk > > or not. > > > > > > Send instant messages to your online friends > http://uk.messenger.yahoo.com > >Send instant messages to your online friends http://uk.messenger.yahoo.com