Resynchronize with upstream package maintainer version,

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
parent 237
76b4896bea63
child 239
d2e66a0e1aa8

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

dovecot/dovecot.conf file | annotate | diff | comparison | revisions
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dovecot/dovecot.conf	Thu Nov 05 18:05:07 2009 +0100
     1.3 @@ -0,0 +1,59 @@
     1.4 +##
     1.5 +##  dovecot.conf -- Dovecot server configuration
     1.6 +##
     1.7 +
     1.8 +protocols                  = imap
     1.9 +
    1.10 +protocol imap {
    1.11 +    listen                 = 127.0.0.1:143
    1.12 +    ssl_listen             = 127.0.0.1:993
    1.13 +}
    1.14 +
    1.15 +ssl                        = yes
    1.16 +ssl_cert_file              = @l_prefix@/etc/x509/example-server.crt.pem
    1.17 +ssl_key_file               = @l_prefix@/etc/x509/example-server.key.pem
    1.18 +
    1.19 +login_user                 = @l_musr@
    1.20 +login_processes_count      = 4
    1.21 +login_max_processes_count  = 128
    1.22 +login_max_connections      = 256
    1.23 +
    1.24 +mail_location              = mbox:~/.mail:INBOX=~/.mail/inbox
    1.25 +mail_uid                   = @l_rusr@
    1.26 +mail_gid                   = @l_rusr@
    1.27 +mail_privileged_group      = @l_rusr@
    1.28 +mbox_read_locks            = fcntl
    1.29 +mbox_write_locks           = fcntl
    1.30 +
    1.31 +auth_realms                = example.com
    1.32 +auth_default_realm         =
    1.33 +auth_verbose               = yes
    1.34 +disable_plaintext_auth     = no
    1.35 +
    1.36 +auth_debug                 = no
    1.37 +auth_debug_passwords       = no
    1.38 +mail_debug                 = no
    1.39 +verbose_ssl                = no
    1.40 +
    1.41 +protocol lda {
    1.42 +    postmaster_address     = postmaster
    1.43 +}
    1.44 +
    1.45 +auth default {
    1.46 +    mechanisms             = plain login
    1.47 +    passdb passwd {
    1.48 +    }
    1.49 +    userdb passwd {
    1.50 +    }
    1.51 +    socket listen {
    1.52 +        master {
    1.53 +            path           = @l_prefix@/var/dovecot/run/auth-master
    1.54 +            mode           = 0660
    1.55 +        }
    1.56 +        client {
    1.57 +            path           = @l_prefix@/var/dovecot/run/auth-client
    1.58 +            mode           = 0660
    1.59 +        }
    1.60 +    }
    1.61 +}
    1.62 +

mercurial