Commit 825d8a78 825d8a78b9e6fd1ab3f3ab0be3ed2c779bc20636 by Sergey Poznyakoff

Version 2.2.90.

1 parent 906499db
GNU mailutils NEWS -- history of user-visible changes. 2010-09-08
GNU mailutils NEWS -- history of user-visible changes. 2010-09-09
Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
Software Foundation, Inc.
See the end of file for copying conditions.
......@@ -6,6 +6,14 @@ See the end of file for copying conditions.
Please send mailutils bug reports to <bug-mailutils@gnu.org>.
Version 2.2.90 (Git)
This version is highly experimental. It features a rewrite from
scratch of the stream subsystem and other vital parts of the
framework. No documentation is available so far, please use
`git log' and the sources!
Version 2.2 - 2010-09-08
* Guile support updated to compile with Guile 1.9
......
......@@ -18,7 +18,7 @@ dnl with GNU Mailutils; if not, write to the Free Software Foundation,
dnl Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
AC_PREREQ(2.63)
AC_INIT([GNU Mailutils], [2.2], [bug-mailutils@gnu.org], [mailutils])
AC_INIT([GNU Mailutils], [2.2.90], [bug-mailutils@gnu.org], [mailutils])
AC_CONFIG_SRCDIR([mailbox/mailbox.c])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([gnits 1.11 dist-bzip2 dist-lzma dist-xz std-options silent-rules])
......
......@@ -231,9 +231,8 @@ hdr_from (struct header_call_args *args, void *data)
{
mu_header_t hdr;
if (mu_message_get_header (args->msg, &hdr))
abort ();
if (mu_header_aget_value_unfold (hdr, MU_HEADER_FROM, &from) == 0)
if (mu_message_get_header (args->msg, &hdr) == 0
&& mu_header_aget_value_unfold (hdr, MU_HEADER_FROM, &from) == 0)
{
mu_address_t address = NULL;
if (mu_address_create (&address, from) == 0)
......