Skip to content

Commit

Permalink
Document smtp_hello parameter (#988)
Browse files Browse the repository at this point in the history
* Document smtp_hello parameter

* Document text parameter for email_config
  • Loading branch information
simonpasquier authored and brian-brazil committed Mar 16, 2018
1 parent 859cb25 commit 68f3eaa
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions content/docs/alerting/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ global:
[ smtp_from: <tmpl_string> ]
# The default SMTP smarthost used for sending emails.
[ smtp_smarthost: <string> ]
# The default hostname to identify to the SMTP server.
[ smtp_hello: <string> | default = "localhost" ]
# SMTP authentication information.
[ smtp_auth_username: <string> ]
[ smtp_auth_password: <secret> ]
Expand Down Expand Up @@ -290,6 +292,9 @@ to: <tmpl_string>
# The SMTP host through which emails are sent.
[ smarthost: <string> | default = global.smtp_smarthost ]
# The hostname to identify to the SMTP server.
[ hello: <string> | default = global.smtp_hello ]
# SMTP authentication information.
[ auth_username: <string> | default = global.smtp_auth_username ]
[ auth_password: <secret> | default = global.smtp_auth_password ]
Expand All @@ -301,6 +306,8 @@ to: <tmpl_string>
# The HTML body of the email notification.
[ html: <tmpl_string> | default = '{{ template "email.default.html" . }}' ]
# The text body of the email notification.
[ text: <tmpl_string> ]
# Further headers email header key/value pairs. Overrides any headers
# previously set by the notification implementation.
Expand Down

0 comments on commit 68f3eaa

Please sign in to comment.