Hi Lee, You need to specify the VM context that you are using.. so using your examples.. extensions.conf entry.. exten => 1000,1,Dial(SIP/1000,20) exten => 1000,2,Voicemail2(u1000) exten => 1000,102,Voicemail2(b1000) exten => 1000,103,Hangup should be.. exten => 1000,1,Dial(SIP/1000,20) exten => 1000,2,Voicemail2(u1000@sip) exten => 1000,102,Voicemail2(b1000@sip) exten => 1000,103,Hangup and.. exten => 8500,1,Wait,1 exten => 8500,2,VoiceMailMain2(${CALLERIDNUM}) exten => 8500,3,Hangup should be.. exten => 8500,1,Wait,1 exten => 8500,2,VoiceMailMain2(${CALLERIDNUM}@sip) exten => 8500,3,Hangup sip.conf entry.. [1000] type=friend insecure=np username=1000 secret=secret nat=no host=dynamic canreinvite=no context=sip mailbox=1000 should be.. [1000] type=friend insecure=np username=1000 secret=secret nat=no host=dynamic canreinvite=no context=sip mailbox=1000@sip Hope that solves your problem.. :)> Hi > I don't know if this is a bug or a configuration issue. I have Cisco 7960 > phones off of my *. > Voicemail works fine, but I can't get the MWI light to work correctly. I > have the phones deposit the VM in a VM directory that is not the default one > (directory called "sip"). If I push VM files into the VM directory called > "default" the MWI light works fine. > > Is there a bug that the MWI part of the Voicemail app only looks in the > directory called "default", or is there a way to make MWI look in another VM > directory. > > thanks > > lee goodman > > > voicemail.conf > [general] > format=wav > maxmessage=180 > [sip] > 1000 => 1000,LG,xxxx@comcast.net > 1001 => 1001,TG,yyyyy@comcast.net > 1002 => 1002,BG,zzzzz@comcast.net > > extensions.conf > > [incoming] > exten => s,1,Background(goodmanmenu) > exten => s,2,DigitTimeout,5 > exten => s,3,responsetimeout,10 > exten => 1000,1,Goto(sip,1000,1) > exten => 1001,1,Goto(sip,1001,1) > exten => 1002,1,Goto(sip,1002,1) > exten => 8500,1,Goto(sip,8500,1) > [sip] > exten => _X.,1,Dial,Zap/1/${EXTEN} > exten => 8500,1,Wait,1 > exten => 8500,2,VoiceMailMain2(${CALLERIDNUM}) > exten => 8500,3,Hangup > exten => 1000,1,Dial(SIP/1000,20) > exten => 1000,2,Voicemail2(u1000) > exten => 1000,102,Voicemail2(b1000) > exten => 1000,103,Hangup > exten => 1001,1,Dial(SIP/1001,20) > exten => 1001,2,Voicemail2(u1001) > exten => 1001,102,Voicemail2(b1001) > exten => 1001,103,Hangup > exten => 1002,1,Dial(SIP/1002,20) > exten => 1002,2,Voicemail2(u1002) > exten => 1002,102,Voicemail2(b1002) > exten => 1002,103,Hangup > > sip.conf > > [1000] > type=friend > insecure=np > username=1000 > secret=secret > nat=no > host=dynamic > canreinvite=no > context=sip > mailbox=1000 > > > > [1001] > type=friend > insecure=no > username=1001 > secret=secret > nat=no > host=dynamic > canreinvite=no > context=sip > mailbox=1001 > > [1002] > type=friend > insecure=no > username=1002 > secret=secret > nat=no > host=dynamic > canreinvite=no > context=sip > mailbox=1002 > > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > lists.digium.com/mailman/listinfo/asterisk-users-- ______________________________________________ linuxmail.org Now with e-mail forwarding for only US$5.95/yr Powered by Outblaze
Ahhh Thanks, that's the final answer Lee ----- Original Message ----- From: "WipeOut ." <wipeout@linuxmail.org> To: <asterisk-users@lists.digium.com> Sent: Thursday, August 07, 2003 11:26 AM Subject: Re: [Asterisk-Users] MWI bug ?> Hi Lee, > > You need to specify the VM context that you are using.. > > so using your examples.. > > extensions.conf entry.. > > exten => 1000,1,Dial(SIP/1000,20) > exten => 1000,2,Voicemail2(u1000) > exten => 1000,102,Voicemail2(b1000) > exten => 1000,103,Hangup > > should be.. > > exten => 1000,1,Dial(SIP/1000,20) > exten => 1000,2,Voicemail2(u1000@sip) > exten => 1000,102,Voicemail2(b1000@sip) > exten => 1000,103,Hangup > > and.. > > exten => 8500,1,Wait,1 > exten => 8500,2,VoiceMailMain2(${CALLERIDNUM}) > exten => 8500,3,Hangup > > should be.. > > exten => 8500,1,Wait,1 > exten => 8500,2,VoiceMailMain2(${CALLERIDNUM}@sip) > exten => 8500,3,Hangup > > sip.conf entry.. > > [1000] > type=friend > insecure=np > username=1000 > secret=secret > nat=no > host=dynamic > canreinvite=no > context=sip > mailbox=1000 > > should be.. > > [1000] > type=friend > insecure=np > username=1000 > secret=secret > nat=no > host=dynamic > canreinvite=no > context=sip > mailbox=1000@sip > > Hope that solves your problem.. :) > > > > Hi > > I don't know if this is a bug or a configuration issue. I have Cisco7960> > phones off of my *. > > Voicemail works fine, but I can't get the MWI light to work correctly. I > > have the phones deposit the VM in a VM directory that is not the defaultone> > (directory called "sip"). If I push VM files into the VM directorycalled> > "default" the MWI light works fine. > > > > Is there a bug that the MWI part of the Voicemail app only looks in the > > directory called "default", or is there a way to make MWI look inanother VM> > directory. > > > > thanks > > > > lee goodman > > > > > > voicemail.conf > > [general] > > format=wav > > maxmessage=180 > > [sip] > > 1000 => 1000,LG,xxxx@comcast.net > > 1001 => 1001,TG,yyyyy@comcast.net > > 1002 => 1002,BG,zzzzz@comcast.net > > > > extensions.conf > > > > [incoming] > > exten => s,1,Background(goodmanmenu) > > exten => s,2,DigitTimeout,5 > > exten => s,3,responsetimeout,10 > > exten => 1000,1,Goto(sip,1000,1) > > exten => 1001,1,Goto(sip,1001,1) > > exten => 1002,1,Goto(sip,1002,1) > > exten => 8500,1,Goto(sip,8500,1) > > [sip] > > exten => _X.,1,Dial,Zap/1/${EXTEN} > > exten => 8500,1,Wait,1 > > exten => 8500,2,VoiceMailMain2(${CALLERIDNUM}) > > exten => 8500,3,Hangup > > exten => 1000,1,Dial(SIP/1000,20) > > exten => 1000,2,Voicemail2(u1000) > > exten => 1000,102,Voicemail2(b1000) > > exten => 1000,103,Hangup > > exten => 1001,1,Dial(SIP/1001,20) > > exten => 1001,2,Voicemail2(u1001) > > exten => 1001,102,Voicemail2(b1001) > > exten => 1001,103,Hangup > > exten => 1002,1,Dial(SIP/1002,20) > > exten => 1002,2,Voicemail2(u1002) > > exten => 1002,102,Voicemail2(b1002) > > exten => 1002,103,Hangup > > > > sip.conf > > > > [1000] > > type=friend > > insecure=np > > username=1000 > > secret=secret > > nat=no > > host=dynamic > > canreinvite=no > > context=sip > > mailbox=1000 > > > > > > > > [1001] > > type=friend > > insecure=no > > username=1001 > > secret=secret > > nat=no > > host=dynamic > > canreinvite=no > > context=sip > > mailbox=1001 > > > > [1002] > > type=friend > > insecure=no > > username=1002 > > secret=secret > > nat=no > > host=dynamic > > canreinvite=no > > context=sip > > mailbox=1002 > > > > > > _______________________________________________ > > Asterisk-Users mailing list > > Asterisk-Users@lists.digium.com > > lists.digium.com/mailman/listinfo/asterisk-users > > -- > ______________________________________________ > linuxmail.org > Now with e-mail forwarding for only US$5.95/yr > > Powered by Outblaze > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > lists.digium.com/mailman/listinfo/asterisk-users