MARTINEZ OGALDE RICARDO JAVIER
2003-Apr-15 07:57 UTC
[Asterisk-Users] Suppport for Asterisk, asterisk-h323 package and Voice Mail
Hi. I've recently installed Asterisk on my Linux system and added the asterisk-h323 package. I'm working with a H323 plataform with gatekeepers and gateways. I'm trying to implement a Voicemail for the endpoints, that works when the endpoinst are BUSY. I'm a newbie in asterisk so i need a little help here... 1.- I have succesfully route the BUSY calls from my endpoints to my Asterisk Platform 2.- I want that all the inbound calls from the endpoints that are on BUSY state could be answer by the asterisk's voice mail (Do i need to set any outbound or inbound channels here??? how and where can i do that??) 3.- Can i have different voice messages depending on the called number??? and then forward the message via email to any specific email direction??? Thanks in advance.. Regards Ricardo Martinez "...for long you live and high you fly And Smiles you'll give and tears you'll cry And all you touch and all you see Is all your life will ever be..." Pink Floyd . The Dark Side of The Moon ************************************************* Ricardo Javier Martinez Ogalde Ingenieria Civil Electrica Universidad de Chile http://cipres.cec.uchile.cl/~rmartine/index2.html *************************************************
Eric Wieling
2003-Apr-15 08:42 UTC
[Asterisk-Users] Suppport for Asterisk, asterisk-h323 package and Voice Mail
Can you dial an extention on asterisk from your h323 endpoint? If so then you would use something like exten => 1234,1,VoiceMail(b1234). If you can't dial an extention on the asterisk box, then you need to get that working first. I have several extentions on my asterisk box for testing. One that runs the DateTime app, one that runs the EchoTest app, and a few others that I use to confirm that my end point can talk to Asterisk. --Eric On Tue, Apr 15, 2003 at 10:57:37AM -0400, MARTINEZ OGALDE RICARDO JAVIER wrote:> Hi. > I've recently installed Asterisk on my Linux system and added the > asterisk-h323 package. I'm working with a H323 plataform with gatekeepers > and gateways. I'm trying to implement a Voicemail for the endpoints, > that works when the endpoinst are BUSY. I'm a newbie in asterisk so i > need a little help here... > > 1.- I have succesfully route the BUSY calls from my endpoints to my > Asterisk Platform > > 2.- I want that all the inbound calls from the endpoints that are on BUSY > state could be answer by the asterisk's voice mail (Do i need to set any > outbound or inbound channels here??? how and where can i do that??) > > 3.- Can i have different voice messages depending on the called number??? > and then forward the message via email to any specific email direction??? > > Thanks in advance.. > > Regards > > Ricardo Martinez > > > "...for long you live and high you fly > And Smiles you'll give and tears you'll cry > And all you touch and all you see > Is all your life will ever be..." > > Pink Floyd . The Dark Side of The Moon > > > ************************************************* > > Ricardo Javier Martinez Ogalde > Ingenieria Civil Electrica > Universidad de Chile > http://cipres.cec.uchile.cl/~rmartine/index2.html > > ************************************************* > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users >
Michael Manousos
2003-Apr-15 10:36 UTC
[Asterisk-Users] Suppport for Asterisk, asterisk-h323 package and Voice Mail
MARTINEZ OGALDE RICARDO JAVIER wrote:> Hi. > I've recently installed Asterisk on my Linux system and added the > asterisk-h323 package. I'm working with a H323 plataform with gatekeepers > and gateways. I'm trying to implement a Voicemail for the endpoints, > that works when the endpoinst are BUSY. I'm a newbie in asterisk so i > need a little help here... > > 1.- I have succesfully route the BUSY calls from my endpoints to my > Asterisk Platform > > 2.- I want that all the inbound calls from the endpoints that are on BUSY > state could be answer by the asterisk's voice mail (Do i need to set any > outbound or inbound channels here??? how and where can i do that??)If you are using Asterisk just for voicemail, then you just have to answer the incoming call and start Voicemail. ; Valid for 3-digit called numbers exten => _XXX,1,Answer exten => _XXX,2,Voicemail(b${EXTEN})> > 3.- Can i have different voice messages depending on the called number??? > and then forward the message via email to any specific email direction???I'm not sure if the VoiceMail app can play different main messages. But you could add a simple message Playback before you enter the VoiceMail. exten => _XXX,1,Answer exten => 111,2,Playback(mes111) exten => 112,2,Playback(mes112) exten => 113,2,Playback(mes113) exten => 114,2,Playback(mes114) exten => _XXX,3,Voicemail(b${EXTEN}) Michael Manousos.> > Thanks in advance.. > > Regards > > Ricardo Martinez > > > "...for long you live and high you fly > And Smiles you'll give and tears you'll cry > And all you touch and all you see > Is all your life will ever be..." > > Pink Floyd . The Dark Side of The Moon > > > ************************************************* > > Ricardo Javier Martinez Ogalde > Ingenieria Civil Electrica > Universidad de Chile > http://cipres.cec.uchile.cl/~rmartine/index2.html > > ************************************************* > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users