Update u_e-dovecot-public_folder.md

Dieser Commit ist enthalten in:
André Peters 2020-07-07 20:25:24 +02:00 committet von GitHub
Ursprung 4e1249a7a0
Commit 963e0ef7b2
Es konnte kein GPG-SchlĂĽssel zu dieser Signatur gefunden werden
GPG-SchlĂĽssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -25,6 +25,16 @@ To allow all authenticated users access full to that new mailbox, run:
docker-compose exec dovecot-mailcow doveadm acl set -A "Public/Develcow" "authenticated" lookup read write write-seen write-deleted insert post delete expunge create
```
Adjust the command to your needs if you like to assign more granular rights per user.
Adjust the command to your needs if you like to assign more granular rights per user (use `-u user@domain` instead of `-A` for example).
To allow all authenticated users access full access to the whole public namespace and its subfolders, create a new `dovecot-acl` file in the namespace root directory:
Open/edit/create `/var/lib/docker/volumes/mailcowdockerized_vmail-vol-1/_data/public/dovecot-acl` (adjust the path accordingly) to create the global ACL file with the following content:
```
authenticated kxeilprwts
```
`kxeilprwts` equals to `lookup read write write-seen write-deleted insert post delete expunge create`.
See [Dovecot ACL](https://doc.dovecot.org/settings/plugin/acl/) for further information about ACL.