Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ## Dovecot configuration file
- # If you're in a hurry, see http://wiki2.dovecot.org/QuickConfiguration
- # "doveconf -n" command gives a clean output of the changed settings. Use it
- # instead of copy&pasting files when posting to the Dovecot mailing list.
- # '#' character and everything after it is treated as comments. Extra spaces
- # and tabs are ignored. If you want to use either of these explicitly, put the
- # value inside quotes, eg.: key = "# char and trailing whitespace "
- # Default values are shown for each setting, it's not required to uncomment
- # those. These are exceptions to this though: No sections (e.g. namespace {})
- # or plugin settings are added by default, they're listed only as examples.
- # Paths are also just examples with the real defaults being based on configure
- # options. The paths listed here are for configure --prefix=/usr
- # --sysconfdir=/etc --localstatedir=/var
- protocols = imap imaps pop3 pop3s
- log_timestamp = '%Y-%m-%d %H:%M:%S'
- mail_location = maildir:/home/vmail/%d/%n/Maildir
- disable_plaintext_auth = no
- ssl_cert_file = /etc/ssl/certs/dovecot.pem
- ssl_key_file = /etc/ssl/private/dovecot.pemnamespace private {
- separator = .
- prefix = INBOX.
- inbox = yes
- }protocol lda {
- log_path = /home/vmail/dovecot-deliver.log
- auth_socket_path = /var/run/dovecot/auth-master
- postmaster_address = ***.ck.ua
- mail_plugins = sieve
- # global_script_path = /home/vmail/globalsieverc
- }protocol pop3 {
- pop3_uidl_format = %08Xu%08Xv
- }auth default {
- mechanisms = plain login
- user = root passdb sql {
- args = /etc/dovecot/dovecot-sql.conf
- } userdb static {
- args = uid=5000 gid=5000 home=/home/vmail/%d/%n allow_all_users=yes
- } socket listen {
- master {
- path = /var/run/dovecot/auth-master
- mode = 0600
- user = vmail
- } client {
- path = /var/spool/postfix/private/auth
- mode = 0660
- user = postfix
- group = postfix
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment