diff options
author | Eduardo Chappa <chappa@washington.edu> | 2020-03-19 23:13:37 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2020-03-19 23:13:37 -0600 |
commit | 4d705415db3769e5a42773c91e4a1cf88cecf239 (patch) | |
tree | 45384adfcc59aff713de850a0bc154023818ac51 | |
parent | 277d70d881a99e563cfa1c4eee4cc0e77c17ea7d (diff) | |
download | alpine-4d705415db3769e5a42773c91e4a1cf88cecf239.tar.xz |
* Alpine would not redraw the screen when a check for new mail in an
incoming folder failed due to a failurec while validating the server
certificate, and the user did not allow the connection to proceed.
-rw-r--r-- | alpine/imap.c | 2 | ||||
-rw-r--r-- | pith/pine.hlp | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/alpine/imap.c b/alpine/imap.c index ce5626b5..a001980c 100644 --- a/alpine/imap.c +++ b/alpine/imap.c @@ -2038,6 +2038,8 @@ pine_sslcertquery(char *reason, char *host, char *cert) if(the_answer == 'y') rv++; + else if(the_answer == 'n') + ps_global->user_says_cancel = 1; ps_global->mangled_screen = 1; ps_global->painted_body_on_startup = 0; diff --git a/pith/pine.hlp b/pith/pine.hlp index 3a358fbd..997ac104 100644 --- a/pith/pine.hlp +++ b/pith/pine.hlp @@ -140,7 +140,7 @@ with help text for the config screen and the composer that didn't have any reasonable place to be called from. Dummy change to get revision in pine.hlp ============= h_revision ================= -Alpine Commit 412 2020-03-18 01:36:29 +Alpine Commit 413 2020-03-19 23:12:05 ============= h_news ================= <HTML> <HEAD> @@ -208,6 +208,14 @@ Bugs that have been addressed include: <LI>Crash in Alpine when attempting to reply to a multipart/alternative message that is malformed, and the option to include attachments in reply is enabled. Reported and patched by Peter Tirsek. + +<LI>Bug that makes Alpine split encoded words in the subject of a message + in the middle of a utf-8 character into two encoded words, breaking the + encoding. Reported by Jean Chevalier. + +<LI> Alpine would not redraw the screen when a check for new mail in an + incoming folder failed due to a failurec while validating the server + certificate, and the user did not allow the connection to proceed. </UL> <P> |