From 20d433c77e32dc05c2accf8ab943c2a7d9738239 Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Sun, 7 Dec 2014 19:42:37 -0700 Subject: * new version 2.19.9993 * Aggregate operations allows bouncing a list of messages using a role. Suggested by Ulf-Dietrich Braumann. * Compilation error of module pith/reply.c if SMIME is not defined (as in Windows Alpine). There was a misplaced parenthesis. * Update to S/MIME to explain how to use a PKCS12 certificate in Alpine. * Fix error in compare_certs function, that would modify the name of the certificates after sorting them, and return when no certificates are given. * When replying to several messages, subject will be decoded first, and then stripped from re/fwd before they are compared to determine the subject of the replied message. * Add $(LIBINTL) to the flags to link rpdump, rpload, alpined and alpineldap because MAC OSX 10.8 x86_64 needs it. * When the download of an attachment is interrumpted, Alpine stills caches what was downloaded, making the download incomplete for subsequent calls of Alpine attempting to open the attachment. In the future, Alpine will not cache any downloaded part of the attachment when it is interrupted. --- alpine/send.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'alpine/send.c') diff --git a/alpine/send.c b/alpine/send.c index 7923d180..ebcf5789 100644 --- a/alpine/send.c +++ b/alpine/send.c @@ -5490,9 +5490,9 @@ Returns: none void phone_home(char *addr) { - char tmp[MAX_ADDRESS]; - ENVELOPE *outgoing; - BODY *body; + char tmp[MAX_ADDRESS]; + ENVELOPE *outgoing; + BODY *body; outgoing = mail_newenvelope(); if(!addr || !strindex(addr, '@')){ @@ -5523,13 +5523,13 @@ phone_home(char *addr) && ps_global->VAR_NNTP_SERVER[0][0]) so_puts((STORE_S *)body->contents.text.data, " and NNTP"); - (void)pine_simple_send(outgoing, &body, NULL,NULL,NULL,NULL, SS_NULLRP); + (void) pine_simple_send(outgoing, &body, NULL,NULL,NULL,NULL, SS_NULLRP); q_status_message(SM_ORDER, 1, 3, "Thanks for being counted!"); } else q_status_message(SM_ORDER | SM_DING, 3, 4, - "Problem creating space for message text."); + "Problem creating space for message text."); mail_free_envelope(&outgoing); pine_free_body(&body); -- cgit v1.2.3-54-g00ecf