Commit 8e3dc37d 8e3dc37d0f94cba5a45dd8a4bf52bec133231460 by Sergey Poznyakoff

Update

1 parent 96607147
1 2006-12-15 Sergey Poznyakoff <gray@gnu.org.ua>
2
3 * configure.ac: Require at least version 2.60 of autoconf
4 * include/mailutils/stream.h (MU_STREAM_READY_EX): New define
5 * mail.local/main.c: Allow to be run from console by a
6 non-privileged user (useful with fetchmail)
7 * mailbox/mutil.c (mu_fd_wait): Handle MU_STREAM_READY_EX
8 * mailbox/sendmail.c (sendmail_send_message): Failing waitpid is
9 not an error if errno==ECHILD (the calling program might have
10 ignored SIGCHLD).
11
12 2006-11-13 Sergey Poznyakoff <gray@gnu.org.ua>
13
14 * configure.ac: Fix creation of MU_LTLIBOBJS. Patch submitted by
15 Kevin Buckley and Kenji Miyake
16 * include/mailutils/stream.h (MU_STREAM_READY_EX): New define
17 * mailbox/mutil.c (mu_fd_wait): Handle MU_STREAM_READY_EX
18 * mail.local/main.c
19
1 2006-10-30 Sergey Poznyakoff <gray@gnu.org.ua> 20 2006-10-30 Sergey Poznyakoff <gray@gnu.org.ua>
2 21
3 * configure.ac, NEWS: Raise version number to 1.1 22 * configure.ac, NEWS: Raise version number to 1.1
......
1 GNU mailutils NEWS -- history of user-visible changes. 2006-10-30 1 GNU mailutils NEWS -- history of user-visible changes. 2006-12-15
2 Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 2 Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
3 See the end of file for copying conditions. 3 See the end of file for copying conditions.
4 4
5 Please send mailutils bug reports to <bug-mailutils@gnu.org>. 5 Please send mailutils bug reports to <bug-mailutils@gnu.org>.
6 6
7 7
8
9 * mu_stream_wait and mu_fd_wait allow to wait for exceptional conditions.
10 * mail.local can be run by a non-privileged user. Thus, it can be used with
11 `fetchmail' and similar utilities.
12
13
8 Version 1.1: 14 Version 1.1:
9 15
10 * mail: Implement ^ and $ commands 16 * mail: Implement ^ and $ commands
...@@ -596,4 +602,8 @@ Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. ...@@ -596,4 +602,8 @@ Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
596 Local variables: 602 Local variables:
597 mode: outline 603 mode: outline
598 paragraph-separate: "[ ]*$" 604 paragraph-separate: "[ ]*$"
605 eval: (add-hook 'write-file-hooks 'time-stamp)
606 time-stamp-start: "changes. "
607 time-stamp-format: "%:y-%02m-%02d"
608 time-stamp-end: "\n"
599 end: 609 end:
......