summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2007-10-12 07:52:08 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2007-10-12 07:52:08 +0000
commit1181f094e065a5f3b72ca9628e8d779917e5d6bc (patch)
treea06ac4714c1a92a9e6715436f38007e027803cee
parentafe261ea835f6f439ae1ed75a841884780895ad1 (diff)
downloadmailutils-1181f094e065a5f3b72ca9628e8d779917e5d6bc.tar.gz
mailutils-1181f094e065a5f3b72ca9628e8d779917e5d6bc.tar.bz2
Update
-rw-r--r--ChangeLog1
-rw-r--r--NEWS9
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0356636c9..45bbf8fc3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,26 +1,27 @@
12007-10-12 Sergey Poznyakoff <gray@gnu.org.ua> 12007-10-12 Sergey Poznyakoff <gray@gnu.org.ua>
2 2
3 * NEWS: Update
3 * mailbox/url.c (url_parse0): The notation proto:///file means 4 * mailbox/url.c (url_parse0): The notation proto:///file means
4 absolute file name. 5 absolute file name.
5 * mailbox/testsuite/Urls: Likewise 6 * mailbox/testsuite/Urls: Likewise
6 7
72007-09-04 Sergey Poznyakoff <gray@gnu.org.ua> 82007-09-04 Sergey Poznyakoff <gray@gnu.org.ua>
8 9
9 * README: Reword yesterdays changing by pointing to the 10 * README: Reword yesterdays changing by pointing to the
10 documentation, instead of the raw texi file. 11 documentation, instead of the raw texi file.
11 * doc/texinfo/Makefile.am (master-menu, untabify, final): New 12 * doc/texinfo/Makefile.am (master-menu, untabify, final): New
12 goals. 13 goals.
13 * doc/texinfo/mastermenu.el, doc/texinfo/untabify.el: New files 14 * doc/texinfo/mastermenu.el, doc/texinfo/untabify.el: New files
14 * doc/texinfo/mailutils.texi: Rebuild master menu. 15 * doc/texinfo/mailutils.texi: Rebuild master menu.
15 16
162007-09-03 Darel Henman <dhenman@gmail.com> 172007-09-03 Darel Henman <dhenman@gmail.com>
17 18
18 * README: Editted text in README file related to the 19 * README: Editted text in README file related to the
19 -enable-mh-utils option. This was to correct a reference from 20 -enable-mh-utils option. This was to correct a reference from
20 a now non-existent mh README file to the ..doc/texinfo/mh-mh.texi file. 21 a now non-existent mh README file to the ..doc/texinfo/mh-mh.texi file.
21 22
22 23
232007-08-27 Sergey Poznyakoff <gray@gnu.org.ua> 242007-08-27 Sergey Poznyakoff <gray@gnu.org.ua>
24 25
25 * config/mailutils-config.c (lib_descr): Add mailer. 26 * config/mailutils-config.c (lib_descr): Add mailer.
26 * doc/texinfo/programs.texi (Loader Flags): Update 27 * doc/texinfo/programs.texi (Loader Flags): Update
diff --git a/NEWS b/NEWS
index 48b1fa1f1..4fff2eac9 100644
--- a/NEWS
+++ b/NEWS
@@ -1,64 +1,71 @@
1GNU mailutils NEWS -- history of user-visible changes. 2007-07-05 1GNU mailutils NEWS -- history of user-visible changes. 2007-10-12
2Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. 2Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
3See the end of file for copying conditions. 3See the end of file for copying conditions.
4 4
5Please send mailutils bug reports to <bug-mailutils@gnu.org>. 5Please send mailutils bug reports to <bug-mailutils@gnu.org>.
6 6
7 7
8Version 1.2.1: 8Version 1.2.1:
9 9
10* New `aget' and `sget' accessors for mu_url_t 10* New `aget' and `sget' accessors for mu_url_t
11 11
12The following new accessors are provided: 12The following new accessors are provided:
13 13
14extern int mu_url_sget_scheme (const mu_url_t, const char **); 14extern int mu_url_sget_scheme (const mu_url_t, const char **);
15extern int mu_url_aget_scheme (const mu_url_t, char **); 15extern int mu_url_aget_scheme (const mu_url_t, char **);
16 16
17extern int mu_url_sget_user (const mu_url_t, const char **); 17extern int mu_url_sget_user (const mu_url_t, const char **);
18extern int mu_url_aget_user (const mu_url_t, char **); 18extern int mu_url_aget_user (const mu_url_t, char **);
19 19
20extern int mu_url_sget_passwd (const mu_url_t, const char **); 20extern int mu_url_sget_passwd (const mu_url_t, const char **);
21extern int mu_url_aget_passwd (const mu_url_t, char **); 21extern int mu_url_aget_passwd (const mu_url_t, char **);
22 22
23extern int mu_url_sget_auth (const mu_url_t, const char **); 23extern int mu_url_sget_auth (const mu_url_t, const char **);
24extern int mu_url_aget_auth (const mu_url_t, char **); 24extern int mu_url_aget_auth (const mu_url_t, char **);
25 25
26extern int mu_url_sget_host (const mu_url_t, const char **); 26extern int mu_url_sget_host (const mu_url_t, const char **);
27extern int mu_url_aget_host (const mu_url_t, char **); 27extern int mu_url_aget_host (const mu_url_t, char **);
28 28
29extern int mu_url_sget_path (const mu_url_t, const char **); 29extern int mu_url_sget_path (const mu_url_t, const char **);
30extern int mu_url_aget_path (const mu_url_t, char **); 30extern int mu_url_aget_path (const mu_url_t, char **);
31 31
32extern int mu_url_sget_query (const mu_url_t, const char **); 32extern int mu_url_sget_query (const mu_url_t, const char **);
33extern int mu_url_aget_query (const mu_url_t, char **); 33extern int mu_url_aget_query (const mu_url_t, char **);
34 34
35* Incompatible change in mu_url_get_.* return value 35* Incompatible change in mu_url_get_.* return value
36 36
37Any mu_url_get_.* accessors return MU_ERR_ENOENT if the corresponding 37Any mu_url_get_.* accessors return MU_ERR_ENOENT if the corresponding
38field is not present in the object. Previous versions in that case 38field is not present in the object. Previous versions in that case
39returned 0 and stored empty string in the output buffer. 39returned 0 and stored empty string in the output buffer.
40 40
41* Fixed parsing of URLs similar to file:///a/b.
42
43It is parsed as an absolute file name `a/b'.
44
45Previous versions incorrectly understood such an URL as `a/b'
46(relative file name).
47
41 48
42Version 1.2: 49Version 1.2:
43 50
44* GPLv3 51* GPLv3
45 52
46The programs in this release are licensed under the GNU General Public License 53The programs in this release are licensed under the GNU General Public License
47version 3. The libraries are covered by the GNU Lesser General Public License 54version 3. The libraries are covered by the GNU Lesser General Public License
48version 3. 55version 3.
49 56
50* `libmailbox' library 57* `libmailbox' library
51 58
52** mu_stream_wait and mu_fd_wait allow to wait for exceptional conditions. 59** mu_stream_wait and mu_fd_wait allow to wait for exceptional conditions.
53 60
54** maildir and mh repositories are created if MU_STREAM_CREAT flag is supplied. 61** maildir and mh repositories are created if MU_STREAM_CREAT flag is supplied.
55 62
56** Fix coredump in argcv, which was triggered by input line consisting of 63** Fix coredump in argcv, which was triggered by input line consisting of
57a single double-quote character. 64a single double-quote character.
58 65
59** Fix inconsistency in decoding MIME messages: the CRLF preceding the 66** Fix inconsistency in decoding MIME messages: the CRLF preceding the
60encapsulation line is conceptually attached to the boundary, as 67encapsulation line is conceptually attached to the boundary, as
61requested by RFC 1521. 68requested by RFC 1521.
62 69
63** Three kinds of accessors. 70** Three kinds of accessors.
64 71

Return to:

Send suggestions and report system problems to the System administrator.