dovecot/dovecot.conf

Thu, 05 Nov 2009 18:05:07 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 05 Nov 2009 18:05:07 +0100
changeset 238
642966b63c34
child 239
d2e66a0e1aa8
permissions
-rw-r--r--

Resynchronize with upstream package maintainer version,
including new configuration file (replacing many lines of patch code.)

     1 ##
     2 ##  dovecot.conf -- Dovecot server configuration
     3 ##
     5 protocols                  = imap
     7 protocol imap {
     8     listen                 = 127.0.0.1:143
     9     ssl_listen             = 127.0.0.1:993
    10 }
    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
    16 login_user                 = @l_musr@
    17 login_processes_count      = 4
    18 login_max_processes_count  = 128
    19 login_max_connections      = 256
    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
    28 auth_realms                = example.com
    29 auth_default_realm         =
    30 auth_verbose               = yes
    31 disable_plaintext_auth     = no
    33 auth_debug                 = no
    34 auth_debug_passwords       = no
    35 mail_debug                 = no
    36 verbose_ssl                = no
    38 protocol lda {
    39     postmaster_address     = postmaster
    40 }
    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 }

mercurial