Hi,
I’ve been banging my head against the wall for few hours but no solution yet. I upgraded the mail server VM and dovecot got upgraded to 2.4.1. Of course it did not start anymore because the config was not compatible anymore with 2.4.1. Managed to fix most of the stuff but Inbox remains out.
This is the config (doveconf -n):
doveconf -n
# 2.4.1-4 (7d8c0e5759): /etc/dovecot/dovecot.conf
# Pigeonhole version 2.4.1-4 (0a86619f)
# OS: Linux 6.16.1-1-default x86_64
# Hostname: localhost
# 2 default setting changes since version 2.4.1
dovecot_config_version = 2.4.1
auth_cache_negative_ttl = 0
auth_cache_size = 1024
auth_cache_ttl = 1 hour
auth_debug = yes
auth_mechanisms = plain login
auth_verbose = yes
auth_verbose_passwords = sha1
dovecot_storage_version = 2.4.1
mail_debug = yes
mail_driver = mbox
mail_gid = mail
mail_home = /home/%(user)/
mail_inbox_path = /var/mail
mail_path = ~/mail
mail_privileged_group = mail
protocols = imap
ssl_cipher_list = ALL:!aNULL:!eNULL:!EXPORT:!DES:!3DES:!MD5:!PSK:!RC4:!ADH:!LOW@STRENGTH
passdb pam {
driver = pam
failure_show_msg = yes
session = yes
}
userdb passwd {
driver = passwd
}
service director {
unix_listener login/director {
}
fifo_listener login/proxy-notify {
}
unix_listener director-userdb {
}
}
service imap-login {
inet_listener imap {
}
inet_listener imaps {
}
inet_listener https {
port = 443
ssl = yes
}
}
service pop3-login {
inet_listener pop3 {
}
inet_listener pop3s {
}
}
service submission-login {
inet_listener submission {
}
}
namespace inbox {
inbox = yes
type = private
mailbox Drafts {
special_use = "\\Drafts"
}
mailbox Junk {
special_use = "\\Junk"
}
mailbox Trash {
special_use = "\\Trash"
}
mailbox Sent {
special_use = "\\Sent"
}
mailbox "Sent Messages" {
special_use = "\\Sent"
}
}
mbox {
read_locks = fcntl
}
service lmtp {
unix_listener lmtp {
}
}
service imap {
}
service pop3 {
}
service submission {
}
service auth {
unix_listener auth-userdb {
}
}
service auth-worker {
}
service dict {
unix_listener dict {
}
}
ssl_server {
cert_file = /etc/ssl/private/dovecot.crt
dh_file = /etc/ssl/private/dh2048.pem
key_file = /etc/ssl/private/dovecot.pem
}
Inbox (mbox) is located at /var/mail/. One file per user.
Mails are otherwise located at /home//mail.
What is wrong with the config - can anyone help out?