Should be fairly easy to do. You'll need to extend your table with the necessary fields that vpopmail uses. Assuming you're using MySQL, here is the default schema that vpopmail uses:
+-----------------+-----------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-----------------+-----------+------+-----+---------+-------+ | pw_name | char(32) | NO | PRI | NULL | | | pw_domain | char(64) | NO | PRI | NULL | | | pw_passwd | char(40) | YES | | NULL | | | pw_uid | int(11) | YES | | NULL | | | pw_gid | int(11) | YES | | NULL | | | pw_gecos | char(48) | YES | | NULL | | | pw_dir | char(160) | YES | | NULL | | | pw_shell | char(20) | YES | | NULL | | | pw_clear_passwd | char(16) | YES | | NULL | | +-----------------+-----------+------+-----+---------+-------+ pw_clear is the password in clear text, pw_passwd is the password md5 crypted, and the other fields should be pretty self explanatory. You'll need to modify vmysql.h to handle your new table structure. Hope this helps a bit. t. -----Original Message----- From: Luciano Bolonheis [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 28, 2006 1:27 PM To: [email protected] Subject: [vchkpw] Vpopmail with existing user table Hi, i'm installing qmail+vpopmail+etc. and I want to know if can I use an existing users table (the used to authenticate in my Intranet) with vpopmail... So, vpopmail should check user and password from this other table instead of a new one. Is it possible... Thanks. Luciano Bolonheis
