Add pflogsumm
Dieser Commit ist enthalten in:
Ursprung
da6495930e
Commit
d1cd019129
5 geänderte Dateien mit 40 neuen und 1 gelöschten Zeilen
30
docs/u_e-dovecot-any_acl.md
Normale Datei
30
docs/u_e-dovecot-any_acl.md
Normale Datei
|
@ -0,0 +1,30 @@
|
|||
On August the 17th, we disabled the possibility to share with "any" or "all authenticated users" in Dovecot by default.
|
||||
|
||||
## Re-enable "any" ACL in Dovecot
|
||||
|
||||
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
|
||||
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
|
||||
```
|
||||
|
7
docs/u_e-postfix-pflogsumm.md
Normale Datei
7
docs/u_e-postfix-pflogsumm.md
Normale Datei
|
@ -0,0 +1,7 @@
|
|||
To use pflogsumm with the default logging driver, we need to query postfix-mailcow via docker logs and pipe the output to pflogsumm:
|
||||
|
||||
```
|
||||
docker logs --since 24h $(docker ps -qf name=postfix-mailcow) | pflogsumm
|
||||
```
|
||||
|
||||
The above log output is limited to the past 24 hours.
|
|
@ -60,7 +60,9 @@ pages:
|
|||
- 'Anonymize Headers': 'u_e-postfix-anonym_headers.md'
|
||||
- 'Disable Sender Addresses Verification': 'u_e-postfix-disable_sender_verification.md'
|
||||
- 'Max. message size (attachment size)': 'u_e-postfix-attachment_size.md'
|
||||
- 'Statistics with pflogsumm': 'u_e-postfix-pflogsumm.md'
|
||||
- 'Dovecot':
|
||||
- "(Re-)Enable any and all authenticated ACL settings": 'u_e-dovecot-any_acl.md'
|
||||
- "Expunge a User's Mails": 'u_e-dovecot-expunge.md'
|
||||
- 'More Examples with DOVEADM': 'u_e-dovecot-more.md'
|
||||
- 'Move vmail volume': 'u_e-dovecot-vmail-volume.md'
|
||||
|
@ -77,7 +79,7 @@ pages:
|
|||
- 'Adjust Service Configurations': 'u_e-change_config.md'
|
||||
- 'Deinstall': 'u_e-deinstall.md'
|
||||
- 'Client Configuration':
|
||||
- 'Overview': 'client/client.md'
|
||||
- 'Overview': 'client.md'
|
||||
- 'Android': 'client/client-android.md'
|
||||
- 'Apple macOS / iOS': 'client/client-apple.md'
|
||||
- 'eM Client': 'client/client-emclient.md'
|
||||
|
|
Laden …
In neuem Issue referenzieren