diff development.ini @ 5881:a5ad2900985b

docs: tweak email documentation - add gmail example smtp_auth is too obscure to have in the .ini template.
author Mads Kiilerich <madski@unity3d.com>
date Wed, 04 May 2016 01:18:25 +0200
parents 1906a1389cdd
children 110b504916b6
line wrap: on
line diff
--- a/development.ini	Wed May 04 01:18:25 2016 +0200
+++ b/development.ini	Wed May 04 01:18:25 2016 +0200
@@ -55,17 +55,16 @@
 #error_email_from = paste_error@example.com
 
 ## SMTP server settings
-## Only smtp_server is mandatory. All other settings take the specified default
-## values.
+## If specifying credentials, make sure to use secure connections.
+## Default: Send unencrypted unauthenticated mails to the specified smtp_server.
+## For "SSL", use smtp_use_ssl = true and smtp_port = 465.
+## For "STARTTLS", use smtp_use_tls = true and smtp_port = 587.
 #smtp_server = smtp.example.com
 #smtp_username =
 #smtp_password =
 #smtp_port = 25
+#smtp_use_ssl = false
 #smtp_use_tls = false
-#smtp_use_ssl = false
-## SMTP authentication parameters to use (e.g. LOGIN PLAIN CRAM-MD5, etc.).
-## If empty, use any of the authentication parameters supported by the server.
-#smtp_auth =
 
 [server:main]
 ## PASTE ##