From 85a36e4b26c0081d0492feaeea4a158e89e728d0 Mon Sep 17 00:00:00 2001 From: hawk259 Date: Tue, 14 Mar 2017 14:01:27 -0400 Subject: [PATCH] Add docs for new notify smtp timeout param (#2258) --- source/_components/notify.smtp.markdown | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/_components/notify.smtp.markdown b/source/_components/notify.smtp.markdown index bd6d47cdb46..aa65fb72033 100644 --- a/source/_components/notify.smtp.markdown +++ b/source/_components/notify.smtp.markdown @@ -31,6 +31,7 @@ Configuration variables: - **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`. - **server** (*Optional*): SMTP server which is used to end the notifications. Defaults to `localhost`. - **port** (*Optional*): The port that the SMTP server is using. Defaults to 25. +- **timeout** (*Optional*): The timeout in seconds that the SMTP server is using. Defaults to 5. - **sender** (*Optional*): E-mail address of the sender. - **username** (*Optional*): Username for the SMTP account. - **password** (*Optional*): Password for the SMTP server that belongs to the given username. If the password contains a colon it need to be wrapped in apostrophes. @@ -47,6 +48,7 @@ notify: platform: smtp server: smtp.gmail.com port: 587 + timeout: 15 sender: john@gmail.com starttls: true username: john@gmail.com