1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-01-28 03:56:43 +02:00
Mailu/dovecot/conf/dovecot.conf

144 lines
2.1 KiB
Plaintext
Raw Normal View History

2016-02-17 22:56:40 +01:00
###############
# General
###############
log_path = /dev/stderr
2016-02-17 22:56:40 +01:00
protocols = imap lmtp sieve
postmaster_address = %{env:POSTMASTER_ADDRESS}
hostname = %{env:MAIL_HOSTNAME}
2016-02-21 15:39:01 +01:00
mail_plugins = $mail_plugins quota
2016-02-17 22:56:40 +01:00
service dict {
unix_listener dict {
group = mail
mode = 0660
}
}
2016-02-17 22:56:40 +01:00
###############
# Mailboxes
###############
first_valid_gid = 8
first_valid_uid = 8
mail_location = maildir:/mail/%u
mail_home = /mail/%u
2016-02-17 22:56:40 +01:00
mail_uid = mail
mail_gid = mail
mail_privileged_group = mail
mail_access_groups = mail
2016-02-21 15:07:12 +01:00
namespace inbox {
inbox = yes
mailbox Trash {
auto = subscribe
special_use = \Trash
}
mailbox Drafts {
auto = subscribe
special_use = \Drafts
}
mailbox Sent {
auto = subscribe
special_use = \Sent
}
mailbox Junk {
auto = subscribe
special_use = \Junk
}
}
2016-02-17 22:56:40 +01:00
###############
# TLS
###############
ssl = yes
ssl_cert = </certs/cert.pem
ssl_key = </certs/key.pem
2016-02-17 22:56:40 +01:00
###############
# Authentication
###############
auth_mechanisms = plain login
2016-02-17 22:56:40 +01:00
passdb {
driver = sql
args = /etc/dovecot/dovecot-sql.conf.ext
}
userdb {
driver = sql
args = /etc/dovecot/dovecot-sql.conf.ext
}
service auth {
user = dovecot
unix_listener auth-userdb {
}
inet_listener {
port = 2102
2016-02-17 22:56:40 +01:00
}
}
service auth-worker {
unix_listener auth-worker {
user = mail
group = $default_internal_user
mode = 0660
}
user = mail
}
###############
# IMAP
###############
protocol imap {
2016-02-21 15:39:01 +01:00
mail_plugins = $mail_plugins imap_quota
2016-02-17 22:56:40 +01:00
}
service imap-login {
inet_listener imap {
port = 143
}
inet_listener imaps {
port = 993
}
}
###############
# Delivery
###############
protocol lmtp {
2016-02-21 15:07:12 +01:00
mail_plugins = $mail_plugins sieve
2016-02-17 22:56:40 +01:00
recipient_delimiter = +
}
service lmtp {
inet_listener lmtp {
port = 2525
2016-02-17 22:56:40 +01:00
}
}
2016-02-21 15:39:01 +01:00
plugin {
quota = maildir:User quota
}
2016-02-17 22:56:40 +01:00
###############
# Filtering
###############
service managesieve-login {
inet_listener sieve {
port = 4190
}
}
plugin {
sieve = ~/.sieve
sieve_dir = ~/sieve
sieve_before = /var/lib/dovecot/before.sieve
sieve_default = /var/lib/dovecot/default.sieve
sieve_after = /var/lib/dovecot/after.sieve
2016-02-17 22:56:40 +01:00
}