diff --git a/content/docs/alerting/configuration.md b/content/docs/alerting/configuration.md index 81bcb12da..59e9fa6e7 100755 --- a/content/docs/alerting/configuration.md +++ b/content/docs/alerting/configuration.md @@ -65,6 +65,8 @@ global: [ smtp_from: ] # The default SMTP smarthost used for sending emails. [ smtp_smarthost: ] + # The default hostname to identify to the SMTP server. + [ smtp_hello: | default = "localhost" ] # SMTP authentication information. [ smtp_auth_username: ] [ smtp_auth_password: ] @@ -290,6 +292,9 @@ to: # The SMTP host through which emails are sent. [ smarthost: | default = global.smtp_smarthost ] +# The hostname to identify to the SMTP server. +[ hello: | default = global.smtp_hello ] + # SMTP authentication information. [ auth_username: | default = global.smtp_auth_username ] [ auth_password: | default = global.smtp_auth_password ] @@ -301,6 +306,8 @@ to: # The HTML body of the email notification. [ html: | default = '{{ template "email.default.html" . }}' ] +# The text body of the email notification. +[ text: ] # Further headers email header key/value pairs. Overrides any headers # previously set by the notification implementation.