2026-06-16 23:15:35 +08:00
|
|
|
protocols = imap pop3 lmtp
|
2026-06-14 01:07:48 +08:00
|
|
|
listen = *
|
|
|
|
|
base_dir = /var/run/dovecot/
|
|
|
|
|
|
|
|
|
|
log_path = /dev/stderr
|
|
|
|
|
info_log_path = /dev/stdout
|
|
|
|
|
|
|
|
|
|
ssl = yes
|
|
|
|
|
ssl_cert = </etc/ssl/certs/ssl-cert-snakeoil.pem
|
|
|
|
|
ssl_key = </etc/ssl/private/ssl-cert-snakeoil.key
|
|
|
|
|
|
|
|
|
|
mail_home = /var/mail/vhosts/%d/%n
|
|
|
|
|
namespace inbox {
|
|
|
|
|
inbox = yes
|
2026-06-16 21:48:42 +08:00
|
|
|
mailbox Drafts {
|
|
|
|
|
special_use = \Drafts
|
|
|
|
|
}
|
|
|
|
|
mailbox Sent {
|
|
|
|
|
special_use = \Sent
|
|
|
|
|
}
|
|
|
|
|
mailbox Trash {
|
|
|
|
|
special_use = \Trash
|
|
|
|
|
}
|
|
|
|
|
mailbox Archive {
|
|
|
|
|
special_use = \Archive
|
|
|
|
|
}
|
|
|
|
|
mailbox Spam {
|
|
|
|
|
special_use = \Junk
|
|
|
|
|
}
|
2026-06-14 01:07:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
passdb {
|
|
|
|
|
driver = sql
|
|
|
|
|
args = /etc/dovecot/dovecot-sql.conf.ext
|
|
|
|
|
}
|
|
|
|
|
userdb {
|
|
|
|
|
driver = sql
|
|
|
|
|
args = /etc/dovecot/dovecot-sql.conf.ext
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
service imap-login {
|
2026-06-16 21:48:42 +08:00
|
|
|
inet_listener imaps {
|
|
|
|
|
port = 993
|
|
|
|
|
ssl = yes
|
|
|
|
|
}
|
2026-06-14 01:07:48 +08:00
|
|
|
}
|
|
|
|
|
|
2026-06-16 23:15:35 +08:00
|
|
|
service pop3-login {
|
|
|
|
|
inet_listener pop3s {
|
|
|
|
|
port = 995
|
|
|
|
|
ssl = yes
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-14 01:07:48 +08:00
|
|
|
service lmtp {
|
2026-06-16 21:48:42 +08:00
|
|
|
inet_listener lmtp {
|
|
|
|
|
address = 0.0.0.0
|
|
|
|
|
port = 24
|
|
|
|
|
}
|
2026-06-14 01:07:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
service auth {
|
|
|
|
|
inet_listener postfix-auth {
|
|
|
|
|
address = 0.0.0.0
|
|
|
|
|
port = 12345
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protocol lmtp {
|
|
|
|
|
postmaster_address = postmaster@localhost
|
2026-06-17 00:19:40 +08:00
|
|
|
recipient_delimiter = +
|
|
|
|
|
lmtp_save_to_detail_mailbox = yes
|
2026-06-14 01:07:48 +08:00
|
|
|
}
|