Hi, in the menu of voicemailmain, appear a lot of options, there is a way to leave only some of them? Also I want to know if there is a option that erase all message in a user box. Best REgards Ever Zalazar -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060512/98a6f962/attachment.htm
pedro noticioso
2006-May-12 13:05 UTC
[Asterisk-Users] hi guys, a new newbie here needing help :D
I just installed rpm binaries in a new mandriva and I see a frew error messages with asterisk -vvvvvvvcfg, btw I would also like a little guidance to just set up a couple sip phones to start playing with soft phone communication with 3 pcs on the network thanks :) ng '/etc/asterisk/agents.conf': Found [skipping chan_alsa.so] [chan_iax2.so] => (Inter Asterisk eXchange (Ver 2)) == Registered custom function IAXPEER May 12 15:50:12 WARNING[6173]: chan_iax2.c:9212 load_module: Unable to open IAX timing interface: No such file or directory == Registered application 'IAX2Provision' == Manager registered action IAXpeers == Manager registered action IAXnetstats == Parsing '/etc/asterisk/iax.conf': Found -- doing lookup for '216.207.245.47' == Registered channel type 'IAX2' (Inter Asterisk eXchange Driver (Ver 2)) == Using TOS bits 16 == Binding IAX2 to default address 0.0.0.0:4569 == IAX Ready and Listening == Loaded firmware 'iaxy.bin' == Parsing '/etc/asterisk/iaxprov.conf': Found -- Loaded provisioning template 'default' [chan_local.so] => (Local Proxy Channel) == Registered channel type 'Local' (Local Proxy Channel Driver) [chan_mgcp.so] => (Media Gateway Control Protocol (MGCP)) == Parsing '/etc/asterisk/mgcp.conf ng '/etc/asterisk/agents.conf': Found [skipping chan_alsa.so] [chan_iax2.so] => (Inter Asterisk eXchange (Ver 2)) == Registered custom function IAXPEER May 12 15:50:12 WARNING[6173]: chan_iax2.c:9212 load_module: Unable to open IAX timing interface: No such file or directory == Registered application 'IAX2Provision' == Manager registered action IAXpeers == Manager registered action IAXnetstats == Parsing '/etc/asterisk/iax.conf': Found -- doing lookup for '216.207.245.47' == Registered channel type 'IAX2' (Inter Asterisk eXchange Driver (Ver 2)) == Using TOS bits 16 == Binding IAX2 to default address 0.0.0.0:4569 == IAX Ready and Listening == Loaded firmware 'iaxy.bin' == Parsing '/etc/asterisk/iaxprov.conf': Found -- Loaded provisioning template 'default' [chan_local.so] => (Local Proxy Channel) == Registered channel type 'Local' (Local Proxy Channel Driver) [chan_mgcp.so] => (Media Gateway Control Protocol (MGCP)) == Parsing '/etc/asterisk/mgcp.conf [codec_gsm.so] => (GSM/PCM16 (signed linear) Codec Translator) == Parsing '/etc/asterisk/codecs.conf': Found -- codec_gsm: using generic PLC == Registered translator 'gsmtolin' from format gsm to slin, cost 1 May 12 15:50:34 WARNING[6173]: config_old.c:28 ast_load: ast_load is deprecated, use ast_config_load instead! == Parsing '/etc/asterisk/rpt.conf': Found == Registered translator 'lintogsm' from format slin to gsm, cost 3 __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
Hi, in the menu of voicemailmain, appear a lot of options, there is a way to leave only some of them? Also I want to know if there is a option that erase all message in a user box. Best REgards Ever Zalazar -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060515/1c66c642/attachment.htm
Hi!> in the menu of voicemailmain, appear a lot of options, there is a way to leave only some of them?A simple solution is to just edit/remove some of the voice prompts that announce the unwanted options, so the user will not be informed about their existence.> Also I want to know if there is a option that erase all message in a user box.You can create that yourself outside of the voicemail application with the appropriate voice prompt and e.g. a simple shell script. Cheers, Philipp
Hi! Is this possible to make asterisk follow the dial plan after executing VoicemailMain? Thanks, Michel
Didnt quite get ur question. But, if you mean, you want to, for e.g. play a file, dial out another number, sing a song, dance around, after execution of VoicemailMain, ........ yes, its very much possible. Just add your enhanced dialplan at the next priority of VoicemailMain. cheerz - Ben Michel Zenone wrote:>Hi! > >Is this possible to make asterisk follow the dial plan after executing >VoicemailMain? > >Thanks, > >Michel > >_______________________________________________ >--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 > > >
Michel Zenone wrote:> Hi! > > Is this possible to make asterisk follow the dial plan after executing > VoicemailMain?Happens by default, unless the caller hangs up of course. ; Give voicemail at extension 3509 exten => 3509,1,SetVar(LOOP=1) exten => 3509,2,Answer exten => 3509,3,Wait(.5) exten => 3509,4,GotoIf($[X${RDNIS} = X]?5:10) exten => 3509,5,VoicemailMain exten => 3509,6,Wait(.5) exten => 3509,7,GotoIf($[${LOOP} = 3]?11:8) exten => 3509,8,SetVar(LOOP=$[${LOOP} + 1]) exten => 3509,9,Goto(5) exten => 3509,10,VoiceMail(u${RDNIS}) exten => 3509,11,Hangup