diff options
author | Eduardo Chappa <chappa@washington.edu> | 2015-03-31 12:22:58 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2015-03-31 12:22:58 -0600 |
commit | e53164a6acbbb123ba97fd227ac0b3cf4ef4eeb0 (patch) | |
tree | 0fc7075642a99b23be3f9a2be4c3d0edf99a51c7 /mapi | |
parent | 3a9d4c01e5135f6d5b2aecdaf698d1d960387df9 (diff) | |
download | alpine-e53164a6acbbb123ba97fd227ac0b3cf4ef4eeb0.tar.xz |
* new version 2.20.5
* SMIME: Crash when a certificate has an invalid date of validity. Also
Alpine will use the function ASN1_TIME_print to determine the date of
validity. Reported by Ben Stienstra.
* SMIME: Crash when atempting to unlock the password file and an
incorrect password is entered.
* Alpine version 2.20.4 would not build in Windows, due to a missing
#ifdef SMIME directive in file alpine/mailpart.c. Reported by
Ulf-Dietrich Braunmann.
* Pico: Code reorganization in the search command to make it easier to
add subcommands of the search command.
* Pico: Search command can do a case sensitive match. Use the Ctrl-^
subcommand of the search command to bring this choice into view.
* For a multipart/alternative message, the Take Address command will
work on the part that is being read.
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 9c71fb30..3a1c3c75 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.20.4\r\n"); + fprintf(ms_global->dfd, "pmapi32.dll for Alpine Version 2.20.5\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 b1d991a0..dbb9a99e 100644 --- a/mapi/pmapi.rc +++ b/mapi/pmapi.rc @@ -98,8 +98,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,20,4,0 - PRODUCTVERSION 2,20,4,0 + FILEVERSION 2,20,5,0 + PRODUCTVERSION 2,20,5,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.20.4\0" + VALUE "FileVersion", "2.20.5\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.20.4\0" + VALUE "ProductVersion", "2.20.5\0" VALUE "SpecialBuild", " \0" END END |