Skip to content

Commit ca624c0

Browse files
committed
chore: fix smtp settings
1 parent 6c32f60 commit ca624c0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

mission-control/docs/installation/self-hosted/getting-started.mdx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,14 @@ To install and run Mission Control you need the following:
9191

9292
An SMTP server is required for sending notifications, approvals, user invites and password resets.
9393

94-
The format of `connection_uri` is `smtp|smtps://USER:PASS@host:PORT`
94+
The format of `connection_uri` is `smtp|smtps://USER:PASS@host:PORT[?param=value]`
9595

96-
This URI will be used to connect to the SMTP server. Use the scheme `smtps` for implicit TLS sessions or `smtp` for explicit StartTLS/cleartext sessions. Nnote that TLS is always enforced with certificate trust verification by default for security reasons on both schemes. With the `smtp` scheme you can use the query parameter (`?disable_starttls=true`) to allow cleartext sessions or (`?disable_starttls=false`) to enforce StartTLS (default behaviour). Additionally, use the query parameter to allow (`?skip_ssl_verify=true`) or disallow (`?skip_ssl_verify=false`) self-signed TLS certificates (default behaviour) on both implicit and explicit TLS sessions.
96+
Use `smtps` for implicit TLS sessions or `smtp` for explicit StartTLS/cleartext sessions.
97+
98+
| Parameter | Description | Default |
99+
| --- | --- | --- |
100+
| `disable_starttls` | When using `smtp` scheme, set to `true` to allow cleartext sessions or `false` to enforce StartTLS | `false` |
101+
| `skip_ssl_verify` | Set to `true` to allow self-signed TLS certificates or `false` to enforce certificate verification. Applies to both implicit and explicit TLS sessions | `false` |
97102

98103

99104
```yaml title="values.yaml"

0 commit comments

Comments
 (0)