summaryrefslogtreecommitdiff
path: root/alpine
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2015-02-28 15:59:56 -0700
committerEduardo Chappa <chappa@washington.edu>2015-02-28 15:59:56 -0700
commitc2af1608456087b5d9475e3b288a12554214c221 (patch)
tree6b691ebc599503249ebc0cf697eb35f2bacf5c98 /alpine
parent4db5ba9a511564e4a3cb3d2b67bce4bb171eae4f (diff)
downloadalpine-c2af1608456087b5d9475e3b288a12554214c221.tar.xz
* new version 2.20.2
* Further enhancement to the configure script in finding the location of the SSL include and library files, when they are installed in th e default location by openssl. * When Alpine sends an attachment, it will set the boundary attribute in lower case, as some SMTP servers, such as those of libero.it reject messages if the boundary attribute is in uppercase. * Alpine fails to remove temporary files used during a display or sending filter. Fix contributed by Phil Brooke. * SMIME: Crash when checking the signature of a message that contains a RFC822 attached message. Reported by Holger Trapp and Bjorn Krellner.
Diffstat (limited to 'alpine')
-rw-r--r--alpine/dispfilt.c2
-rw-r--r--alpine/osdep/alpine-splash.bmpbin712866 -> 709334 bytes
-rw-r--r--alpine/osdep/mswin.rc8
-rw-r--r--alpine/send.c2
4 files changed, 6 insertions, 6 deletions
diff --git a/alpine/dispfilt.c b/alpine/dispfilt.c
index 3c4525a0..4fdf5c1f 100644
--- a/alpine/dispfilt.c
+++ b/alpine/dispfilt.c
@@ -148,7 +148,7 @@ dfilter(char *rawcmd, STORE_S *input_so, gf_io_t output_pc, FILTLIST_S *aux_filt
if(resultf){
if(name_file_size(resultf) > 0L)
display_output_file(resultf, "Filter", NULL, DOF_BRIEF);
-
+ our_unlink(resultf);
fs_give((void **)&resultf);
}
diff --git a/alpine/osdep/alpine-splash.bmp b/alpine/osdep/alpine-splash.bmp
index 3289bc2b..3d08f04a 100644
--- a/alpine/osdep/alpine-splash.bmp
+++ b/alpine/osdep/alpine-splash.bmp
Binary files differ
diff --git a/alpine/osdep/mswin.rc b/alpine/osdep/mswin.rc
index 2769c8c3..af9440ba 100644
--- a/alpine/osdep/mswin.rc
+++ b/alpine/osdep/mswin.rc
@@ -244,8 +244,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 2,20,1,0
- PRODUCTVERSION 2,20,1,0
+ FILEVERSION 2,20,3,0
+ PRODUCTVERSION 2,20,3,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -267,12 +267,12 @@ BEGIN
#else
VALUE "FileDescription", "Alpine\0"
#endif
- VALUE "FileVersion", "2.20.1\0"
+ VALUE "FileVersion", "2.20.3\0"
VALUE "InternalName", "alpine\0"
VALUE "LegalCopyright", "Copyright 2006-2009 University of Washington, Copyright 2013-2014\0"
VALUE "OriginalFilename", "alpine.exe\0"
VALUE "ProductName", "alpine\0"
- VALUE "ProductVersion", "2.20.1\0"
+ VALUE "ProductVersion", "2.20.3\0"
END
END
BLOCK "VarFileInfo"
diff --git a/alpine/send.c b/alpine/send.c
index 2e1386d8..5725b482 100644
--- a/alpine/send.c
+++ b/alpine/send.c
@@ -5439,7 +5439,7 @@ filter_message_text(char *fcmd, ENVELOPE *outgoing, struct mail_bodystruct *body
if(resultf){
if(name_file_size(resultf) > 0L)
display_output_file(resultf, "Filter", NULL, DOF_BRIEF);
-
+ our_unlink(resultf);
fs_give((void **)&resultf);
}
else if(errstr){