From 9afcb0e3034e452d4f10c3d61826efed42f9773a Mon Sep 17 00:00:00 2001 From: Matt Birkholz Date: Thu, 8 Jan 2026 15:34:00 -0700 Subject: [PATCH] Dovecot 2.4 cannot find 2.3 inboxes without mail_inbox_path. --- README.org | 1 + roles_t/core/tasks/main.yml | 1 + roles_t/front/tasks/main.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/README.org b/README.org index 87fe04d..1ed715d 100644 --- a/README.org +++ b/README.org @@ -295,6 +295,7 @@ In version 2.4 (Debian 13), this variable was split in two. #+BEGIN_SRC conf mail_driver = maildir mail_path = ~/Maildir +mail_inbox_path = ~/Maildir #+END_SRC The complete Dovecot configurations for Front and Core use these diff --git a/roles_t/core/tasks/main.yml b/roles_t/core/tasks/main.yml index 90c7247..d283f34 100644 --- a/roles_t/core/tasks/main.yml +++ b/roles_t/core/tasks/main.yml @@ -406,6 +406,7 @@ ssl_server_key_file = /etc/server.key mail_driver = maildir mail_path = ~/Maildir + mail_inbox_path = ~/Maildir dest: /etc/dovecot/local.conf when: - ansible_distribution == 'Debian' diff --git a/roles_t/front/tasks/main.yml b/roles_t/front/tasks/main.yml index afa0415..3b08c80 100644 --- a/roles_t/front/tasks/main.yml +++ b/roles_t/front/tasks/main.yml @@ -215,6 +215,7 @@ } mail_driver = maildir mail_path = ~/Maildir + mail_inbox_path = ~/Maildir dest: /etc/dovecot/local.conf when: - ansible_distribution == 'Debian' -- 2.47.3