Skip to content

Commit

Permalink
chore: fix smtp settings
Browse files Browse the repository at this point in the history
  • Loading branch information
moshloop committed Oct 29, 2024
1 parent 6c32f60 commit ca624c0
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,14 @@ To install and run Mission Control you need the following:

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

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

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.
Use `smtps` for implicit TLS sessions or `smtp` for explicit StartTLS/cleartext sessions.

| Parameter | Description | Default |
| --- | --- | --- |
| `disable_starttls` | When using `smtp` scheme, set to `true` to allow cleartext sessions or `false` to enforce StartTLS | `false` |

Check failure on line 100 in mission-control/docs/installation/self-hosted/getting-started.mdx

View workflow job for this annotation

GitHub Actions / vale

[vale] mission-control/docs/installation/self-hosted/getting-started.mdx#L100

[Flanksource.Spelling] Is 'cleartext' spelled correctly? Is it missing code formatting?
Raw output
{"message": "[Flanksource.Spelling] Is 'cleartext' spelled correctly? Is it missing code formatting?", "location": {"path": "mission-control/docs/installation/self-hosted/getting-started.mdx", "range": {"start": {"line": 100, "column": 73}}}, "severity": "ERROR"}
| `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` |


```yaml title="values.yaml"
Expand Down

0 comments on commit ca624c0

Please sign in to comment.