summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-05-21 * Add the "g" option to the select command that works in IMAPEduardo Chappa
servers that implement the X-GM-EXT-1 capability (such as the one offered by Gmail.) This allows users to do selection in Alpine as if they were doing a search in the web interface for Gmail.
2018-05-21 * Nothing to see here, this is just reformatting of the code toEduardo Chappa
make it easier to find functions when I need to do so.
2018-05-20 * Update git.conf and git.guess following the directions fromEduardo Chappa
https://www.gnu.org/software/gettext/manual/html_node/config_002eguess.html. Suggested by Matias Fonzo.
2018-05-20 * Move freeing for some SSL memory until after all connections areEduardo Chappa
closed. * A message could fail to verify its signature even if the certificate was saved when the message was open. Based on a report by David Woodhouse to the RedHat bugzilla system.
2018-05-19 * Clear history when closing alpine, for commands that keep it.Eduardo Chappa
* Reversing the clearing of the rmap memory.
2018-05-18 * Release memory of a conversion table to UTF-8, if this was created byEduardo Chappa
us. * Some distributions of OpenSSL do not define ERR_free_strings and EVP_cleanup, so we only execute them when defined. Reported by Erich Eckner.
2018-05-13 * For a calendar entry with method PUBLISH, we show all entries in the ↵Eduardo Chappa
calendar. When "More Details" is selected for each individual event, the description of that entry is shown only. When the calendar is opened from the view attachment list screen, all entries will be shown. Mske sure there are no memory leaks. * Reverse some of the changes to make valgrind happy, as this may make Alpine crash by using memory that was released.
2018-05-13 * More changes to make Valgrind happy. Work in progress.Eduardo Chappa
2018-05-04 * Update of alpine.exe to the latest bits.Eduardo Chappa
2018-05-04 * Quell remaining warnings in the compilation of Alpine in VisualEduardo Chappa
Studio 2017. * Crash for calendars that contain a RRULE, due to insufficient memory allocated. Reported by Ulf-Dietrich Braumann.
2018-05-02 * Modified module pith/ical.c because it would not build with Visual ↵Eduardo Chappa
Studio 2008. Reported by Ulf-Dietrich Braumann. * Quell some warnings in the compilation of Alpine in Visual Studion 2017.
2018-05-02 * Changes to make Valgrind happy. Work in progress.Eduardo Chappa
2018-04-27 * Add test for ca-bundle.crt for systems that provide it.Eduardo Chappa
* Add %libresslflags% to the set of extracflagsnq in the kerberos build of PC-Alpine. This adds S/MIME support to that build. Fixed by Ulf-Dietrich Braumann.
2018-04-21 * If verification of a signed message fails due to an error in verifyingEduardo Chappa
a certificate (as opposed to the message is corrupt) retry at most two more times to get the data out using the PKCS7_verify function, and let the user know about the error.
2018-04-21 * The list of public certificates is freed before it is reused whenEduardo Chappa
a signature fails to verify. This causes Alpine to crash. Patch submitted by Linus Torvalds.
2018-04-19 * Replace body.c by body.obj in pith/makefile.wnt to fixEduardo Chappa
compilation error. Reported by Ulf-Dietrich Braumann.
2018-04-18 * Fix compilation errors in Windows to include files pith/ical.c andEduardo Chappa
pith/body.c in pith/makefile.wnt. Reported by Ulf-Dietrich Braumann.
2018-03-09 * Some locales do not have a string for AM or PM (e.g. de_DE) whichEduardo Chappa
makes some displays of dates look wrong. In the case that a locale does not have a string for AM or PM, the time in 24 hours format is printed. Reported by Holger Trapp. * Add the time zone to the display of dates (this is the value of the TZID parameter.) * Display the value of the DTSTAMP in the "[More Details]" link. The DTSTAMP field contains information on when the calendar object was created. Suggested by Holger Trapp.
2018-03-08 * Change the definition of some definitions of some enum types fromEduardo Chappa
Boolean to _Boolean, and Duration to _Duration, as these conflict with some predefined constants in Mac Sierra. Reported by Ed James. * Fix some compiler warnings in Mac Sierra. Reported by Ed James.
2018-02-26 * New version 2.21.999Eduardo Chappa
* rewrite of some code in pith/ical.c to make sure function prototypes are correct. * Add a separator line to the calendar entry in case, the calendar is sent as the main body of the message.
2018-02-24Merge branch 'ical'Eduardo Chappa
2018-02-24 * remove for now files ical.c and ical.h until we get to implement aEduardo Chappa
calendar.
2018-02-12 * Crash when the body of a calendar is empty. Reported by StefanEduardo Chappa
Mueller.
2018-02-07 * Change in type of icu[6] variable in pith/ical.c from char to unsigned charEduardo Chappa
to handle UTF-8.
2018-02-03 * tcp debug can be enabled using -d tcp or -d tcpdebug. I had to do thisEduardo Chappa
because I kept writing -d tcpdebug instead of -d tcp.
2018-01-28 * Different systems implement strncpy and memmove in different ways.Eduardo Chappa
Some add trailing nulls, some don't. We tie off the forward subject at the location where it should end. Reported by Ferdinand Goldman.
2018-01-27 * Crash in forward_subject function, in the memmove function, whichEduardo Chappa
was moving memory from allocated areas. Reported by Hisashi T Fujinaka and Ferdinand Goldmann.
2018-01-26 * If a calendar entry has an entry that is not encoded in UTF-8,Eduardo Chappa
Alpine fails to parse that specific field, and may assign a value that uses unallocated memory, making Alpine crash when quitting and freeing that memory. Reported by Stefan Mueller.
2018-01-21 * If the directory where Alpine saves the certificates if empty,Eduardo Chappa
alpine would not create a self-signed certificate to encrypt the password file. Reported in comp.mail.pine by mechanic.
2018-01-14 * Change to imap4r1.c to ignore text after a reply to a STATUSEduardo Chappa
command. The Exchange server adds a white space (US-ASCII 32) at the end of the reply to a STATUS command, making the parser fail, and ignoring the reply of the STATUS command.
2018-01-09 * Change call from strncpy to memmove in pith/reply.c, in theEduardo Chappa
forward_subject function, as this causes problems with overlapping memory. The problem exists in slackware 12.4. Reported by Rich Shepard.
2018-01-08 * Make sure handles to see details of events are visible regardlessEduardo Chappa
of if the feature for activating handles in attachments is enabled or not.
2018-01-07 * Redefine TLSv1_1_client_method and TLSv1_2_client_methodEduardo Chappa
to TLS_client_methodto when compiling Alpine with OpenSSL 1.1.
2017-12-24 * A few fixes to ical.c and mailview.c to avoid memory leaks, andEduardo Chappa
add support for encodings other than quoted-printable and base64.
2017-12-24 * If the calendar invitation is part of the body of a message insteadEduardo Chappa
of an attachment, Alpine would crash. Reported by Stefan Mueller. * In the previous situation, if a DESCRIPTION is encoded in quoted printable, it needs to be decoded twice (once as part of the calendar onvitation and another as part of the DESCRIPTION text, so when decoding we need to decode quoted-printable, then remove escapes characters, then decode quoted-printable and transform \r\n to \n. Whew!)
2017-12-22 * Fix parsing of date for DTSTART and DTEND. The parser only recognizedEduardo Chappa
DATE-TIME format, now it recognizes DATE format. Reported by Holger Trapp. * Add escape parser to event location (switch "\," to "," etc.) * Start work to support reply of invitations, but then I realize that I need to start work in sending event invitations before I do that, so I will.
2017-12-14 * Add smime.c and smkeys.c to pith/makefile.wnt, and update alpine.exe.Eduardo Chappa
2017-12-14temporary commit while I update masterEduardo Chappa
2017-12-10Initial commit for branch icalEduardo Chappa
2017-12-09 * A little bit more work on the repository. We do not commit filesEduardo Chappa
generated by the configure script.
2017-12-04 * New version 2.21.99Eduardo Chappa
* The online repo does not mimic the root local directory from which it is created. This is an attempt to fix this. This caused the problem that kerberos was not working with the bytes on the repo, but it would work on the root which created it. Reported by Holger Trapp.
2017-12-02 * Actually add alpine.exe to the repositoty.Eduardo Chappa
2017-12-02 * Add /usr/local to add automatic support for ldap in Freebsd,Eduardo Chappa
in case the user has ldap installed.
2017-12-02 * Update documentation to reflect that there was a change in theEduardo Chappa
main website of distribution of Alpine.
2017-12-02 * Add binaries pico.exe, mailutil.exe, rpload.exe andd rpdump.exeEduardo Chappa
(alpine.exe had already been added in the previous commit.)
2017-12-01 * PC-Alpine builds with LibreSSL and supports S/MIME.Eduardo Chappa
2017-11-22 * Add "remove password" command to the management screen for theEduardo Chappa
password file encryption key. This allows users to use their password file without entering a master password.
2017-11-21 * Completed the inclusion of the "95" patch submitted by Helmut Grohne.Eduardo Chappa
See Bug 876164 in Debian at https://bugs.debian.org/876164. Added m4/m4_ax_prog_cc_for_build.m4 macro.
2017-11-21 * Add --with-date-stamp and --with-host-stamp to modify the datestamp[]Eduardo Chappa
and hoststamp[] default variables when building Alpine.
2017-11-20 * Remove bell characted (\007) from status messages in Pico. This makesEduardo Chappa
it possible to translate them.