Ronald Wiplinger
2005-May-11 08:33 UTC
[Asterisk-Users] Realtime voicemail login incorrect
I have two ways to go to the voicemail box, either by dialing 8500 from the phone which received the voicemail (without a password) or from another phone by dialing 8501 and key in the mailbox and the password. However, with Realtime the password will be rejected as "login incorrect". What do I miss? exten => 8500,1,VoicemailMain(s${CALLERIDNUM}) exten => 8500,2,hangup exten => 8501,1,VoicemailMain exten => 8501,2,hangup uniqueid 1 customer_id 602 context other mailbox 602 password 7777 fullname Ronald Wiplinger email ronald.me@yahoo.com pager stamp 20050511232451 attach yes saycid yes hidefromdir no *CLI> show version Asterisk CVS-HEAD-04/17/05-07:25:45 built by root@vpbx on a x86_64 running Linux
Where is your debug trace? -Matthew Ronald Wiplinger wrote:> I have two ways to go to the voicemail box, either by dialing 8500 > from the phone which received the voicemail (without a password) or > from another phone by dialing 8501 and key in the mailbox and the > password. However, with Realtime the password will be rejected as > "login incorrect". What do I miss? > > > exten => 8500,1,VoicemailMain(s${CALLERIDNUM}) > exten => 8500,2,hangup > exten => 8501,1,VoicemailMain > exten => 8501,2,hangup > > > uniqueid 1 > customer_id 602 > context other > mailbox 602 > password 7777 > fullname Ronald Wiplinger > email ronald.me@yahoo.com > pager > stamp 20050511232451 > attach yes > saycid yes > hidefromdir no > > > *CLI> show version > Asterisk CVS-HEAD-04/17/05-07:25:45 built by root@vpbx on a x86_64 > running Linux > > > > _______________________________________________ > 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
Ronald Wiplinger
2005-May-12 01:49 UTC
[Asterisk-Users] Realtime voicemail login incorrect
Adam Goryachev wrote:>On Thu, 2005-05-12 at 07:35 +0800, Ronald Wiplinger wrote: > > >>>>>>I have two ways to go to the voicemail box, either by dialing 8500 >>>>>> >>>>>> >>>>>>from the phone which received the voicemail (without a password) or >>>>>>from another phone by dialing 8501 and key in the mailbox and the >>>>> >>>>> >>>>>>password. However, with Realtime the password will be rejected as >>>>>>"login incorrect". What do I miss? >>>>>> >>>>>> >>>>>>exten => 8500,1,VoicemailMain(s${CALLERIDNUM}) >>>>>>exten => 8500,2,hangup >>>>>>exten => 8501,1,VoicemailMain >>>>>>exten => 8501,2,hangup >>>>>> >>>>>> > >AFAIK, you *must* specify the context when using realtime, even if the >context is default. Change the above to: >exten => 8500,1,VoicemailMain(s${CALLERIDNUM}@default) >exten => 8500,2,hangup >exten => 8501,1,VoicemailMain(@default) >exten => 8501,2,hangup > >Or something like that I assume. > >Regards, >Adam > > > >Adam, it seems you are right, you need the context there, but than I cannot use it in Realtime anymore, since I have more than one context, ...... I would than need for each context an extra extension number. It makes no sense either, since one phone number should have anyway only ONE context, or could be there a case that one could have more than one context? bye Ronald