Ugh. I have voicemail set up for realtime... mysql> SELECT * FROM ast_vm_users; +----------+-------------+-----------+---------+----------+----------+-------+-------+---------------------+ | uniqueid | customer_id | context | mailbox | password | fullname | email | pager | stamp | +----------+-------------+-----------+---------+----------+----------+-------+-------+---------------------+ | 1 | 0 | voicemail | 3254104 | 1234 | | | | 2006-03-13 13:35:12 | | 2 | 0 | voicemail | 3254101 | 1234 | | | | 2006-03-13 13:42:46 | | 3 | 0 | voicemail | 3254102 | 1234 | | | | 2006-03-13 13:42:46 | | 4 | 0 | voicemail | 2944093 | 1234 | | | | 2006-03-13 13:42:46 | +----------+-------------+-----------+---------+----------+----------+-------+-------+---------------------+ I have extconfig set up for realtime voicemail: voicemail => mysql,vox180internal,ast_vm_users I enter the voicemail system through VoiceMailMain(). I enter my password. I then enter option 3 for advanced options, and then option 5 to leave a message (I'm assuming this lets me leave a message for another mailbox). Asterisk asks me for the mailbox number. I enter 3254104. The following appears on the console: Mar 19 11:34:33 WARNING[30855]: app_voicemail.c:2411 leave_voicemail: No entry in voicemail config file for '3254104' I run ngrep on the database and watch the queries. Asterisk sends this... SELECT * FROM ast_vm_users WHERE mailbox = '3254104' AND context = 'voicemail' So.... what's it's problem? Doug.