Add dovecot missing ssl files as common error

See https://github.com/mailcow/mailcow-dockerized/issues/2672
Dieser Commit ist enthalten in:
Balázs Kovács 2020-11-03 18:41:03 +01:00
Ursprung 94c9b84719
Commit 9150771758

Datei anzeigen

@ -72,7 +72,22 @@ dism /online /Enable-Feature /FeatureName:TelnetClient
Docker containers use the Docker hosts inotify limits. Setting them on your Docker host will pass them to the container. Docker containers use the Docker hosts inotify limits. Setting them on your Docker host will pass them to the container.
## Dovecot keeps restarting (see [#2672](https://github.com/mailcow/mailcow-dockerized/issues/2672))
Check that you have the following files in `data/assets/ssl`:
```
-r--r--r-- 1 root root 3554 Nov 3 17:07 cert.pem
-rw-r--r-- 1 root root 769 Nov 3 18:24 dhparams.pem
-r-------- 1 root root 1704 Nov 3 17:07 key.pem
```
If `dhparams.pem` is missing, you can generate it with
```bash
openssl dhparam -out data/assets/ssl/dhparams.pem 4096
```
[^1]: [netcat](https://linux.die.net/man/1/nc), [nmap](https://linux.die.net/man/1/nmap), [openssl](https://wiki.openssl.org/index.php/Manual:S_client(1)), [telnet](https://linux.die.net/man/1/telnet), etc. [^1]: [netcat](https://linux.die.net/man/1/nc), [nmap](https://linux.die.net/man/1/nmap), [openssl](https://wiki.openssl.org/index.php/Manual:S_client(1)), [telnet](https://linux.die.net/man/1/telnet), etc.