mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-07-22 11:44:25 +02:00
Updated Configure SSL (markdown)
This commit is contained in:
parent
830fb9807b
commit
197318f1ab
1 changed files with 18 additions and 1 deletions
|
@ -99,3 +99,20 @@ or
|
||||||
And you should see the certificate chain, the server certificate and:
|
And you should see the certificate chain, the server certificate and:
|
||||||
|
|
||||||
Verify return code: 0 (ok)
|
Verify return code: 0 (ok)
|
||||||
|
|
||||||
|
### Plain text access
|
||||||
|
|
||||||
|
Not recommended for purposes other than testing.
|
||||||
|
|
||||||
|
Just add this to config/dovecot.cf:
|
||||||
|
|
||||||
|
```
|
||||||
|
ssl = yes
|
||||||
|
disable_plaintext_auth=no
|
||||||
|
```
|
||||||
|
|
||||||
|
These options in conjunction mean:
|
||||||
|
|
||||||
|
```
|
||||||
|
ssl=yes and disable_plaintext_auth=no: SSL/TLS is offered to the client, but the client isn't required to use it. The client is allowed to login with plaintext authentication even when SSL/TLS isn't enabled on the connection. This is insecure, because the plaintext password is exposed to the internet.
|
||||||
|
```
|
Loading…
Add table
Add a link
Reference in a new issue