summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-06-02 * New flag for XOAUTH2 authentication, which is needed to indicate thatEduardo Chappa
we are opening a stream for the first time. This is not needed for online access but for drivers that need to open/close a connection many times.
2022-05-30 * All unix (non mac) versions of Alpine will have a default password file ↵Eduardo Chappa
which will be created by default when Alpine is compiled with encryption. The default name will be .alpine.pwd, but it can be overriden with the --with-passfile option or by a default set by a linux distribution.
2022-05-29 * Improve the interface when users try to login using xoauth2 in Gmail.Eduardo Chappa
Users will be told to get a client-id and client-secret only if they do not have a client-id and client-secret that is equal to the default. If they have another client-id and client-secret that will be offered instead, and the message to get one will disappear.
2022-05-16 * Additional debug information for XOAUTH2 in the c-client side.Eduardo Chappa
2022-05-04 * Change the redirect_uri scheme for Gmail, as Google is deprecating the useEduardo Chappa
of oob. Changed to http://localhost. Users are supposed to enter the URL they see in their browser in place of the code.
2022-04-15 * Treat HTTP_BAD code as an error when trying to authenticate using XOAUTH2Eduardo Chappa
and cancel the refresh token (which will restart the authorization process) for the email account.
2022-04-05 * Update PC-Alpine binary with current fixes.Eduardo Chappa
2022-04-05 * Crash in Alpine when running a filter that moves deleted messages theEduardo Chappa
INBOX in a Gmail account. Reported by Jyrki Voutilainen.
2022-04-04 * Cancel refresh token when a code 400 is received from the server.Eduardo Chappa
* Crash in PC-Alpine when creating a mail collection and no username is indicated in the server path. Reported by Sandy Schuman.
2022-03-13 * Clarify the error message of the configure script that the requirementEduardo Chappa
of the minimum version of Alpine is for version 1.0.0c also means to install development or headers files for the current version of openssl installed in their system.
2022-03-07 * Update of the information on how to configure Alpine to use Gmail withEduardo Chappa
XOAUTH2 authentication.
2022-01-15 * Time transformations were not being done correctly in a calendar event.Eduardo Chappa
Reported by Björn Krellner.
2022-01-10 * Improvements to help text in Alpine, based on conversations withEduardo Chappa
Anton Arendt.
2021-12-29 * If a user configures the sendmail-path variable, and does not use aEduardo Chappa
global smtp-server, then Alpine will use the sendmail-path even when the user configured a smtp-server for a role. Reported by Gregory Heytings.
2021-12-27 * When the personal name of an address is encoded, and the personal nameEduardo Chappa
is surrounded by quotes, these are not removed by Alpine at the time to offer to take an address from a message to the addressbook. Reported by David Prager Branner.
2021-12-24 * Correct release notes. Based on report by Dennis Davis.Eduardo Chappa
* Correct spellings in imap/Makefile. Contributed by Gerald Pfeifer. * Change comparison of ps_global->inbox_name from strcmp to strucmp in do_broach_folder. * When an invitation does not have a timezone in the date of the event, but the date is in GMT, adjust the date to local time.
2021-12-04 * Add default flow to each XOAUTH2 configuration.Eduardo Chappa
2021-12-04 * In addition to the previous commit, make sure to suggest the correctEduardo Chappa
flow when the flow is configured incorrectly.
2021-12-04 * Only "Authorize" and "Device" are values accepted for the flow duringEduardo Chappa
initial authentication using XOAUTH2. A warning message (and error) will be seen by the user in case the user attempts a different flow.
2021-12-03 * If new mail has arrived when a user is closing a mailbox, Alpine willEduardo Chappa
also announce how many new messages have arrived. Suggested by Chime Hart.
2021-12-02 * New version 2.25.1Eduardo Chappa
2021-12-02 * Crash when saving multiple messages to a folder in the unix format.Eduardo Chappa
Reported by Hisashi T Fujinaka.
2021-11-26 * Add the "LOGOUT" command to the list of commands that can beEduardo Chappa
automatically interrupted in case the connection becomes unstable during that command and Alpine times out its connection to the server. * Add a correction to documentation provided by Holger Trapp.
2021-11-26 * When saving to a folder in the unix format, Alpine parses the destinationEduardo Chappa
folder to assign uids to all messages in the folder. When the destination folder is large this could significantly slow down alpine. The purpose of parsing the folder is to make sure that when saving the messages to it, the uids assigned to the messages upon saving are available so that the COPYUID and APPENDUID calls in the imap server return the uids of the saved messages. This data is returned through a callback function which Alpine does not define (but the imap server does), so we will force the parsing of the destination folder when the callback is needed, since the assignment of uids does not need to be done until opening the folder, and that can be delayed. Fix based on a patch submitted to the alpine-info list by Chris Caputo.
2021-11-24 * Clear up warnings and update documentation.Eduardo Chappa
2021-11-23 * To protect the privacy of a user, generate the domain-part of aEduardo Chappa
message-id using the domain part of the from address that a user is willing to disclose.
2021-11-23 * In some systems the size of a directory is the sum of the sizes ofEduardo Chappa
all files contained in it, so sbuf.st_size might be too large and the malloc() might fail with error ENOMEM. Since this is just the list of files, and not the contents of the files, let us start with a small amount and resize when necessary. Reported by Sebasting Knust.
2021-11-22 * Rename the hmac() function in imap/src/c-client/hmac.c to c_client_hmacEduardo Chappa
to avoid redefinition, as some systems include the hmac() function in stdlib.h. Reported by Hisashi Fujinaka.
2021-11-21 * Fix some compilation warnings. It is possible these fixes breakEduardo Chappa
compilation in other compilers as there might be differences in the prototypes of the scandir function. This might need to be solved by making sensible changes to the configure script, so more work might be needed to complete this project.
2021-11-21 * Add missing file m4/m4_ax_prog_cc_for_build.m4, and update filesEduardo Chappa
config.guess and config.sub.
2021-11-21 * Support for code_verifier and code_challenge when generating aEduardo Chappa
refresh token and access token in Outlook using the S256 method and plain method (only in the Authorize flow. The Device flow does not seem to be affected by this modification.)
2021-11-21 * Support for code_verifier and code_challenge when generating aEduardo Chappa
refresh token and access token in Gmail using the S256 method and plain method.
2021-11-20 * Addition of support for SHA1 to SHA512 needed for future additions toEduardo Chappa
Alpine. The code is taken and adapted from code in RFC 4634.
2021-11-16Merge branch 'master' of http://repo.or.cz/alpineEduardo Chappa
2021-11-16 * Replace fgrep and grep -F and egrep by grep -E as these have beenEduardo Chappa
deprecated. Patch submitted by Ville Skyttä.
2021-11-14 * Replace fgre and grep -F and egrep by grep -E as these have beenEduardo Chappa
deprecated. Patch submitted by Ville Skyttä.
2021-11-05 * Crash when invoking Alpine from the command line and an attempt to authorizeEduardo Chappa
alpine to use XOAUTH2 is done. Alpine crashes because of a missing optional parameter -xoauth2-flow and because no screen has been configured yet. Reported by Baron Fujimoto.
2021-11-01 * When Alpine is trying to decide which client-id to choose it used to limitEduardo Chappa
its choices the ps_global->vars[V_XOAUTH2_INFO].current_val.l. Now it will also use ps_global->vars[V_XOAUTH2_INFO].main_user_val.l. In addition some of the code in alpine/xoauth2conf.c was moved to the c-client library.
2021-10-30 * Improvements to the screen that allows a user to select the client-id whenEduardo Chappa
a user attempts to login to a server and more than one client-id is available for that server. In this case additional information is given: The method to use (device or authorize), a user id that uses the suggested client-id or a report that the client-id has not been used.
2021-10-27 * Contributions by Thomas Uhle:Eduardo Chappa
. Add support to the LDAP attribute "userCertificate"; . Move voiceMailTelephoneNumber from the TCL side to ldap_translate; . XOAUTH2 state generator changes format specifier from %x to %02x; . Clear compiler warnings and correct spelling in documentation. . Web Alpine will not attempt to continue a postponed message if the postponed-msgs folder is empty.
2021-10-24 * Improvements to Alpine help for xoauth2 and corrections to the menuEduardo Chappa
for authorization using the device method.
2021-10-23 * Update help file to remove netscape and substitute that by firefox.Eduardo Chappa
2021-10-23 * When alpine is authenticating using the XOAUTH2 method, servers willEduardo Chappa
close the connection if the user takes too long to set it up. Closing the connection might confuse a user, making them believe that the process failed, just to find the next time they open the folder that alll is working well. With this modification alpine will silently reopen the connection to the server after the server closes it, and not report that the folder was closed, making it look as if the connection was never closed and reopened.
2021-10-22 * Fix the type of some flags for openssl from int to long.Eduardo Chappa
2021-10-17 * Exiting the authroization screen for XOAUTH2 makes alpine cancel theEduardo Chappa
authentication, so update the variable user_says_cancel to reflect this.
2021-10-10 * Alpine might delete all passwords from the password file if theEduardo Chappa
password file is not unlocked by cancellation, or the authentication for an XOAUTH2 server is cancelled, or the password of an account is changed.
2021-10-08 * Corrections and improvements to the help text provided by Dennis David.Eduardo Chappa
2021-10-07 * Some servers do not allow the Drafts folder to be removed, even whenEduardo Chappa
it is empty. Alpine, however, assumes that if the folder exists, it must contain a draft message. This joint collaboration with Thomas Uhle modifies alpine to not to attempt to continue a draft message if the draft folder is emptty.
2021-10-07 * Corrections and improvements to the help text provided by Dennis David.Eduardo Chappa
2021-10-05 * Update of the link to the privacy policy.Eduardo Chappa