From e2a5b5739bbbfb3fc9799a05d55a0a98fa65eb72 Mon Sep 17 00:00:00 2001 From: Rocco Rutte Date: Sat, 30 May 2009 00:24:02 +0200 Subject: [PATCH] Fix logic in f260f5836284 --- ChangeLog | 17 +++++++++++++++++ smtp.c | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 11698a059..395ff6768 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,20 @@ +2009-05-29 21:33 +0200 Rocco Rutte (c4d86d4ea260) + + * pager.c: Drop modified version of and use mutt_read_line() in pager, + too + +2009-05-29 21:24 +0200 Rocco Rutte (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 (d13500626ea6) * menu.c, pager.c, pattern.c: Fall back to search if no query exists diff --git a/smtp.c b/smtp.c index 0d2620b69..487102ec1 100644 --- 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); -- 2.40.0