equal
deleted
inserted
replaced
4 |
4 |
5 # |
5 # |
6 # Database settings |
6 # Database settings |
7 # |
7 # |
8 [database] |
8 [database] |
|
9 ; The Python PostgreSQL database adapter module to be used (String) |
|
10 ; Supported modules are: |
|
11 ; * psycopg2 |
|
12 ; * pyPgSQL |
|
13 module = psycopg2 |
9 ; Hostname or IP address of the database server (String) |
14 ; Hostname or IP address of the database server (String) |
10 host = localhost |
15 host = localhost |
|
16 ; The TCP port, on which the database server is listening for connections (Int) |
|
17 port = 5432 |
|
18 ; SSL mode for the database connection (String) |
|
19 ; Possible values are: |
|
20 ; * disabled |
|
21 ; * allow |
|
22 ; * prefer (default) |
|
23 ; * require |
|
24 ; * verify-ca (PostgreSQL >= 8.4) |
|
25 ; * verify-full (PostgreSQL >= 8.4) |
|
26 sslmode = prefer |
11 ; Database user name (String) |
27 ; Database user name (String) |
12 user = dbuser |
28 user = dbuser |
13 ; Database password (String) |
29 ; Database password (String) |
14 pass = dbpassword |
30 pass = dbpassword |
15 ; Database name (String) |
31 ; Database name (String) |
93 # misc settings |
109 # misc settings |
94 # |
110 # |
95 [misc] |
111 [misc] |
96 ; The base directory for all domains/accounts (String) |
112 ; The base directory for all domains/accounts (String) |
97 base_directory = /srv/mail |
113 base_directory = /srv/mail |
98 ; Password scheme to use (see also: dovecotpw -l) (String) |
114 ; Number of encryption rounds for the password_scheme BLF-CRYPT (Int) |
99 password_scheme = CRAM-MD5 |
115 crypt_blowfish_rounds = 5 |
100 ; default transport for domains and accounts (String) |
116 ; Number of encryption rounds for the password_scheme SHA256-CRYPT (Int) |
101 transport = dovecot: |
117 crypt_sha256_rounds = 5000 |
|
118 ; Number of encryption rounds for the password_scheme SHA512-CRYPT (Int) |
|
119 crypt_sha512_rounds = 5000 |
102 ; the version number from `dovecot --version` (String) |
120 ; the version number from `dovecot --version` (String) |
103 ; e.g. 1.1.18; 1.2.11; 2.0.beta4 |
121 ; e.g. 1.1.18; 1.2.11; 2.0.beta4 |
104 dovecot_version = 1.2.11 |
122 dovecot_version = 1.2.11 |
|
123 ; Password scheme to use (see also: dovecotpw -l) (String) |
|
124 password_scheme = CRAM-MD5 |
|
125 ; Quota limit in bytes. 0 means unlimited (String) |
|
126 ; The value can have one of the suffixes: |
|
127 ; * b: bytes |
|
128 ; * k: kilobytes |
|
129 ; * M: megabytes |
|
130 ; * G: gigabytes |
|
131 ; 1024 is the same as 1024b or 1k |
|
132 quota_bytes = 0 |
|
133 ; Quota limit in number of messages. 0 means unlimited (Int) |
|
134 quota_messages = 0 |
|
135 ; default transport for domains and accounts (String) |
|
136 transport = dovecot: |
105 |
137 |