summaryrefslogtreecommitdiff
path: root/imap4d
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2017-01-01 15:49:56 +0200
committerSergey Poznyakoff <gray@gnu.org>2017-01-01 15:52:37 +0200
commitaa643a6cfca9736fc366237d30e264c180ed733b (patch)
treef818bc24c8dc6951b52429582117345975cd098e /imap4d
parent66f7ed9562cce859f20166f9cf0c38a018a83dbe (diff)
downloadmailutils-aa643a6cfca9736fc366237d30e264c180ed733b.tar.gz
mailutils-aa643a6cfca9736fc366237d30e264c180ed733b.tar.bz2
Happy GNU Year
Diffstat (limited to 'imap4d')
-rw-r--r--imap4d/Makefile.am2
-rw-r--r--imap4d/append.c2
-rw-r--r--imap4d/auth_gsasl.c2
-rw-r--r--imap4d/auth_gss.c2
-rw-r--r--imap4d/authenticate.c2
-rw-r--r--imap4d/bye.c2
-rw-r--r--imap4d/capability.c2
-rw-r--r--imap4d/check.c2
-rw-r--r--imap4d/close.c2
-rw-r--r--imap4d/commands.c2
-rw-r--r--imap4d/copy.c2
-rw-r--r--imap4d/create.c2
-rw-r--r--imap4d/delete.c2
-rw-r--r--imap4d/examine.c2
-rw-r--r--imap4d/expunge.c2
-rw-r--r--imap4d/fetch.c2
-rw-r--r--imap4d/id.c2
-rw-r--r--imap4d/idle.c2
-rw-r--r--imap4d/imap4d.c2
-rw-r--r--imap4d/imap4d.h2
-rw-r--r--imap4d/io.c2
-rw-r--r--imap4d/list.c2
-rw-r--r--imap4d/login.c2
-rw-r--r--imap4d/logout.c2
-rw-r--r--imap4d/lsub.c2
-rw-r--r--imap4d/namespace.c2
-rw-r--r--imap4d/noop.c2
-rw-r--r--imap4d/parsebuf.c2
-rw-r--r--imap4d/preauth.c2
-rw-r--r--imap4d/quota.c2
-rw-r--r--imap4d/rename.c2
-rw-r--r--imap4d/search.c2
-rw-r--r--imap4d/select.c2
-rw-r--r--imap4d/signal.c2
-rw-r--r--imap4d/starttls.c2
-rw-r--r--imap4d/status.c2
-rw-r--r--imap4d/store.c2
-rw-r--r--imap4d/subscribe.c2
-rw-r--r--imap4d/sync.c2
-rw-r--r--imap4d/tests/IDEF0955.at2
-rw-r--r--imap4d/tests/IDEF0956.at2
-rw-r--r--imap4d/tests/Makefile.am2
-rw-r--r--imap4d/tests/anystate.at2
-rw-r--r--imap4d/tests/append00.at2
-rw-r--r--imap4d/tests/append01.at2
-rw-r--r--imap4d/tests/atlocal.in2
-rw-r--r--imap4d/tests/close-expunge.at2
-rw-r--r--imap4d/tests/create01.at2
-rw-r--r--imap4d/tests/create02.at2
-rw-r--r--imap4d/tests/examine.at2
-rw-r--r--imap4d/tests/expunge.at2
-rw-r--r--imap4d/tests/fetch.at2
-rw-r--r--imap4d/tests/id.at2
-rw-r--r--imap4d/tests/list.at2
-rw-r--r--imap4d/tests/search.at2
-rw-r--r--imap4d/tests/select.at2
-rw-r--r--imap4d/tests/status.at2
-rw-r--r--imap4d/tests/testsuite.at2
-rw-r--r--imap4d/uid.c2
-rw-r--r--imap4d/unsubscribe.c2
-rw-r--r--imap4d/util.c2
61 files changed, 61 insertions, 61 deletions
diff --git a/imap4d/Makefile.am b/imap4d/Makefile.am
index d0f0e81a6..e62c34dfb 100644
--- a/imap4d/Makefile.am
+++ b/imap4d/Makefile.am
@@ -1,5 +1,5 @@
## This file is part of GNU Mailutils.
-## Copyright (C) 1999-2003, 2005, 2007-2012, 2014-2016 Free Software
+## Copyright (C) 1999-2003, 2005, 2007-2012, 2014-2017 Free Software
## Foundation, Inc.
##
## GNU Mailutils is free software; you can redistribute it and/or
diff --git a/imap4d/append.c b/imap4d/append.c
index 180a741d7..719a73eae 100644
--- a/imap4d/append.c
+++ b/imap4d/append.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2005-2012, 2014-2016 Free Software
+ Copyright (C) 1999, 2001, 2005-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/auth_gsasl.c b/imap4d/auth_gsasl.c
index 10f2aa62a..b8543430b 100644
--- a/imap4d/auth_gsasl.c
+++ b/imap4d/auth_gsasl.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 2003-2005, 2007-2012, 2014-2016 Free Software
+ Copyright (C) 2003-2005, 2007-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/auth_gss.c b/imap4d/auth_gss.c
index 3c5b8a49f..cc9e1de3f 100644
--- a/imap4d/auth_gss.c
+++ b/imap4d/auth_gss.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001-2004, 2007, 2009-2012, 2014-2016 Free
+ Copyright (C) 1999, 2001-2004, 2007, 2009-2012, 2014-2017 Free
Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/authenticate.c b/imap4d/authenticate.c
index 13fcf9a3e..8e5e30e95 100644
--- a/imap4d/authenticate.c
+++ b/imap4d/authenticate.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2005-2008, 2010-2012, 2014-2016 Free
+ Copyright (C) 1999, 2001, 2005-2008, 2010-2012, 2014-2017 Free
Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/bye.c b/imap4d/bye.c
index 40216bea1..78c7be49c 100644
--- a/imap4d/bye.c
+++ b/imap4d/bye.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999-2002, 2005, 2007-2012, 2014-2016 Free Software
+ Copyright (C) 1999-2002, 2005, 2007-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/capability.c b/imap4d/capability.c
index 47925fd54..448ec94ca 100644
--- a/imap4d/capability.c
+++ b/imap4d/capability.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2003, 2005, 2007-2008, 2010-2012, 2014-2016
+ Copyright (C) 1999, 2001, 2003, 2005, 2007-2008, 2010-2012, 2014-2017
Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/check.c b/imap4d/check.c
index 093419986..7d52c1af6 100644
--- a/imap4d/check.c
+++ b/imap4d/check.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2007-2008, 2010-2012, 2014-2016 Free
+ Copyright (C) 1999, 2001, 2007-2008, 2010-2012, 2014-2017 Free
Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/close.c b/imap4d/close.c
index ef2985bcc..e71d261e4 100644
--- a/imap4d/close.c
+++ b/imap4d/close.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2004-2005, 2007-2008, 2010-2012, 2014-2016
+ Copyright (C) 1999, 2001, 2004-2005, 2007-2008, 2010-2012, 2014-2017
Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/commands.c b/imap4d/commands.c
index 5e4fd96d7..697741396 100644
--- a/imap4d/commands.c
+++ b/imap4d/commands.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2003, 2007-2008, 2010-2012, 2014-2016 Free
+ Copyright (C) 1999, 2001, 2003, 2007-2008, 2010-2012, 2014-2017 Free
Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/copy.c b/imap4d/copy.c
index 4bafbcf07..82e2511f2 100644
--- a/imap4d/copy.c
+++ b/imap4d/copy.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2005, 2007-2012, 2014-2016 Free Software
+ Copyright (C) 1999, 2001, 2005, 2007-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/create.c b/imap4d/create.c
index b55d14b03..b115e1147 100644
--- a/imap4d/create.c
+++ b/imap4d/create.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2007-2012, 2014-2016 Free Software
+ Copyright (C) 1999, 2001, 2007-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/delete.c b/imap4d/delete.c
index 27ea2b46c..bbf5ae328 100644
--- a/imap4d/delete.c
+++ b/imap4d/delete.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2007-2012, 2014-2016 Free Software
+ Copyright (C) 1999, 2001, 2007-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/examine.c b/imap4d/examine.c
index b3e3185d9..c72cad9f9 100644
--- a/imap4d/examine.c
+++ b/imap4d/examine.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2007-2008, 2010-2012, 2014-2016 Free
+ Copyright (C) 1999, 2001, 2007-2008, 2010-2012, 2014-2017 Free
Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/expunge.c b/imap4d/expunge.c
index 68bad7384..49f53b19d 100644
--- a/imap4d/expunge.c
+++ b/imap4d/expunge.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2005, 2007-2008, 2010-2012, 2014-2016 Free
+ Copyright (C) 1999, 2001, 2005, 2007-2008, 2010-2012, 2014-2017 Free
Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/fetch.c b/imap4d/fetch.c
index d5d2bfbc0..f4257b820 100644
--- a/imap4d/fetch.c
+++ b/imap4d/fetch.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2005-2012, 2014-2016 Free Software
+ Copyright (C) 1999, 2001, 2005-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/id.c b/imap4d/id.c
index 77d1d8f7d..65d533783 100644
--- a/imap4d/id.c
+++ b/imap4d/id.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 2008-2012, 2014-2016 Free Software Foundation, Inc.
+ Copyright (C) 2008-2012, 2014-2017 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/imap4d/idle.c b/imap4d/idle.c
index 106c45ed3..bad3c79a3 100644
--- a/imap4d/idle.c
+++ b/imap4d/idle.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 2003, 2007-2012, 2014-2016 Free Software Foundation,
+ Copyright (C) 2003, 2007-2012, 2014-2017 Free Software Foundation,
Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/imap4d.c b/imap4d/imap4d.c
index 348e615a0..0dce6cabc 100644
--- a/imap4d/imap4d.c
+++ b/imap4d/imap4d.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001-2012, 2014-2016 Free Software Foundation,
+ Copyright (C) 1999, 2001-2012, 2014-2017 Free Software Foundation,
Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/imap4d.h b/imap4d/imap4d.h
index c08290d30..8630375fa 100644
--- a/imap4d/imap4d.h
+++ b/imap4d/imap4d.h
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001-2012, 2014-2016 Free Software Foundation,
+ Copyright (C) 1999, 2001-2012, 2014-2017 Free Software Foundation,
Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/io.c b/imap4d/io.c
index b41dd1ecc..1eaf60133 100644
--- a/imap4d/io.c
+++ b/imap4d/io.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001-2012, 2014-2016 Free Software Foundation,
+ Copyright (C) 1999, 2001-2012, 2014-2017 Free Software Foundation,
Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/list.c b/imap4d/list.c
index dda9744fd..3b55a6cea 100644
--- a/imap4d/list.c
+++ b/imap4d/list.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001-2002, 2005-2012, 2014-2016 Free Software
+ Copyright (C) 1999, 2001-2002, 2005-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/login.c b/imap4d/login.c
index 26c6a1850..f347ab9ba 100644
--- a/imap4d/login.c
+++ b/imap4d/login.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001-2002, 2006-2012, 2014-2016 Free Software
+ Copyright (C) 1999, 2001-2002, 2006-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/logout.c b/imap4d/logout.c
index f076fe7f7..cb83f7bc5 100644
--- a/imap4d/logout.c
+++ b/imap4d/logout.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2007-2008, 2010-2012, 2014-2016 Free
+ Copyright (C) 1999, 2001, 2007-2008, 2010-2012, 2014-2017 Free
Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/lsub.c b/imap4d/lsub.c
index 09cf50777..f9215379d 100644
--- a/imap4d/lsub.c
+++ b/imap4d/lsub.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2007-2012, 2014-2016 Free Software
+ Copyright (C) 1999, 2001, 2007-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/namespace.c b/imap4d/namespace.c
index e05aa132e..383bccd63 100644
--- a/imap4d/namespace.c
+++ b/imap4d/namespace.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2005, 2007-2012, 2014-2016 Free Software
+ Copyright (C) 1999, 2001, 2005, 2007-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/noop.c b/imap4d/noop.c
index 7d888ff56..1bd551cfc 100644
--- a/imap4d/noop.c
+++ b/imap4d/noop.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2007-2008, 2010-2012, 2014-2016 Free
+ Copyright (C) 1999, 2001, 2007-2008, 2010-2012, 2014-2017 Free
Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/parsebuf.c b/imap4d/parsebuf.c
index 76adcbeb7..dde800162 100644
--- a/imap4d/parsebuf.c
+++ b/imap4d/parsebuf.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 2009-2012, 2014-2016 Free Software Foundation, Inc.
+ Copyright (C) 2009-2012, 2014-2017 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/imap4d/preauth.c b/imap4d/preauth.c
index 03fed988b..309fb2148 100644
--- a/imap4d/preauth.c
+++ b/imap4d/preauth.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001-2012, 2014-2016 Free Software Foundation,
+ Copyright (C) 1999, 2001-2012, 2014-2017 Free Software Foundation,
Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/quota.c b/imap4d/quota.c
index 3c8bfc950..5ccf7d2a4 100644
--- a/imap4d/quota.c
+++ b/imap4d/quota.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001-2012, 2014-2016 Free Software Foundation,
+ Copyright (C) 1999, 2001-2012, 2014-2017 Free Software Foundation,
Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/rename.c b/imap4d/rename.c
index c551d2564..61536441d 100644
--- a/imap4d/rename.c
+++ b/imap4d/rename.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2005, 2007-2012, 2014-2016 Free Software
+ Copyright (C) 1999, 2001, 2005, 2007-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/search.c b/imap4d/search.c
index ec6ba8490..ed0334354 100644
--- a/imap4d/search.c
+++ b/imap4d/search.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001-2002, 2005, 2007-2012, 2014-2016 Free
+ Copyright (C) 1999, 2001-2002, 2005, 2007-2012, 2014-2017 Free
Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/select.c b/imap4d/select.c
index 58d3fa710..1f0759b77 100644
--- a/imap4d/select.c
+++ b/imap4d/select.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2003, 2005-2012, 2014-2016 Free Software
+ Copyright (C) 1999, 2001, 2003, 2005-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/signal.c b/imap4d/signal.c
index 2635fcfb1..074fa933d 100644
--- a/imap4d/signal.c
+++ b/imap4d/signal.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999-2002, 2007-2012, 2014-2016 Free Software
+ Copyright (C) 1999-2002, 2007-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/starttls.c b/imap4d/starttls.c
index 66309e785..6894255a1 100644
--- a/imap4d/starttls.c
+++ b/imap4d/starttls.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 2003, 2007-2012, 2014-2016 Free Software Foundation,
+ Copyright (C) 2003, 2007-2012, 2014-2017 Free Software Foundation,
Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/status.c b/imap4d/status.c
index 570e478f3..f2e85e411 100644
--- a/imap4d/status.c
+++ b/imap4d/status.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2005, 2007-2012, 2014-2016 Free Software
+ Copyright (C) 1999, 2001, 2005, 2007-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/store.c b/imap4d/store.c
index 2a0a7e7a1..7dba87399 100644
--- a/imap4d/store.c
+++ b/imap4d/store.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2005, 2007-2012, 2014-2016 Free Software
+ Copyright (C) 1999, 2001, 2005, 2007-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/subscribe.c b/imap4d/subscribe.c
index f2ecec081..8dd90afa0 100644
--- a/imap4d/subscribe.c
+++ b/imap4d/subscribe.c
@@ -1,5 +1,5 @@
/* GNU mailutils - a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2007, 2009-2012, 2014-2016 Free Software
+ Copyright (C) 1999, 2001, 2007, 2009-2012, 2014-2017 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/sync.c b/imap4d/sync.c
index 961fad15b..b0810916a 100644
--- a/imap4d/sync.c
+++ b/imap4d/sync.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001, 2005, 2007, 2009-2012, 2014-2016 Free
+ Copyright (C) 1999, 2001, 2005, 2007, 2009-2012, 2014-2017 Free
Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
diff --git a/imap4d/tests/IDEF0955.at b/imap4d/tests/IDEF0955.at
index b920a4cb8..f24f223b5 100644
--- a/imap4d/tests/IDEF0955.at
+++ b/imap4d/tests/IDEF0955.at
@@ -1,5 +1,5 @@
# This file is part of GNU Mailutils. -*- Autotest -*-
-# Copyright (C) 2011-2012, 2014-2016 Free Software Foundation, Inc.
+# Copyright (C) 2011-2012, 2014-2017 Free Software Foundation, Inc.
#
# GNU Mailutils is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
diff --git a/imap4d/tests/IDEF0956.at b/imap4d/tests/IDEF0956.at
index a68adeacb..a1c363893 100644
--- a/imap4d/tests/IDEF0956.at
+++ b/imap4d/tests/IDEF0956.at
@@ -1,5 +1,5 @@
# This file is part of GNU Mailutils. -*- Autotest -*-
-# Copyright (C) 2011-2012, 2014-2016 Free Software Foundation, Inc.
+# Copyright (C) 2011-2012, 2014-2017 Free Software Foundation, Inc.
#
# GNU Mailutils is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
diff --git a/imap4d/tests/Makefile.am b/imap4d/tests/Makefile.am
index c07440158..e3b51429b 100644
--- a/imap4d/tests/Makefile.am
+++ b/imap4d/tests/Makefile.am
@@ -1,5 +1,5 @@
# This file is part of GNU Mailutils.
-# Copyright (C) 2011-2012, 2014-2016 Free Software Foundation, Inc.
+# Copyright (C) 2011-2012, 2014-2017 Free Software Foundation, Inc.
#
# GNU Mailutils is free software; you can redi