Version 3.2
Showing
3 changed files
with
20 additions
and
5 deletions
1 | GNU mailutils NEWS -- history of user-visible changes. 2017-01-20 | 1 | GNU mailutils NEWS -- history of user-visible changes. 2017-03-11 |
2 | Copyright (C) 2002-2017 Free Software Foundation, Inc. | 2 | Copyright (C) 2002-2017 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 | Version 3.1.91 (Git) | 8 | Version 3.2 - 2017-03-11 |
9 | 9 | ||
10 | * configuration syntax | 10 | * configuration syntax |
11 | 11 | ||
... | @@ -104,6 +104,21 @@ line sends them as attachments: | ... | @@ -104,6 +104,21 @@ line sends them as attachments: |
104 | --content-filename=mail.c --attach-fd=6 \ | 104 | --content-filename=mail.c --attach-fd=6 \ |
105 | root@example.org | 105 | root@example.org |
106 | 106 | ||
107 | See http://mailutils.org/wiki/Mail:_sending_attachments, for details. | ||
108 | |||
109 | * Bugfixes | ||
110 | |||
111 | ** Fix memory leak in mu_stream_destroy. | ||
112 | |||
113 | ** Fix handling of ambiguous command line options. | ||
114 | |||
115 | ** Fix sieve logging in the maidag utility | ||
116 | |||
117 | ** Fixes in 'Q' encoder. | ||
118 | |||
119 | Encode question mark properly; | ||
120 | Limit the length of encoded words to 75 octets, as requested by RFC 2047. | ||
121 | |||
107 | 122 | ||
108 | Version 3.1.1 - 2016-12-15 | 123 | Version 3.1.1 - 2016-12-15 |
109 | 124 | ... | ... |
... | @@ -16,7 +16,7 @@ dnl You should have received a copy of the GNU General Public License along | ... | @@ -16,7 +16,7 @@ dnl You should have received a copy of the GNU General Public License along |
16 | dnl with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>. | 16 | dnl with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>. |
17 | 17 | ||
18 | AC_PREREQ(2.63) | 18 | AC_PREREQ(2.63) |
19 | AC_INIT([GNU Mailutils], [3.1.91], [bug-mailutils@gnu.org], [mailutils], | 19 | AC_INIT([GNU Mailutils], [3.2], [bug-mailutils@gnu.org], [mailutils], |
20 | [http://mailutils.org]) | 20 | [http://mailutils.org]) |
21 | AC_CONFIG_SRCDIR([libmailutils/mailbox/mailbox.c]) | 21 | AC_CONFIG_SRCDIR([libmailutils/mailbox/mailbox.c]) |
22 | AC_CONFIG_AUX_DIR([build-aux]) | 22 | AC_CONFIG_AUX_DIR([build-aux]) | ... | ... |
... | @@ -396,9 +396,9 @@ mu_parse822_special (const char **p, const char *e, char c) | ... | @@ -396,9 +396,9 @@ mu_parse822_special (const char **p, const char *e, char c) |
396 | { | 396 | { |
397 | mu_parse822_skip_lwsp (p, e); /* not comments, they start with a special... */ | 397 | mu_parse822_skip_lwsp (p, e); /* not comments, they start with a special... */ |
398 | 398 | ||
399 | if ((*p != e) && **p == c) | 399 | if (*p != e && **p == c) |
400 | { | 400 | { |
401 | *p += 1; | 401 | ++*p; |
402 | return EOK; | 402 | return EOK; |
403 | } | 403 | } |
404 | return EPARSE; | 404 | return EPARSE; | ... | ... |
-
Please register or sign in to post a comment