aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2010-07-08 03:14:24 +0200
committerMatthias Andree <matthias.andree@gmx.de>2010-07-08 03:14:24 +0200
commite6f625bb6d4fb3b8d7ceb89893ee194f7cddf669 (patch)
tree42b78a7e4a933dc3fd4d42fa8e2ca07e5d38ff07
parentab7a6789b682eb82230c5d0c1b5cc37b3cca5628 (diff)
downloadfetchmail-e6f625bb6d4fb3b8d7ceb89893ee194f7cddf669.tar.gz
fetchmail-e6f625bb6d4fb3b8d7ceb89893ee194f7cddf669.tar.bz2
fetchmail-e6f625bb6d4fb3b8d7ceb89893ee194f7cddf669.zip
Add OpenSSL acknowledgment.
-rw-r--r--COPYING4
-rw-r--r--fetchmail.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/COPYING b/COPYING
index 4fd9d0db..db7f5a72 100644
--- a/COPYING
+++ b/COPYING
@@ -5,6 +5,10 @@ Copyright (C) 2004 Matthias Andree, Eric S. Raymond,
Copyright (C) 2005 - 2006, 2010 Sunil Shetye
Copyright (C) 2005 - 2010 Matthias Andree
+If enabled at configure/compile time, the following clause applies:
+| This product includes software developed by the OpenSSL Project
+| for use in the OpenSSL Toolkit. (http://www.openssl.org/)
+
Some older portions not explicitly mentioned above are copyrighted by
Carl E. Harris, George M. Sipe, Graham Wilson, Matthias Andree and Sunil Shetye.
diff --git a/fetchmail.c b/fetchmail.c
index e3eebfdd..e431c0ec 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -143,6 +143,10 @@ static void printcopyright(FILE *fp) {
fprintf(fp, GT_("Fetchmail comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n"
"are welcome to redistribute it under certain conditions. For details,\n"
"please see the file COPYING in the source or documentation directory.\n"));
+#ifdef SSL_ENABLE
+ /* Do not translate this */
+ fprintf(fp, "This product includes software developed by the OpenSSL Project\nfor use in the OpenSSL Toolkit. (http://www.openssl.org/)\n");
+#endif
}
const char *iana_charset;