You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dovecot uses TLS certificates from `/etc/dovecot/ssl` directory. The full chain certificate name is expected to be `tls.crt`, and key file `tls.key`.
45
-
46
44
POP3 service is not enabled by default, if you need pop3, place a pop3.conf drop-in to conf.d:
47
45
48
46
```
@@ -53,6 +51,26 @@ protocols {
53
51
54
52
By default imap, submission, lmtp and sieve protocols are enabled.
55
53
54
+
### Authentication
55
+
56
+
The default auth configuration is in conf.d/auth.conf, which has
57
+
```
58
+
passdb static {
59
+
password = $ENV:USER_PASSWORD
60
+
}
61
+
```
62
+
63
+
This is useful only for testing purposes and single-user instances. To configure multiple users or other authentication methods, you need to override this file.
64
+
65
+
### TLS configuration
66
+
67
+
Default certificate is expected at `/etc/dovecot/ssl/tls.crt` and key at `/etc/dovecot/ssl/tls.key`. You can override `conf.d/ssl.conf` to change thi.s
68
+
69
+
### Complex configuration
70
+
71
+
You can also override the entire `/etc/dovecot/dovecot.conf` file, just make sure you include `/etc/dovecot/vendor.d/rootless.conf` in your configuration either
72
+
direcly, or via include. This is not needed if you use the `-root` variant image.
73
+
56
74
## Listening ports
57
75
58
76
Since v2.4.1 ports are exposed as non-privileged ports. You need to map these
@@ -65,7 +83,7 @@ to the ports that you need.
65
83
| imap | 31143 |
66
84
| imaps | 31993 |
67
85
| pop3 | 31110 |
68
-
| pop3s |31990|
86
+
| pop3s |31995|
69
87
| submissions | 31465 |
70
88
| submission | 31587 |
71
89
| lmtps | 31024 |
@@ -81,12 +99,12 @@ To run the system fully read-only, use:
0 commit comments