summaryrefslogtreecommitdiff
path: root/pith
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2013-05-29 17:16:32 -0600
committerEduardo Chappa <chappa@washington.edu>2013-05-29 17:16:32 -0600
commit077522d7e058133f9de99d0d74481566b21c5a98 (patch)
tree61095d90e1bc059ff0dbaef5cbf38cabf8a2948b /pith
parent7d52215d26b6bec1888f546da5d56657cfb16516 (diff)
downloadalpine-077522d7e058133f9de99d0d74481566b21c5a98.tar.xz
* quote of shell characters when opening urls.
* increase of encryption of S/MIME messages.
Diffstat (limited to 'pith')
-rw-r--r--pith/pine.hlp7
-rw-r--r--pith/smime.c2
2 files changed, 6 insertions, 3 deletions
diff --git a/pith/pine.hlp b/pith/pine.hlp
index af1b833a..82872f19 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 8 2013-03-11 01:40:41
+Alpine Commit 9 2013-05-29 16:02:24
============= h_news =================
<HTML>
<HEAD>
@@ -179,6 +179,7 @@ Additions include:
<P>
<UL>
+ <LI> Increase encryption of S/MIME encrypted messages.
<LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>,
<A HREF="h_config_directory_color">directory names</A>,
and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN.
@@ -197,7 +198,9 @@ message, as specified by original sender.
Bugs that have been addressed include:
<P>
<UL>
- <LI> Fix Cygwin separator to &quot;/&quot;
+ <LI> Proper quote of shell characters in urls.
+ <LI> Configure script did not test for crypto or pam libraries.
+ <LI> Fix Cygwin separator to &quot;/&quot;.
<LI> Crash when a non-compliant SMTP server closes a connection without a QUIT command.
<LI> Crash when resizing the screen in a configuration screen.
</UL>
diff --git a/pith/smime.c b/pith/smime.c
index dc332a2a..d212b233 100644
--- a/pith/smime.c
+++ b/pith/smime.c
@@ -1390,7 +1390,7 @@ encrypt_outgoing_message(METAENV *header, BODY **bodyP)
dprint((9, "encrypt_outgoing_message()"));
smime_init();
- cipher = EVP_des_cbc();
+ cipher = EVP_aes_256_cbc();
encerts = sk_X509_new_null();