On 27/02/2025 11:26 EET Andrea Gabellini via dovecot <dovecot@dovecot.org> wrote:
Hi,
I'm trying to migrate my setup to Dovecot 2.4, but I'm experiencing an unusual issue with ACLs. After multiple tests, I’ve stripped the configuration down to the bare minimum to pinpoint the root cause of the problem.
Basically, if I set "owner lr" as the permissions for a folder, I am unable to move any messages, yet I can still create subfolders. Here’s the relevant configuration:
ini Copia Modifica protocol imap { mail_plugins { acl = yes } }
acl_driver = vfile acl_globals_only = yes
namespace inbox { inbox = yes separator = / mailbox Test { acl owner { rights = lr } } }
Am I missing any configuration, or have I encountered a bug?
Thanks, Andrea
The permissions only apply to that folder, try adding
mailbox Test/* { acl owner { rights = lr } }
Aki