Commit 825d8a78 825d8a78b9e6fd1ab3f3ab0be3ed2c779bc20636 by Sergey Poznyakoff

Version 2.2.90.

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