From a16f35325c6adf32d53ad98508d9d154fdc1385b Mon Sep 17 00:00:00 2001 From: Hexagon Date: Fri, 26 Nov 2010 20:15:02 +0100 Subject: [PATCH] Changing default smtp auth to plain --- config/app_config.yml.example | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/config/app_config.yml.example b/config/app_config.yml.example index e224d47e9..ebc90d56e 100644 --- a/config/app_config.yml.example +++ b/config/app_config.yml.example @@ -56,12 +56,13 @@ default: # Sender address in diaspora's outgoing mail. smtp_sender_address: 'no-reply@example.com' - # If authentication is needed, change this to one of "plain", - # "login" or "cram-md5" - smtp_authentication: 'none' + # Authentication required to send mail. Use one of 'one','plain', + # 'login' or 'cram-md5'. Use 'none' if server do not support + # authentication + smtp_authentication: 'plain' # Credentails possibly required to log in to SMTP server if - # smtp_authentication != 'plain' + # smtp_authentication != 'none' smtp_username: 'smtp_username' smtp_password: 'secret'