- Notifications
You must be signed in to change notification settings - Fork923
chore(cli): drop 'notification' prefix for configuring email auth#15270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
a36432c
e38c006
c096a9a
279a22d
1b7c280
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -518,6 +518,51 @@ userQuietHoursSchedule: | ||
# compatibility reasons, this will be removed in a future release. | ||
# (default: false, type: bool) | ||
allowWorkspaceRenames: false | ||
# Configure how emails are sent. | ||
email: | ||
# The sender's address to use. | ||
# (default: <unset>, type: string) | ||
from: "" | ||
# The intermediary SMTP host through which emails are sent. | ||
# (default: localhost:587, type: host:port) | ||
smarthost: localhost:587 | ||
# The hostname identifying the SMTP server. | ||
# (default: localhost, type: string) | ||
hello: localhost | ||
# Force a TLS connection to the configured SMTP smarthost. | ||
# (default: false, type: bool) | ||
forceTLS: false | ||
# Configure SMTP authentication options. | ||
emailAuth: | ||
# Identity to use with PLAIN authentication. | ||
# (default: <unset>, type: string) | ||
identity: "" | ||
# Username to use with PLAIN/LOGIN authentication. | ||
# (default: <unset>, type: string) | ||
username: "" | ||
# File from which to load password for use with PLAIN/LOGIN authentication. | ||
# (default: <unset>, type: string) | ||
passwordFile: "" | ||
# Configure TLS for your SMTP server target. | ||
emailTLS: | ||
# Enable STARTTLS to upgrade insecure SMTP connections using TLS. | ||
# (default: <unset>, type: bool) | ||
startTLS: false | ||
# Server name to verify against the target certificate. | ||
# (default: <unset>, type: string) | ||
serverName: "" | ||
# Skip verification of the target server's certificate (insecure). | ||
# (default: <unset>, type: bool) | ||
insecureSkipVerify: false | ||
# CA certificate file to use. | ||
# (default: <unset>, type: string) | ||
caCertFile: "" | ||
# Certificate file to use. | ||
# (default: <unset>, type: string) | ||
certFile: "" | ||
# Certificate key file to use. | ||
# (default: <unset>, type: string) | ||
certKeyFile: "" | ||
# Configure how notifications are processed and delivered. | ||
notifications: | ||
# Which delivery method to use (available options: 'smtp', 'webhook'). | ||
@@ -532,13 +577,13 @@ notifications: | ||
# (default: <unset>, type: string) | ||
from: "" | ||
# The intermediary SMTP host through which emails are sent. | ||
# (default:<unset>, type: host:port) | ||
SasSwart marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
smarthost: localhost:587 | ||
# The hostname identifying the SMTP server. | ||
# (default:<unset>, type: string) | ||
hello: localhost | ||
# Force a TLS connection to the configured SMTP smarthost. | ||
# (default:<unset>, type: bool) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. We should probably start adding the deprecation notice to these comments at some point 🤔 | ||
forceTLS: false | ||
# Configure SMTP authentication options. | ||
emailAuth: | ||
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.