]> granicus.if.org Git - neomutt/commitdiff
Fix logic in f260f5836284
authorRocco Rutte <pdmef@gmx.net>
Fri, 29 May 2009 22:24:02 +0000 (00:24 +0200)
committerRocco Rutte <pdmef@gmx.net>
Fri, 29 May 2009 22:24:02 +0000 (00:24 +0200)
ChangeLog
smtp.c

index 11698a05979d1430d8ca4310aaeee73fdf8bdaaf..395ff67685eeb3f5db251db17f80137075d62527 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+2009-05-29 21:33 +0200  Rocco Rutte  <pdmef@gmx.net>  (c4d86d4ea260)
+
+       * pager.c: Drop modified version of and use mutt_read_line() in pager,
+       too
+
+2009-05-29 21:24 +0200  Rocco Rutte  <pdmef@gmx.net>  (776ef9dbe4d2)
+
+       * ChangeLog, history.c, init.c, lib.c, lib.h, mh.c, mutt_ssl_gnutls.c,
+       pgp.c, query.c, rfc1524.c, smime.c: Add flags to mutt_read_line()
+       for EOL-stripping and continuation support
+
+       We use these to stop supporting EOL-escaping with \ which was wrong
+       in most cases (e.g. $history_file), support is kept for reading
+       config and mailcap files.
+
+       Leaving CRLF in will be used for the pager.
+
 2009-05-29 16:40 +0200  Rocco Rutte  <pdmef@gmx.net>  (d13500626ea6)
 
        * menu.c, pager.c, pattern.c: Fall back to search if no query exists
diff --git a/smtp.c b/smtp.c
index 0d2620b69ed0b484e29593bcedd02c3bc32df594..487102ec19bff727823af05909390aeddf062fc5 100644 (file)
--- a/smtp.c
+++ b/smtp.c
@@ -422,7 +422,7 @@ static int smtp_open (CONNECTION* conn)
     }
 
 #ifdef USE_SASL
-    if (!(conn->account.flags & M_ACCT_PASS) || !option (OPTNOCURSES))
+    if (!(conn->account.flags & M_ACCT_PASS) && option (OPTNOCURSES))
     {
       mutt_error (_("Interactive SMTP authentication not supported"));
       mutt_sleep (1);