I have the voicemail setup working in that I get the MWI and it emails the message correctly. When I pressed the MWI button on my SNOM 200, it dials into the voicemail system and prompts me for a mailbox and password. I know there is a way to automatically connect directly into the mailbox via the extension.conf file, but I can not find the documentation I am looking for in reference to variables and macros for the extensions file. Can someone please help me with this issue? Thanks, Brian
On Apr 5, 2004, at 1:57 PM, Brian Rathman wrote:> I have the voicemail setup working in that I get the MWI and it emails > the > message correctly. When I pressed the MWI button on my SNOM 200, it > dials > into the voicemail system and prompts me for a mailbox and password. I > know > there is a way to automatically connect directly into the mailbox via > the > extension.conf file, but I can not find the documentation I am looking > for > in reference to variables and macros for the extensions file. Can > someone > please help me with this issue?exten => ..., VoiceMailMain(s1234) will connect to box 1234 without prompting for a password or mailbox number. Scott
I use something like this: exten => 8500,1,Ringing exten => 8500,2,Wait,1 exten => 8500,3,VoicemailMain(s${CALLERIDNUM}) Basically, this rings the phone for once second (thus setting up the audio path), then goes to voicemail without requiring the password. Leave out the 's' to have VM prompt for the password. -brian> -----Original Message----- > From: asterisk-users-admin@lists.digium.com > [mailto:asterisk-users-admin@lists.digium.com] On Behalf Of > Brian Rathman > Sent: Monday, April 05, 2004 3:58 PM > To: asterisk-users@lists.digium.com > Subject: [Asterisk-Users] Auto connect to voicemail > > I have the voicemail setup working in that I get the MWI and > it emails the message correctly. When I pressed the MWI > button on my SNOM 200, it dials into the voicemail system and > prompts me for a mailbox and password. I know there is a way > to automatically connect directly into the mailbox via the > extension.conf file, but I can not find the documentation I > am looking for in reference to variables and macros for the > extensions file. Can someone please help me with this issue? > > Thanks, > Brian > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >
On Mon, 2004-04-05 at 15:57, Brian Rathman wrote:> I have the voicemail setup working in that I get the MWI and it emails the > message correctly. When I pressed the MWI button on my SNOM 200, it dials > into the voicemail system and prompts me for a mailbox and password. I know > there is a way to automatically connect directly into the mailbox via the > extension.conf file, but I can not find the documentation I am looking for > in reference to variables and macros for the extensions file. Can someone > please help me with this issue? > > Thanks, > BrianBrian, At the CLI, type 'show application VoiceMailMain'. You can use the CLI 'show applications' command to list all available apps. If you hit tab, it acts just like BASH's auto complete. Wonderful feature! Mitch Sharp Innovative Solutions -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20040405/556ec87d/attachment.htm
The snom dials into an account caled 'asterisk' Exten => asterisk,1,Answer,1 Exten => asterisk,2,Wait,1 Exten => asterisk,3,Voicemailmain(${CALLERIDNUM}) ----- Original Message Follows -----> I think this is what you are looking for > > Exten => 1000,1,Answer,1 > Exten => 1000,2,Wait,1 > Exten => 1000,3,Voicemailmain(${CALLERIDNUM}@default) > ----- Original Message ----- > From: Mitchell S. Sharp > To: asterisk-users@lists.digium.com > Sent: Monday, April 05, 2004 5:27 PM > Subject: Re: [Asterisk-Users] Auto connect to voicemail > > > On Mon, 2004-04-05 at 15:57, Brian Rathman wrote: > I have the voicemail setup working in that I get the MWI > and it emails the message correctly. When I pressed the > MWI button on my SNOM 200, it dials into the voicemail > system and prompts me for a mailbox and password. I know > there is a way to automatically connect directly into the > mailbox via the extension.conf file, but I can not find > the documentation I am looking for in reference to > variables and macros for the extensions file. Can someone > please help me with this issue? > > Thanks, > Brian > Brian, > > At the CLI, type 'show application VoiceMailMain'. You > can use the CLI 'show applications' command to list all > available apps. If you hit tab, it acts just like BASH's > auto complete. Wonderful feature! > > Mitch Sharp > Innovative SolutionsWilly Wouters ypOne Publishing
On Monday, April 05, 2004 5:53 PM, Mark Hagler [SMTP:pbx@hagler.org] wrote:> What do you do when $CALLERIDNUM of the caller isn't the 4-digit > extension? > I set all of my users Caller ID entries to their 10-digit phone # so > that > Caller ID appears correctly when I send their call out the PRI to the > public > network. The side effect of this is breaking convenient access to > voicemail using this method, and I haven't found a way to fix it yet. >I have not done it but there should be a way to remove the first 6 digits and only send the last 4. Try something like Exten => 8500,1,Voicemailmain(${CALLERIDNUM:6}) Don Pobanz