diff options
author | Eduardo Chappa <chappa@washington.edu> | 2014-05-31 21:37:10 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2014-05-31 21:37:10 -0600 |
commit | 60b67de2ba4be4d2bfeeeea685869e9a5a7363c0 (patch) | |
tree | 20831a8341dfe86c0f4c247df9ac5b5ec61b41db /mapi | |
parent | d8f387ef722cfb9e694d25c1ab182d01501f1b9d (diff) | |
download | alpine-60b67de2ba4be4d2bfeeeea685869e9a5a7363c0.tar.xz |
* new version 2.19.9991
* S/MIME Alpine would compute incorrectly the signature of a message
that contains 8bit if the option "Enable 8bit ESMTP Negotiation" is
enabled, the message contains 8bit characters and the smtp server
supports 8bit sending.
* Crash while redrawing S/MIME configuration screen when importing a
certificate
* When forwarding a message before opening it, the message might not be
found. The problem is in the forward_body function, where the section
of the body is not correctly set in all instances.
* When forwarding a signed message Alpine might forward the message as
a multipart message, instead of just selecting the body of the
message. Change to forward the signed part only. This aligns Alpine
with what it does when it replies to a similar message.
Diffstat (limited to 'mapi')
-rw-r--r-- | mapi/pmapi.c | 2 | ||||
-rw-r--r-- | mapi/pmapi.rc | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/mapi/pmapi.c b/mapi/pmapi.c index 4d4b3101..036e19ef 100644 --- a/mapi/pmapi.c +++ b/mapi/pmapi.c @@ -1952,7 +1952,7 @@ BOOL APIENTRY DllMain( now = time((time_t *)0); tm_now = localtime(&now); - fprintf(ms_global->dfd, "pmapi32.dll for Alpine Version 2.19.999\r\n"); + fprintf(ms_global->dfd, "pmapi32.dll for Alpine Version 2.19.9991\r\n"); fprintf(ms_global->dfd, " Build date: %s\r\n", datestamp); fprintf(ms_global->dfd, " please report all bugs to chappa@gmx.com\r\n"); diff --git a/mapi/pmapi.rc b/mapi/pmapi.rc index ed2e7b7e..815a7a4e 100644 --- a/mapi/pmapi.rc +++ b/mapi/pmapi.rc @@ -98,8 +98,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,19,999,0 - PRODUCTVERSION 2,19,999,0 + FILEVERSION 2,19,9991,0 + PRODUCTVERSION 2,19,9991,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x29L @@ -117,14 +117,14 @@ BEGIN VALUE "Comments", "alpine info: http://patches.freeiz.com/alpine\0" VALUE "CompanyName", "Patches for Alpine\0" VALUE "FileDescription", "Simple MAPI DLL for Alpine for Windows\0" - VALUE "FileVersion", "2.19.999\0" + VALUE "FileVersion", "2.19.9991\0" VALUE "InternalName", "pmapi32\0" VALUE "LegalCopyright", "Copyright ? University of Washington 2006-2009, Eduardo Chappa 2013-2014\0" VALUE "LegalTrademarks", "Apache License, Version 2.0\0" VALUE "OriginalFilename", "pmapi32.dll\0" VALUE "PrivateBuild", " \0" VALUE "ProductName", "Simple MAPI for Alpine for Windows\0" - VALUE "ProductVersion", "2.19.999\0" + VALUE "ProductVersion", "2.19.9991\0" VALUE "SpecialBuild", " \0" END END |