aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2020-12-29 15:26:51 +0200
committerSergey Poznyakoff <gray@gnu.org>2020-12-29 15:56:04 +0200
commit9b970d0599dc0402e9c99966ee357efb4fc67c02 (patch)
tree2e08926c29d4e085c7f25991c77a1939116021f7
parent660330be7a7b9600204ff6f907e1d366a80f0212 (diff)
downloadmailfromd-9b970d0599dc0402e9c99966ee357efb4fc67c02.tar.gz
mailfromd-9b970d0599dc0402e9c99966ee357efb4fc67c02.tar.bz2
Version 8.9release_8_9
* NEWS: Update. * configure.ac: Update. * doc/functions.texi (dkim_verified_signature_tag): Add missing type declaration. * tests/hdr-cap.at: Ignore X-* headers. * tests/hdr-mul.at: Likewise.
-rw-r--r--NEWS4
-rw-r--r--configure.ac3
-rw-r--r--doc/functions.texi2
-rw-r--r--tests/hdr-cap.at2
-rw-r--r--tests/hdr-mul.at2
5 files changed, 6 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 545d8049..f7d729e4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,9 @@
-Mailfromd NEWS -- history of user-visible changes. 2020-11-08
+Mailfromd NEWS -- history of user-visible changes. 2020-12-29
See the end of file for copying conditions.
Please send Mailfromd bug reports to <bug-mailfromd@gnu.org.ua>
-Version 8.8.92 (git)
+Version 8.9, 2020-12-29
* The sed function.
diff --git a/configure.ac b/configure.ac
index ce867be3..cf8678c6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,8 +16,7 @@
AC_PREREQ(2.63)
m4_define([MF_VERSION_MAJOR], 8)
-m4_define([MF_VERSION_MINOR], 8)
-m4_define([MF_VERSION_PATCH], 92)
+m4_define([MF_VERSION_MINOR], 9)
AC_INIT([mailfromd],
MF_VERSION_MAJOR.MF_VERSION_MINOR[]m4_ifdef([MF_VERSION_PATCH],.MF_VERSION_PATCH),
[bug-mailfromd@gnu.org.ua],
diff --git a/doc/functions.texi b/doc/functions.texi
index 0477e795..d0354ff8 100644
--- a/doc/functions.texi
+++ b/doc/functions.texi
@@ -5217,7 +5217,7 @@ absent, the following values are returned instead:
@end multitable
@end deftypefn
-@deftypefn {Library Function} dkim_verified_signature_tag (string @var{tag})
+@deftypefn {Library Function} string dkim_verified_signature_tag (string @var{tag})
Returns the value of tag @var{tag} from the
@samp{dkim_verified_signature} variable.
@end deftypefn
diff --git a/tests/hdr-cap.at b/tests/hdr-cap.at
index 15f14886..9953b9f6 100644
--- a/tests/hdr-cap.at
+++ b/tests/hdr-cap.at
@@ -52,7 +52,7 @@ FROM: Sergey Poznyakoff <gray@gnu.org.ua>
])
])
-AT_CHECK([sed '1d' $TESTDIR/capture.mbx],
+AT_CHECK([sed -e '1d' -e ['/^X-[A-Za-z]*:/d'] $TESTDIR/capture.mbx],
0,
[Received: foo
Received: bar
diff --git a/tests/hdr-mul.at b/tests/hdr-mul.at
index 7d31eb42..fdf87f0e 100644
--- a/tests/hdr-mul.at
+++ b/tests/hdr-mul.at
@@ -54,7 +54,7 @@ SUBJECT: Amsterdam (2)
])
])
-AT_CHECK([sed 's/^\(From <.*>\).*/\1/' $TESTDIR/capture.mbx],
+AT_CHECK([sed -e 's/^\(From <.*>\).*/\1/' -e ['/^X-[A-Za-z]*:/d'] $TESTDIR/capture.mbx],
0,
[From <gray@gnu.org.ua>
Received: foo

Return to:

Send suggestions and report system problems to the System administrator.