Renato Mintz
2004-Sep-28 15:39 UTC
[Asterisk-Users] Retrieve voice mail message from outside
Hi, is there a way to retrieve a VM message pressing some key during the greeting playback? Our scenario is a PBX with analog trunks and no DID. There's a general mailbox and no way to assign a number to voicemail. I've seen these question before in this list, but seen no answer to it... Thanks, Renato
Gonzalo Servat
2004-Sep-28 15:50 UTC
[Asterisk-Users] Retrieve voice mail message from outside
On Tue, 2004-09-28 at 19:39 -0300, Renato Mintz wrote:> Hi, > > is there a way to retrieve a VM message pressing some key during the > greeting playback?[..snip..] Sure, just add an "exten" to the corresponding inbound context which sends the user into VoicemailMain. eg: exten => a,1,VoicemailMain(${ARG1}) .. sends the user to the Voicemail system if they press *. HTH, Gonzalo
Curt Moore
2004-Sep-28 15:50 UTC
[Asterisk-Users] Retrieve voice mail message from outside
Something like this in your inbound context may help... This will transfer to VM on press of the * key exten => a,1,VoiceMailMain(@context) Hope this helps... -Curt On Tue, 28 Sep 2004 19:39:04 -0300, Renato Mintz <renatomintz@gmail.com> wrote:> Hi, > > is there a way to retrieve a VM message pressing some key during the > greeting playback? > > Our scenario is a PBX with analog trunks and no DID. There's a general > mailbox and no way to assign a number to voicemail. > > I've seen these question before in this list, but seen no answer to it... > > Thanks, > > Renato > _______________________________________________ > 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 >
Renato Mintz
2004-Sep-28 16:03 UTC
[Asterisk-Users] Retrieve voice mail message from outside
Tks a lot guys! On Tue, 28 Sep 2004 19:50:32 -0300, Gonzalo Servat <gs@webtastic.com.au> wrote:> On Tue, 2004-09-28 at 19:39 -0300, Renato Mintz wrote: > > Hi, > > > > is there a way to retrieve a VM message pressing some key during the > > greeting playback? > [..snip..] > > Sure, just add an "exten" to the corresponding inbound context which > sends the user into VoicemailMain. eg: > > exten => a,1,VoicemailMain(${ARG1}) > > .. sends the user to the Voicemail system if they press *. > > HTH, > Gonzalo > > > > _______________________________________________ > 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 >