Hello guys Is there anyway for me to change the sounds that are presented in VoicemailMain? For instance, instead of it saying "mailbox", I would like it to say something like "please enter your mailbox number now". Is there a way for me to do this? I also noticed that when in some of the menus, even if I select one of the announced options it simply repeats the same menu over again. Would this be a VoicemailMain problem or could it be a problem since the call is being passed over IAX? Again, thanks in advance guys. AJ
On Sunday 15 June 2003 20:20, firedude@shorelinuxsolutions.com wrote:> Hello guys > Is there anyway for me to change the sounds that are presented in > VoicemailMain? For instance, instead of it saying "mailbox", I would > like it to say something like "please enter your mailbox number now". > Is there a way for me to do this?All of the sounds are in the /var/lib/asterisk/sounds directory. You're certainly welcome to re-record them as you see fit. Note, however, that every time you do a 'make install', the sounds will be overwritten. I recommend that you store your sounds elsewhere and symlink them into place. I have the following patch for my Makefile to do this: Index: Makefile ==================================================================RCS file: /usr/cvsroot/asterisk/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 13 May 2003 20:37:08 -0000 1.14 +++ Makefile 16 Jun 2003 03:14:55 -0000 @@ -202,6 +202,9 @@ exit 1; \ fi; \ done + for x in /var/lib/asterisk/sounds/tilghman/*.*; do \ + ln -sf $$x $(ASTVARLIBDIR)/sounds ; \ + done mkdir -p $(ASTVARLIBDIR)/mohmp3 mkdir -p $(ASTVARLIBDIR)/images for x in images/*.jpg; do \> I also noticed that when in some of the menus, even if I select one > of the announced options it simply repeats the same menu over again. > Would this be a VoicemailMain problem or could it be a problem since > the call is being passed over IAX? Again, thanks in advance guys.This would probably be functionality which hasn't yet been added. -Tilghman
Hello, How can I see CallerID of incoming call with i4l and print the ID to the console? In this scenario all CallerIDs are not set (or unknown) and from each phonenumber comes only one call "in a lifetime". Thanks, Johanna.
You have to modify the sourcer code yourself. ----- Original Message ----- From: <firedude@shorelinuxsolutions.com> To: <asterisk-users@lists.digium.com> Sent: Sunday, June 15, 2003 6:20 PM Subject: [Asterisk-Users] VoicemailMain> Hello guys > Is there anyway for me to change the sounds that are presented in > VoicemailMain? For instance, instead of it saying "mailbox", I would like > it to say something like "please enter your mailbox number now". Is there > a way for me to do this? > > I also noticed that when in some of the menus, even if I select one of the > announced options it simply repeats the same menu over again. Would this > be a VoicemailMain problem or could it be a problem since the call is > being passed over IAX? Again, thanks in advance guys. > AJ > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users >
Howdy, I have a Debian box using Debian's Asterisk package. People can leave voicemail for the extensions that are setup in the configuration, and asterisk e-mail's the user a .wav file (voicemail.conf). This works perfect. However, I want to have VoicemailMain sit on an extension so people can call in, change their greeting, listen too voicemail, etc. extensions.conf: ------------------------ exten => 2999,1,Answer exten => 2999,2,Wait,2 exten => 2999,3,Voicemailmain() My understand is, that this should allow any user to call up. Enter in their mailbox number (currently the same as their extension) and password. However, I cannot dial this extension after reloading asterisk. I'm thinking I should add something in another configuration file, or perhaps my syntax is wrong. Any help would be much apperciated! Thanks in advance. Regards, Jason
Not sure about that Doug. It should read: exten => a,1,VoicemailMan(${ARG1}@YourContextHere) If you put it in the brackets, it becomes part of the variable name instead of part of the argument. On Thu, 2006-08-24 at 16:57 -0400, Doug Lytle wrote:> existx wrote: > > Cristian, > > > > The only other line in extensions.conf that references VoicemailMain > > is this: > > > > exten => a,1,VoicemailMain(${ARG1}) > > This should read: > > exten => a,1,VoicemailMain(${ARG1@YourContextHere}) > > > Doug >-- Aaron Daniel Computer Systems Technician Sam Houston State University amdtech@shsu.edu (936) 294-4198
Howdy guys, Thanks for your help, it works fine without editing the default line of: exten => a,1,VoicemailMain(${ARG1}) The issue was that I had specified VoicemailMain by the default line, which was way above the rest of my extensions (out of context). Hopefully this will help someone in the future. Regards, Jason On 8/24/06, Aaron Daniel <amdtech@shsu.edu> wrote:> Not sure about that Doug. It should read: > > exten => a,1,VoicemailMan(${ARG1}@YourContextHere) > > If you put it in the brackets, it becomes part of the variable name > instead of part of the argument. > > On Thu, 2006-08-24 at 16:57 -0400, Doug Lytle wrote: > > existx wrote: > > > Cristian, > > > > > > The only other line in extensions.conf that references VoicemailMain > > > is this: > > > > > > exten => a,1,VoicemailMain(${ARG1}) > > > > This should read: > > > > exten => a,1,VoicemailMain(${ARG1@YourContextHere}) > > > > > > Doug > > > -- > Aaron Daniel > Computer Systems Technician > Sam Houston State University > amdtech@shsu.edu > (936) 294-4198 > > _______________________________________________ > --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 >
Aaron Daniel wrote:> Not sure about that Doug. It should read: > > exten => a,1,VoicemailMan(${ARG1}@YourContextHere) >You are correct. Doug -- Ben Franklin quote: "Those who would give up Essential Liberty to purchase a little Temporary Safety, deserve neither Liberty nor Safety."