From 5d3a12dcac59331e3f7b9218a79920a758381e75 Mon Sep 17 00:00:00 2001 From: Anders Melchiorsen Date: Mon, 3 Jul 2017 22:40:42 +0200 Subject: [PATCH] The SMTP default encryption is now starttls (#2926) --- source/_components/notify.smtp.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/notify.smtp.markdown b/source/_components/notify.smtp.markdown index e8ffafd4f1e..7f94abf4e7d 100644 --- a/source/_components/notify.smtp.markdown +++ b/source/_components/notify.smtp.markdown @@ -32,11 +32,11 @@ Configuration variables: - **sender** (*Required*): E-mail address of the sender. - **recipient** (*Required*): E-mail address of the recipient of the notification. This can be a recipient address or a list of addresses for multiple recipients. - **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 465. +- **port** (*Optional*): The port that the SMTP server is using. Defaults to 587. - **timeout** (*Optional*): The timeout in seconds that the SMTP server is using. Defaults to 5. - **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. -- **encryption** (*Optional*): Set mode for encryption, `tls`, `starttls` or `none`. Defaults to `tls`. +- **encryption** (*Optional*): Set mode for encryption, `starttls`, `tls` or `none`. Defaults to `starttls`. - **sender_name** (*Optional*): Sets a custom 'sender name' in the emails headers (*From*: Custom name ). - **debug** (*Optional*): Enables Debug, eg. True or False. Defaults to False.