summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-07-23 * new version 2.20.14Eduardo Chappa
2016-07-23 * various updates to documentation.Eduardo Chappa
2016-07-22 * Bug: When selecting messages while in Threaded Index Screen, someEduardo Chappa
messages other than top of threads could appear in the index, making Alpine display messages "out of the screen." The solution was to apply unview_thread to all threads.
2016-07-22 * Re-add _BSD_SOURCE, which is deprecated by gcc6. It will be fixedEduardo Chappa
later when it becomes an issue again. * Minor fix to documentation.
2016-07-13 * Add the ability to select messages by number and thread-number byEduardo Chappa
using '.' character to represent the current message/thread, and "$" to represent the last message/thread.
2016-07-13 * Bug: when moving to use realpath to resolve symbolic links, .pinercEduardo Chappa
file would not be created if it did not exist.
2016-07-09 * Update/Fix alpine.spec file to build rpm packages.Eduardo Chappa
2016-07-05 * Do not define _BSD_SOURCE but define _DEFAULT_SOURCE instead.Eduardo Chappa
2016-06-17 * Work in progress: Alpine calls non-safe functions while handling aEduardo Chappa
signal. An attempt is being made to correct this in the future. See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825772.
2016-06-15 * When messages are selected, warn the user if a message that is notEduardo Chappa
selected will be bounced, or if not all selected messages will be bounced. Suggested by Ulf-Dietrich Braumann.
2016-06-15 * Add a missing call to fclose in newsrc.c. Reported by DavidEduardo Chappa
Binderman.
2016-06-12 * Replace snprintf by sprintf in mailutil.c since Visual Studio hasEduardo Chappa
problems building when the former function in used. Reported by Ulf-Dietrich Braumann.
2016-05-30 * With the change in logic in the way passwords are saved we need toEduardo Chappa
check if the password file exists before we ask the user if we want to preserve the password for the next login.
2016-05-29 * The TAB key allows autocomplete in the Fcc field in the composer headers,Eduardo Chappa
as well as autocompletes automatically when only one possibility exists for the ^J attach command.
2016-05-29 * New version 2.20.13.Eduardo Chappa
2016-05-13 * Simplify some of the code for the new option for extra directoriesEduardo Chappa
for save of attachments or export of files.
2016-05-12 * When a filename is attached and its name is encoded, the save attachmentEduardo Chappa
command will offer to save the file in the encoded form. This might work for some users, but the save command will have a subcommand ^N to decode the file name and save the file with the decoded name.
2016-05-12 * Minor fix to documentation.Eduardo Chappa
* Add the configuration variable "default-directories", which is called "Extra Directories for Save" in the configuration screen. This variable saves a list of directories that are readily accessible for save or export of attachments. This makes it easier to save attachments in directories that are hard to navigate to, or that are accessed frequently.
2016-04-18 * Fix an error where the string "ldap " instead of "ldap" was beingEduardo Chappa
used to form a URL. Reported and fixed by Wang Kang.
2016-04-18 * Fix an error in compilation when Alpine is not built with S/MIMEEduardo Chappa
support, but it is built with password file support. Reported by Robert G. Siebeck.
2016-04-17 * Add a "dedup" command to the mailutil program. The format is asEduardo Chappa
follows: mailutil dedup MAILBOX This command will open MAILBOX and remove duplicates of messages. Two messages are duplicate of each other if they have the same message-id. If a message does not have a message-id, it is not deleted. If MAILBOX is omitted, then INBOX is assumed.
2016-03-28 * When a message is saved in the Form Letter folder, add the abilityEduardo Chappa
to save the role being used to compose such message so that settings such as the SMTP server set in the role can be used when sending such form message. Suggested and patched by Frank Doepper.
2016-03-27 * Unix-Alpine: Connect securely to a LDAP server on a secure port.Eduardo Chappa
Based on a contribution by Wang Kang.
2016-03-26 * New version 2.20.12.Eduardo Chappa
2016-03-26 * When exporting all parts of a message, if two attachments have theEduardo Chappa
same name, do not overwrite a file more than once, but instead add a counter number to the filename to make a new file that does not exist in the file system.
2016-03-25 * One more case where Alpine would not update the SETUP DIRECTORYEduardo Chappa
SERVERS screen correctly. I think I got them all now...
2016-03-25 * Small fix to SETUP DIRECTORY SERVERS screen, where Alpine would printEduardo Chappa
only a small portion of the subtitle (e.g. "Directo" instead of "Directory Server on some.server.com".)
2016-03-21 * Fix a bug that makes Alpine not wrap lines correctly in HTML messagesEduardo Chappa
when the position for wrapping is at a wide UTF-8 code point.
2016-03-19 * Bug: Crash when attempting to read a message after a bounce command.Eduardo Chappa
In order to produce a crash one needed to use the ^T subcommand and do a search in a LDAP directory. The crash is produced by changes to the text in the title bar. Reported by Heinrich Mislik in the Alpine-info list. * Add ignore size option to Alpine, which helps users deal with some servers that compute sizes incorrectly but send complete messages when users save messages from those servers.
2016-02-28 * Changes to make Alpine build when PASSFILE is not specified andEduardo Chappa
adding memory freeing calls when necessary.
2016-02-28 * Adjust the "import certificate" prompt to make it clear that theEduardo Chappa
user is sometimes asked to import a certificate and sometimes a key. * Fix a case of memory freed twice introduced in commit 4bf825141c...
2016-02-28 * Protection against deleting new key and certificate when replacing keyEduardo Chappa
that encrypts password file in case that the new key/certificate pairs have the same name as the old key/certificate.
2016-02-28 * Add the ability to change the private key and certificates usedEduardo Chappa
to encrypt a password file in the SMIME setup configuration screen.
2016-02-17 * Bug (introduced in version 2.20.9): Saving a password in the passwordEduardo Chappa
file, writes a non-secure encrypted password file until Alpine is restarted again.
2016-02-10 * Add support to c-client of special-use mailboxes for client use.Eduardo Chappa
2016-02-05 * Added corrections to the Release Notes (several misspellings.)Eduardo Chappa
Provided by Dennis Davis.
2016-02-02 * New version 2.20.11Eduardo Chappa
* Update of copyright notice * Update to release notes to indicate support of RFC 2971.
2016-02-01 * Added support for RFC 2971 - IMAP ID extension.Eduardo Chappa
2016-01-31 * Extend size of extrakeys in search menu so that there is no conflict withEduardo Chappa
expected size in modules in display.c.
2015-12-14 * S/MIME: When reading a local certificate, Alpine converts the name ofEduardo Chappa
the certificate to lowercase, which may make Alpine not be able to read such certificate. Reported by Dennis Davis.
2015-12-07 * Several changes so that Alpine will build in Windows (changeEduardo Chappa
ldap_unbind_ext to ldap_unbind and add config.wnt.h to git repository)
2015-12-05 * When the index is zoomed, broadening the search will redraw theEduardo Chappa
screen to account for the broadened search, but will not replaint the screen due to scrolling. Suggested by Holger Trapp.
2015-12-05 * Alpine will ask users if they wish to save S/MIME certificates includedEduardo Chappa
in signatures, when the option "Validate Using Certificate Store Only" is enabled. If the user does not wish to save it, validation will fail.
2015-11-18 * New version 2.20.10.Eduardo Chappa
* Fix typos in documentation (cotainer to container.) Reported by Holger Trapp. * Alpine does not remove remporary files created when adding a CA certificate to a container. Reported by Holger Trapp.
2015-11-15 * New version 2.20.10Eduardo Chappa
2015-11-15 * PC-Alpine: New configuration option "Aspell Dictionaries" allows aEduardo Chappa
user to choose the dictionary used to spell, in case the user communicates in more than one language. Examples of values for the variable are "en_US" or "de_DE", etc. Only the first 10 dictionaries are offered.
2015-11-07 * Elements of the FILE structure were used in the Windows port to saveEduardo Chappa
information about the use of a file, but the contents of that structure changed in Visual Studio 2015, so a new system had to be created to save this information, that did not depend on the contents of the FILE structure.
2015-10-24 * Crash when opening an attachment in Mac OS X 10.11.1. Reported byEduardo Chappa
Peter Koellner.
2015-10-23 * Crash in Pico when forwarding messages that contain a direction markEduardo Chappa
at the end of a line. Reported by James Mingo.
2015-09-22 * SMIME: Turn off automatic signing and encrypting of a message whenEduardo Chappa
bouncing. Suggested after a discussion with Matthias Rieber.