[asterisk-users] Checking messages from outside the network

2013-09-11 Thread Nick Cameo
Hello Everyone, I am using the following dialplan to allow users to check their messages from PSTN world: ; Internal Routing exten = _1XX,1,Dial(SIP/${EXTEN}, 10) exten = _1XX,n,Wait(1) exten = _1XX,n,Answer exten = _1XX,n,Wait(1) exten = _1XX,n,Voicemail(${EXTEN},us) exten = _1XX,n,Hangup The

Re: [asterisk-users] Checking messages from outside the network

2013-09-11 Thread jg
Have you considered using VoiceMailMain()? jg -- _ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- New to Asterisk? Join us for a live introductory webinar every Thurs:

Re: [asterisk-users] Checking messages from outside the network

2013-09-11 Thread Nick Cameo
Guys, Sorry, I pasted the wrong dialplan. What we are using is the following: exten = 6474770990,1,Answer exten = 6474770990,n,Wait(1) exten = 6474770990,n,Voicemail(1001,us) exten = 6474770990,n,VoicemailMain(1001) exten = 6474770990,n,Hangup So, we are using VoicemailMain, but wile trying to

Re: [asterisk-users] Checking messages from outside the network

2013-09-11 Thread Carlos Rojas
Are talking about of prepend message? Because for listening the messages, you can use VoiceMailMain Carlos Rojas On Wed, Sep 11, 2013 at 11:37 AM, jg webaccou...@jgoettgens.de wrote: Have you considered using VoiceMailMain()? jg --

Re: [asterisk-users] Checking messages from outside the network

2013-09-11 Thread Nick Cameo
Thanks guys, it worked perfectly. No inadvertent message added when attempting to check messages from outside: exten = 1001,1,Answer exten = 1001,n,Wait(1) exten = 1001,n,Voicemail(1001,us) exten = a,1,VoicemailMain(1001) exten = 1001,n,Hangup Press * without pound, and voice mail main fires.

Re: [asterisk-users] Checking messages from outside the network

2013-09-11 Thread John Kiniston
You could add an 'a' extension to the context you are receiving calls in and remove the call to VoiceMailMain after your call to Voicemail. exten = a,1,VoiceMailMain(1001) The VoiceMail app listens for users to press '*' and directs callers to the 'a' extension in the same context if pressed.