View difference between Paste ID: hHJXvY4c and 7eM4Rgft
SHOW: | | - or go back to the newest paste.
1
## Dovecot configuration file
2
3
# If you're in a hurry, see http://wiki2.dovecot.org/QuickConfiguration
4
5
# "doveconf -n" command gives a clean output of the changed settings. Use it
6
# instead of copy&pasting files when posting to the Dovecot mailing list.
7
8
# '#' character and everything after it is treated as comments. Extra spaces
9
# and tabs are ignored. If you want to use either of these explicitly, put the
10
# value inside quotes, eg.: key = "# char and trailing whitespace  "
11
12
# Default values are shown for each setting, it's not required to uncomment
13
# those. These are exceptions to this though: No sections (e.g. namespace {})
14
# or plugin settings are added by default, they're listed only as examples.
15
# Paths are also just examples with the real defaults being based on configure
16
# options. The paths listed here are for configure --prefix=/usr
17
# --sysconfdir=/etc --localstatedir=/var
18
19
protocols = imap imaps pop3 pop3s
20
log_timestamp = '%Y-%m-%d %H:%M:%S'
21
mail_location = maildir:/home/vmail/%d/%n/Maildir
22
disable_plaintext_auth = no
23
ssl_cert_file = /etc/ssl/certs/dovecot.pem
24
ssl_key_file = /etc/ssl/private/dovecot.pemnamespace private {
25
separator = .
26
prefix = INBOX.
27
inbox = yes
28
}protocol lda {
29
log_path = /home/vmail/dovecot-deliver.log
30
auth_socket_path = /var/run/dovecot/auth-master
31-
postmaster_address = dev.ck.ua
31+
postmaster_address = ***.ck.ua
32
mail_plugins = sieve
33
# global_script_path = /home/vmail/globalsieverc
34
}protocol pop3 {
35
pop3_uidl_format = %08Xu%08Xv
36
}auth default {
37
mechanisms = plain login
38
user = root passdb sql {
39
args = /etc/dovecot/dovecot-sql.conf
40
} userdb static {
41
args = uid=5000 gid=5000 home=/home/vmail/%d/%n allow_all_users=yes
42
} socket listen {
43
master {
44
path = /var/run/dovecot/auth-master
45
mode = 0600
46
user = vmail
47
} client {
48
path = /var/spool/postfix/private/auth
49
mode = 0660
50
user = postfix
51
group = postfix
52
}
53
}
54
}