-
-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(alerting): Add support for client.insecure in email alerting prov…
…ider (#583) * feat: adding client.insecure flag to email configuration * chore(review): applying suggested changes --------- Co-authored-by: TwiN <[email protected]>
- Loading branch information
Showing
2 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -476,6 +476,7 @@ endpoints: | |
| `alerting.email.port` | Port the mail server is listening to (e.g. `587`) | Required `0` | | ||
| `alerting.email.to` | Email(s) to send the alerts to | Required `""` | | ||
| `alerting.email.default-alert` | Default alert configuration. <br />See [Setting a default alert](#setting-a-default-alert) | N/A | | ||
| `alerting.email.client.insecure` | Whether to skip TLS verification | `false` | | ||
| `alerting.email.overrides` | List of overrides that may be prioritized over the default configuration | `[]` | | ||
| `alerting.email.overrides[].group` | Endpoint group for which the configuration will be overridden by this configuration | `""` | | ||
| `alerting.email.overrides[].to` | Email(s) to send the alerts to | `""` | | ||
|
@@ -489,6 +490,8 @@ alerting: | |
host: "mail.example.com" | ||
port: 587 | ||
to: "[email protected],[email protected]" | ||
client: | ||
insecure: false | ||
# You can also add group-specific to keys, which will | ||
# override the to key above for the specified groups | ||
overrides: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters