Access public junk folder from roundcube

System version
NethServer release 7.7.1908 (final)
Kernel release
3.10.0-1062.el7.x86_64

I’m setting up a new nethserver and am trying to get access to the public junk folder that I have subscribed to. I get a permission denied error when I click on the public > Junk folder from a non-root account. I’ve done some searches but I can’t find anything having to do with roundcube and the public folder. Where might I find the permissions or is there a different way I have to do what I want?

The permissions are set in dovecot, the IMAP server.

You need to use doveadm acl on command line.

Just to give some ideas:

Get permissions for Junk folder:

doveadm acl get -A Public/Junk

Set permissions for authenticated users to allow read of Junk folder:

doveadm acl set -A Public/Junk authenticated lookup read

Delete permissions for authenticated users on Junk folder:

doveadm acl delete -A Public/Junk authenticated

1 Like