Yealink Forums
voice mail password prompt cut off on T32G (Solved) - Printable Version

+- Yealink Forums (http://forum.yealink.com/forum)
+-- Forum: IP Phone Series (/forumdisplay.php?fid=4)
+--- Forum: Phone specific topic (/forumdisplay.php?fid=12)
+---- Forum: T3xP Series (/forumdisplay.php?fid=22)
+---- Thread: voice mail password prompt cut off on T32G (Solved) (/showthread.php?tid=777)



voice mail password prompt cut off on T32G (Solved) - uhifa - 09-18-2013 11:04 AM

Hi,

I'm testing a T32G as potential replacement for the aging cisco 7940. One thing I notice is the voice prompt for password when one press the Message button to check voice mail, the word "password" is cut off to only "ord". I should mention the SIP backend is Asterisk running off a rack mount server. Thanks for any suggestions to correct this.


RE: voice mail password prompt cut off on T32G - Yealink Support - 09-18-2013 03:29 PM

Hi Uhifa,
Sorry i am not very understand your meaning.
When you press Message button, if you didn't fill voicemail feature code, it will ask you to fill the feature code, the LCD display
Account1 NO:
Account2 NO:
Account3 NO:
If you already fill the voicemail feature code, it will dial out the feature code directly, and then ask you to enter the personal idenification number(audio prompt), but there's no "password" word displayed on the LCD.
So could you provide us a picture to show this? And is it possible to provide us your test accounts so we can check at our side?
BTW, what's the firmware on your T32G?
Thanks.


RE: voice mail password prompt cut off on T32G - uhifa - 09-19-2013 05:22 AM

(09-18-2013 03:29 PM)Yealink Support Wrote:  Hi Uhifa,
Sorry i am not very understand your meaning.
When you press Message button, if you didn't fill voicemail feature code, it will ask you to fill the feature code, the LCD display
Account1 NO:
Account2 NO:
Account3 NO:
If you already fill the voicemail feature code, it will dial out the feature code directly, and then ask you to enter the personal idenification number(audio prompt), but there's no "password" word displayed on the LCD.
So could you provide us a picture to show this? And is it possible to provide us your test accounts so we can check at our side?
BTW, what's the firmware on your T32G?
Thanks.
Thanks for the reply. The voice mail extension is already configured thru auto provision. So when I press the "Message" button, it automatically dialsl the voice mail extension. It's the audio prompt: "Password" that got cut off badly. Knowing what it was, I enter the password (which shows up on the LCD as I type), and everything else works fine from there.

My firmware version: 32.70.23.9, hardware version: 22.2.2.32.0.0.0. Not sure about the test account. Is that just a phone number on our system? In that case you can use the number on this phone: eight-zero-eight-nine-three-two-two-three-four-two.


RE: voice mail password prompt cut off on T32G - Yealink Support - 09-23-2013 04:52 PM

Hi Uhifa,
Thanks for your explaination.
Did you try this on other brand phones? And do they also have this problem?
About the test account, i mean we want to reproduce this issue at our side, so we need your system extenstion(register name, password, server IP), your voicemail extension, so we can reproduce the issue that you mentioned.
Because here we don't have such issue with our system.
Thanks.


RE: voice mail password prompt cut off on T32G - mkeuter - 09-24-2013 06:09 PM

Hi uhifa,

in Asterisk you can can add a small delay before the voicemail answers like this:

Code:
exten => 100,1,Answer()
exten => 100,n,Wait(0.5)
exten => 100,n,VoiceMailMain(${CALLERID(num)}@default)

You can play with the wait time (sec).


RE: voice mail password prompt cut off on T32G (solved) - uhifa - 09-25-2013 05:39 AM

(09-24-2013 06:09 PM)mkeuter Wrote:  Hi uhifa,

in Asterisk you can can add a small delay before the voicemail answers like this:

Code:
exten => 100,1,Answer()
exten => 100,n,Wait(0.5)
exten => 100,n,VoiceMailMain(${CALLERID(num)}@default)

You can play with the wait time (sec).

Thanks very much mkeuter! A 0.5 second delay in Asterisk config on the voicemail extension did it nicely. Intersting how different phones work differently in small ways with Asterisk.