[asterisk-users] Voicemail mailbox number passed in connection?

2007-03-21 Thread Lutgring, Sam
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


Re: [asterisk-users] Voicemail mailbox number passed in connection?

2007-03-21 Thread Jay Moore
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([EMAIL PROTECTED]|u)
exten = 202,4,HangUp()
exten = 202,5,VoicemailMain([EMAIL PROTECTED])

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

___
--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


Re: [asterisk-users] Voicemail mailbox number passed in connection?

2007-03-21 Thread Time Bandit

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([EMAIL PROTECTED])
exten = *97,n,Hangup()

then just configure your phone to point to *97 (or whatever you choose
as this extension)

hth
___
--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


Re: [asterisk-users] Voicemail mailbox number passed in connection?

2007-03-21 Thread Antony Stone
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.
___
--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