Late breaking memory:
./vadddomain www9.landings.com air-lock-11
could not create limits table CREATE TABLE limits ( domain CHAR(64) PRIMARY KEY,
maxpopaccounts INT(10) NOT NULL DEFAULT -1, maxaliases
INT(10) NOT NULL DEFAULT -1, maxforwards INT(10) NOT NULL DEFAULT
-1, maxautoresponders INT(10) NOT NULL DEFAULT -1, maxmailinglists
INT(10) NOT NULL DEFAULT -1, diskquota INT(12) NOT NULL
DEFAULT 0, maxmsgcount INT(12) NOT NULL DEFAULT 0,
defaultquota INT(12) NOT NULL DEFAULT 0, defaultmaxmsgcount
INT(12) NOT NULL DEFAULT 0, disable_pop TINYINT(1) NOT NULL DEFAULT
0, disable_imap TINYINT(1) NOT NULL DEFAULT 0, disable_dialup
TINYINT(1) NOT NULL DEFAULT 0, disable_passwordchanging TINYINT(1) NOT
NULL DEFAULT 0, disable_webmail TINYINT(1) NOT NULL DEFAULT 0,
disable_relay TINYINT(1) NOT NULL DEFAULT 0, disable_smtp
TINYINT(1) NOT NULL DEFAULT 0, perm_account TINYINT(2) NOT NULL
DEFAULT 0, perm_alias TINYINT(2) NOT NULL DEFAULT 0,
perm_forward TINYINT(2) NOT NULL DEFAULT 0, perm_autoresponder
TINYINT(2) NOT NULL DEFAULT 0, perm_maillist TINYINT(4) NOT NULL
DEFAULT 0, perm_quota TINYINT(2) NOT NULL DEFAULT 0,
perm_defaultquota TINYINT(2) NOT NULL DEFAULT 0 )
vmysql: sql error[p]: Table 'vpopmail.limits' doesn't exist
Error: (vadduser) can't read domain limits
seems that changing NOT NULL DEFAULT -1 to NOT NULL DEFAULT '-1' allows this one
through, but it does not solve the problem.
Yonatan