summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/mailutils/cli.h2
-rw-r--r--libmailutils/cli/cli.c13
-rw-r--r--mail/mail.c21
3 files changed, 13 insertions, 23 deletions
diff --git a/include/mailutils/cli.h b/include/mailutils/cli.h
index c13fb3f7e..56c350e41 100644
--- a/include/mailutils/cli.h
+++ b/include/mailutils/cli.h
@@ -58,7 +58,9 @@ struct mu_cli_setup
extern const char mu_version_copyright[];
extern const char mu_general_help_text[];
+extern int mu_copyright_year;
+void mu_version_print (mu_stream_t stream);
void mu_version_hook (struct mu_parseopt *po, mu_stream_t stream);
void mu_cli (int argc, char **argv, struct mu_cli_setup *setup,
char **capa, void *data,
diff --git a/libmailutils/cli/cli.c b/libmailutils/cli/cli.c
index 948826891..cad717ecd 100644
--- a/libmailutils/cli/cli.c
+++ b/libmailutils/cli/cli.c
@@ -55,10 +55,11 @@ const char mu_version_copyright[] =
/* Do *not* mark this string for translation. %s is a copyright
symbol suitable for this locale, and %d is the copyright
year. */
- "Copyright %s 2007-2019 Free Software Foundation, inc.";
+ "Copyright %s 2007-%d Free Software Foundation, inc.";
+int mu_copyright_year = 2021;
void
-mu_version_hook (struct mu_parseopt *po, mu_stream_t stream)
+mu_version_print (mu_stream_t stream)
{
#if MU_GIT_COMMIT_DISTANCE > 0
mu_stream_printf (stream, "%s (%s) %s-%d [%s]\n",
@@ -72,7 +73,7 @@ mu_version_hook (struct mu_parseopt *po, mu_stream_t stream)
/* TRANSLATORS: Translate "(C)" to the copyright symbol
(C-in-a-circle), if this symbol is available in the user's
locale. Otherwise, do not translate "(C)"; leave it as-is. */
- mu_stream_printf (stream, mu_version_copyright, _("(C)"));
+ mu_stream_printf (stream, mu_version_copyright, _("(C)"), mu_copyright_year);
mu_stream_printf (stream, _("\
\n\
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\nThis is free software: you are free to change and redistribute it.\n\
@@ -81,6 +82,12 @@ There is NO WARRANTY, to the extent permitted by law.\n\
"));
}
+void
+mu_version_hook (struct mu_parseopt *po, mu_stream_t stream)
+{
+ mu_version_print (stream);
+}
+
const char mu_general_help_text[] =
N_("General help using GNU software: <http://www.gnu.org/gethelp/>");
diff --git a/mail/mail.c b/mail/mail.c
index 9814eb82e..69bda9e77 100644
--- a/mail/mail.c
+++ b/mail/mail.c
@@ -738,25 +738,6 @@ mail_mainloop (char *(*input) (void *, int),
int
mail_warranty (int argc MU_ARG_UNUSED, char **argv MU_ARG_UNUSED)
{
- mu_printf (
- _("GNU Mailutils -- a suite of utilities for electronic mail\n"
- "Copyright (C) 1999-2019 Free Software Foundation, Inc.\n\n"));
- mu_printf (
- _(" GNU Mailutils is free software; you can redistribute it and/or modify\n"
- " it under the terms of the GNU General Public License as published by\n"
- " the Free Software Foundation; either version 3 of the License, or\n"
- " (at your option) any later version.\n"
- "\n"
- " GNU Mailutils is distributed in the hope that it will be useful,\n"
- " but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
- " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
- " GNU General Public License for more details.\n"
- "\n"
- " You should have received a copy of the GNU General Public License along\n"
- " with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>.\n"
- "\n"
- "\n"
-));
-
+ mu_version_print (mu_strout);
return 0;
}

Return to:

Send suggestions and report system problems to the System administrator.