summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2017-03-11 10:56:20 +0200
committerSergey Poznyakoff <gray@gnu.org>2017-03-11 10:56:20 +0200
commit5e5908964cb928b45ceef5cc6cc739866a8cf382 (patch)
treebaaa600ffd12600baebdae090a897507ff93968b
parent0417f83b0dd75d26367ef2569d7f7437a6bead2a (diff)
downloadmailutils-5e5908964cb928b45ceef5cc6cc739866a8cf382.tar.gz
mailutils-5e5908964cb928b45ceef5cc6cc739866a8cf382.tar.bz2
Version 3.2
-rw-r--r--NEWS19
-rw-r--r--configure.ac2
-rw-r--r--libmailutils/address/parse822.c4
3 files changed, 20 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index d0a022e01..76ab20bd6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,11 @@
-GNU mailutils NEWS -- history of user-visible changes. 2017-01-20
+GNU mailutils NEWS -- history of user-visible changes. 2017-03-11
Copyright (C) 2002-2017 Free Software Foundation, Inc.
See the end of file for copying conditions.
Please send mailutils bug reports to <bug-mailutils@gnu.org>.
-Version 3.1.91 (Git)
+Version 3.2 - 2017-03-11
* configuration syntax
@@ -104,6 +104,21 @@ line sends them as attachments:
--content-filename=mail.c --attach-fd=6 \
root@example.org
+See http://mailutils.org/wiki/Mail:_sending_attachments, for details.
+
+* Bugfixes
+
+** Fix memory leak in mu_stream_destroy.
+
+** Fix handling of ambiguous command line options.
+
+** Fix sieve logging in the maidag utility
+
+** Fixes in 'Q' encoder.
+
+Encode question mark properly;
+Limit the length of encoded words to 75 octets, as requested by RFC 2047.
+
Version 3.1.1 - 2016-12-15
diff --git a/configure.ac b/configure.ac
index e02befd07..3c62385e6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,7 +16,7 @@ dnl You should have received a copy of the GNU General Public License along
dnl with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.63)
-AC_INIT([GNU Mailutils], [3.1.91], [bug-mailutils@gnu.org], [mailutils],
+AC_INIT([GNU Mailutils], [3.2], [bug-mailutils@gnu.org], [mailutils],
[http://mailutils.org])
AC_CONFIG_SRCDIR([libmailutils/mailbox/mailbox.c])
AC_CONFIG_AUX_DIR([build-aux])
diff --git a/libmailutils/address/parse822.c b/libmailutils/address/parse822.c
index ab3c97857..732028930 100644
--- a/libmailutils/address/parse822.c
+++ b/libmailutils/address/parse822.c
@@ -396,9 +396,9 @@ mu_parse822_special (const char **p, const char *e, char c)
{
mu_parse822_skip_lwsp (p, e); /* not comments, they start with a special... */
- if ((*p != e) && **p == c)
+ if (*p != e && **p == c)
{
- *p += 1;
+ ++*p;
return EOK;
}
return EPARSE;

Return to:

Send suggestions and report system problems to the System administrator.