Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # 2.0.9: dovecot.conf
- # OS: Linux 2.6.37-gen1 i686 Gentoo Base System release 2.0.1-r1 ext4
- auth_debug = no
- auth_debug_passwords = no
- auth_mechanisms = plain login cram-md5 digest-md5
- auth_verbose = no
- verbose_ssl = no
- base_dir = /var/run/dovecot/
- first_valid_uid = 1
- info_log_path = /var/log/dovecot/dovecot.log
- last_valid_uid = 5000
- listen = *
- log_path = /var/log/dovecot/dovecot-mail.log
- login_log_format_elements = pl
- mail_debug = yes
- mail_location = maildir:/home/domains/%d/%n/.maildir
- mail_privileged_group = vpopmail
- passdb {
- args = /etc/dovecot/dovecot-sqlx.conf
- driver = sql
- }
- plugin {
- quota_warning = storage=95%% /usr/local/bin/quota-warning.sh 95
- quota_warning2 = storage=80%% /usr/local/bin/quota-warning.sh 80
- sieve = ~/.dovecot.sieve
- sieve_dir = ~/sieve
- }
- protocols = imap sieve pop3
- service auth {
- unix_listener auth-master {
- mode = 0666
- user = vpopmail # User running dovecot-lda
- group = vpopmail
- }
- unix_listener auth-userdb {
- mode = 0666
- user = vpopmail # User running dovecot-lda
- group = vpopmail
- }
- }
- service imap-login {
- chroot = login
- client_limit = 32
- process_limit = 16
- process_min_avail = 2
- service_count = 1
- }
- service managesieve-login {
- chroot = login
- client_limit = 32
- process_limit = 16
- process_min_avail = 2
- service_count = 1
- }
- service pop3-login {
- chroot = login
- client_limit = 32
- process_limit = 16
- inet_listener pop3 {
- }
- process_limit = 128
- process_min_avail = 2
- service_count = 1
- }
- ssl_cert = </etc/ssl/dovecot/server.pem
- ssl_key = </etc/ssl/dovecot/server.key
- userdb {
- args = /etc/dovecot/dovecot-sqlx.conf
- driver = sql
- }
- protocol imap {
- imap_max_line_length = 16k
- mail_plugins = $mail_plugins
- imap_logout_format = bytes=%i/%o
- imap_idle_notify_interval = 10 mins
- imap_id_log = imapd
- }
- protocol pop3 {
- pop3_uidl_format = %08Xu%08Xv
- pop3_logout_format = top=%t/%p, retr=%r/%b, del=%d/%m, size=%s
- mail_plugins = $mail_plugins
- }
- protocol sieve {
- managesieve_max_line_length = 65536
- mail_max_userip_connections = 10
- managesieve_logout_format = bytes=%i/%o
- }
- protocol lda {
- postmaster_address = postmaster@localhost
- quota_full_tempfail = yes
- sendmail_path = /usr/sbin/sendmail
- rejection_subject = Rejected: %s
- rejection_reason = Your message to <%t> was automatically rejected:%n%r
- lda_original_recipient_header =
- mail_plugins = sieve
- mail_plugins = quota
- auth_socket_path = /var/run/dovecot/auth-userdb
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement