Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
825d8a78
...
825d8a78b9e6fd1ab3f3ab0be3ed2c779bc20636
authored
2010-09-10 00:11:59 +0300
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Version 2.2.90.
1 parent
906499db
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
5 deletions
NEWS
configure.ac
mail/from.c
NEWS
View file @
825d8a7
GNU mailutils NEWS -- history of user-visible changes. 2010-09-0
8
GNU mailutils NEWS -- history of user-visible changes. 2010-09-0
9
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
...
...
configure.ac
View file @
825d8a7
...
...
@@ -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])
...
...
mail/from.c
View file @
825d8a7
...
...
@@ -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
)
...
...
Please
register
or
sign in
to post a comment