From 136b000d77fe2798c2e84a2ac368e75aeda5702c Mon Sep 17 00:00:00 2001 From: "Gergely Polonkai (W00d5t0ck)" Date: Fri, 18 May 2012 10:33:16 +0200 Subject: [PATCH] Fixed smtp server example and smtp tls comment in config example Signed-off-by: Gergely Polonkai (W00d5t0ck) --- conf/wmud.conf.example | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/conf/wmud.conf.example b/conf/wmud.conf.example index 73d6f34..a707edd 100644 --- a/conf/wmud.conf.example +++ b/conf/wmud.conf.example @@ -46,10 +46,13 @@ reborn = true # generated passwords [smtp] -# The SMTP server's address -smtp server = smtp.gmail.com +# The SMTP server's address. It's in the format server[:port]. If port is +# omitted, the default given by libcurl will be used +smtp server = smtp.gmail.com:587 -# Set to true if the SMTP server provides or requires TLS connections +# Set to true if the SMTP server provides or requires TLS connections. It's a +# wise idea to set it to true, if you know your server supports it, even if it +# does not require it. smtp tls = true # The username to use to send e-mails