"SfR Fresh" - the SfR Freeware/Shareware Archive 
Member "dovecot-1.0.15/doc/wiki/AuthDatabase.VPopMail.txt" of archive dovecot-1.0.15.tar.gz:
As a special service "SfR Fresh" has tried to format the requested source page into HTML format using source code syntax highlighting with prefixed line numbers.
Alternatively you can here view or download the uninterpreted source code file.
That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
1
2
3 VPopMail
4 ========
5
6
7 This is an external software intended to make handling virtual domains easier. Supports Qmail and Postfix. See http://inter7.com/vpopmail.html
8 If the vpopmail database contains plaintext passwords, it can be used for non-plaintext authentication as well.
9 You can use auth_cache with VPopMail if you give 'cache_key' parameter. See >>PAM<< for more information about it.
10
11
12 vpopmail + mysql
13 ================
14
15
16 Alternatively, you can use the SQL backend with the following configuration:
17
18 *
19 ---%<-------------------------------------------------------------------------
20 driver = mysql
21 #
22 connect = host=/var/run/mysqld/mysqld.sock user=vpopmail password=YOURPASSWORDHERE dbname=vpopmail
23 #
24 default_pass_scheme = PLAIN
25 #
26 password_query = SELECT CONCAT(pw_name, '@', pw_domain) AS user, pw_clear_passwd AS password FROM vpopmail WHERE pw_name = '%n' AND pw_domain = '%d'
27 #
28 user_query = SELECT pw_dir as home, 64020 AS uid, 64020 AS gid FROM vpopmail WHERE pw_name = '%n' AND pw_domain = '%d' ---%<-------------------------------------------------------------------------
29
30 * .
31 Most vpopmail installations use 89 as the uid/gid, not 64020.
32 (This file was created from the wiki on 2007-12-11 04:42)