Update u_e-dovecot-any_acl.md

Dieser Commit ist enthalten in:
André Peters 2019-01-16 10:54:59 +01:00 committet von GitHub
Ursprung b8460308f2
Commit 95abcee215
Es konnte kein GPG-SchlĂĽssel zu dieser Signatur gefunden werden
GPG-SchlĂĽssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -1,30 +1,9 @@
On August the 17th, we disabled the possibility to share with "any" or "all authenticated users" in Dovecot by default. On August the 17th, we disabled the possibility to share with "any" or "all authenticated users" by default.
## Re-enable "any" ACL in Dovecot This function can be re-enabled by setting `ACL_ANYONE` to `allow` in mailcow.conf:
Open `data/conf/dovecot/dovecot.conf`:
```
# Allow "any" or "authenticated" to be used in ACLs
#acl_anyone = allow
```
Remove "#" from "acl_anyone" and restart Dovecot by running `docker-compose restart dovecot-mailcow`.
## Re-enable "any" ACL field in SOGo
We have not yet made it an optional setting. But you can still rebuild sogo-mailcow with a slight change to
Open `data/Dockerfiles/sogo/bootstrap-sogo.sh` and comment out the following code:
``` ```
if patch -sfN --dry-run /usr/lib/GNUstep/SOGo/Templates/UIxAclEditor.wox < /acl.diff > /dev/null; then ACL_ANYONE=allow
patch /usr/lib/GNUstep/SOGo/Templates/UIxAclEditor.wox < /acl.diff;
fi
```
Rebuild sogo-mailcow and update the stack:
```
docker-compose build sogo-mailcow
docker-compose up -d
``` ```
Apply the changes by running `docker-compose up -d`.