Lutgring, Sam
2007-Mar-21 12:54 UTC
[asterisk-users] Voicemail mailbox number passed in connection?
Does anyone know how to configure a SIP phone to pass the mailbox number to the voicemail service when dialing? I would like to press the message waiting lamp and be prompted for my password instead of "mailbox number". Can this be passed in the set-up call or based on caller-id? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20070321/e31ba6f7/attachment.htm
Jay Moore
2007-Mar-21 14:29 UTC
[asterisk-users] Voicemail mailbox number passed in connection?
I do it by calling my own extension. If it's me calling me, it passes me direct to VoicemailMain. If it's someone else calling me, it rings my phone as normal: exten => 202,1,GotoIf($["${CALLERIDNUM}" = "202"] ? 5 : 2) exten => 202,2,Dial(SIP/jay,10,tT) exten => 202,3,VoiceMail(202@voicemail|u) exten => 202,4,HangUp() exten => 202,5,VoicemailMain(202@voicemail) HTH, Jay Lutgring, Sam wrote:> Does anyone know how to configure a SIP phone to pass the mailbox number > to the voicemail service when dialing? I would like to press the > message waiting lamp and be prompted for my password instead of "mailbox > number". Can this be passed in the set-up call or based on caller-id? > > Thanks > > > > ------------------------------------------------------------------------ > > _______________________________________________ > --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
Time Bandit
2007-Mar-21 14:39 UTC
[asterisk-users] Voicemail mailbox number passed in connection?
> Does anyone know how to configure a SIP phone to pass the mailbox number to > the voicemail service when dialing? I would like to press the message > waiting lamp and be prompted for my password instead of "mailbox number". > Can this be passed in the set-up call or based on caller-id?based on callerID with something like this : exten => *97,1,Answer exten => *97,n,Wait(1) exten => *97,n,VoicemailMain(${CALLERIDNUM}@default) exten => *97,n,Hangup() then just configure your phone to point to *97 (or whatever you choose as this extension) hth
Antony Stone
2007-Mar-21 14:49 UTC
[asterisk-users] Voicemail mailbox number passed in connection?
On Wednesday 21 March 2007 19:54, Lutgring, Sam wrote:> Does anyone know how to configure a SIP phone to pass the mailbox number > to the voicemail service when dialing? I would like to press the > message waiting lamp and be prompted for my password instead of "mailbox > number". Can this be passed in the set-up call or based on caller-id?Caller ID is a simple way to do it. Make the mailbox number the same as your phone number, then select the mailbox based on Caller ID. It's in some ways more secure, too - it means only you (or at least, only your phone) can log in to your mailbox, instead of someone else trying from their phone by knowing your mailbox number and guessing your password. Antony. -- There are only 10 types of people in the world: those who understand binary notation, and those who don't. Please reply to the list; please don't CC me.