I am also having this problem on a new server install.
I have tried creating a user with admin rights and the same thing happens,
no options on the menu.
I am getting the following message on my Apache logs: vnysql: can't find limits for domain 'test.com' vnysql: can't find limits for domain 'test.com' vnysql: can't find limits for domain 'test.com'
Maybe the problem is in vpopmail??
I think so. If ENABLE_MYSQL_LIMITS is defined, vpopmail tries to read the limits from a MySQL table called "limits" instead of using .qmailadmin-limits files. If it fails to read any limits from that table, it doesn't set any defaults.
Try disabling ENABLE_MYSQL_LIMITS by editing config.h and recompiling vpopmail and qmailadmin. This is something that Brian Kolaci should probably look into further.
Adding the following code to initialize the limits structure (from vlimits.c) to the very beginning of vget_limits in vmysql.c might solve the problem as well:
/* initialize structure */
memset(limits, 0, sizeof(*limits));
limits->maxpopaccounts = -1;
limits->maxaliases = -1;
limits->maxforwards = -1;
limits->maxautoresponders = -1;
limits->maxmailinglists = -1;-- Tom Collins [EMAIL PROTECTED]
