dovecot/dovecot.conf

changeset 238
642966b63c34
child 239
d2e66a0e1aa8
equal deleted inserted replaced
-1:000000000000 0:7c51efd2ff59
1 ##
2 ## dovecot.conf -- Dovecot server configuration
3 ##
4
5 protocols = imap
6
7 protocol imap {
8 listen = 127.0.0.1:143
9 ssl_listen = 127.0.0.1:993
10 }
11
12 ssl = yes
13 ssl_cert_file = @l_prefix@/etc/x509/example-server.crt.pem
14 ssl_key_file = @l_prefix@/etc/x509/example-server.key.pem
15
16 login_user = @l_musr@
17 login_processes_count = 4
18 login_max_processes_count = 128
19 login_max_connections = 256
20
21 mail_location = mbox:~/.mail:INBOX=~/.mail/inbox
22 mail_uid = @l_rusr@
23 mail_gid = @l_rusr@
24 mail_privileged_group = @l_rusr@
25 mbox_read_locks = fcntl
26 mbox_write_locks = fcntl
27
28 auth_realms = example.com
29 auth_default_realm =
30 auth_verbose = yes
31 disable_plaintext_auth = no
32
33 auth_debug = no
34 auth_debug_passwords = no
35 mail_debug = no
36 verbose_ssl = no
37
38 protocol lda {
39 postmaster_address = postmaster
40 }
41
42 auth default {
43 mechanisms = plain login
44 passdb passwd {
45 }
46 userdb passwd {
47 }
48 socket listen {
49 master {
50 path = @l_prefix@/var/dovecot/run/auth-master
51 mode = 0660
52 }
53 client {
54 path = @l_prefix@/var/dovecot/run/auth-client
55 mode = 0660
56 }
57 }
58 }
59

mercurial