Hi, i've perhaps find a little bug in vqadmin. When i'm creating a redirection in qmailadmin, this redirection is in valias MySQL's table. That's OK. But, in vqadmin, when i'm listing all users in a domain, the redirection is not here :(
##### # MySQL table creation mysql -u$DATABASE_USER_ROOT -p$DATABASE_PASS_ROOT -e "USE $DATABASE_VP; CREATE TABLE domain_owner (domain CHAR(64) NOT NULL, owner CHAR(32) NOT NULL, PRIMARY KEY(domain, owner));" # Multiple Substitute in db_owner.c cp -a db_owner.c db_owner.c.old cat db_owner.c.old | sed "s/localhost/$DATABASE_HOST/g" | sed "s/my_user/$DATABASE_USER_VP/g" | sed "s/my_password/$DATABASE_PASS_VP/g" | sed "s/my_database/$DATABASE_VP/g" > db_owner.c # Patch #http://sourceforge.net/tracker/index.php?func=detail&aid=859073&group_id=89912&atid=591855 #================ patch -p0 < http://sourceforge.net/tracker/download.php?group_id=89912&atid=591855&file_id=70464&aid=859073 ./configure \ --enable-vpopuser=vpopmail\ --enable-vpopgroup=vchkpw \ --enable-cgibindir=/usr/lib/cgi-bin \ --enable-qmaildir=/var/qmail \ --enable-mysql=y make make install-strip ### Regards Franck -- http://www.linuxpourtous.com
