[Home]

Summary:ASTERISK-03053: voicemail accounts with realtime mysql
Reporter:mack_jpn (mack_jpn)Labels:
Date Opened:2004-12-20 10:27:22.000-0600Date Closed:2011-06-07 14:05:04
Priority:MajorRegression?No
Status:Closed/CompleteComponents:Applications/app_voicemail
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:http://voip-info.org/tiki-index.php?page=Asterisk%20RealTime%20Voicemail

`mailbox` int(5) NOT NULL default '0',
`password` int(4) NOT NULL default '0',

That isn't good for those parameter with 0-paddings case
like mailbox number '01234' and password '01234'.

I found a app_voicemail.c is accepct up to 80 chars.
because I think

`mailbox` varchar(80) NOT NULL default '0',
`password` varchar(80) NOT NULL default '0',

is ok. but it seems not in function with runned voicemail app with long charactors.

Surely I get this message.
 == Binding voicemail to mysql/asterisk/voicemail_table
because configuration is maybe ok.

How can I fix that problem?
Do I need to fix more code at another place?

I wish to use the mailbox number '8891234567'.
Comments:By: Brian West (bkw918) 2004-12-20 10:42:11.000-0600

This is not a bug.  You can form your table how ever you wish...

bkw