aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c
index c290b7a7..fb1e6015 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -303,6 +303,16 @@ int main(int argc, char **argv)
".\n";
printf(GT_("This is fetchmail release %s"), VERSION);
fputs(features, stdout);
+#ifdef SSL_ENABLE
+#if !HAVE_DECL_TLS1_3_VERSION || defined(OPENSSL_NO_TLS1_3)
+ printf(GT_("WARNING: Your SSL/TLS library does not support TLS v1.3.\n"));
+#endif
+#ifdef LIBRESSL_VERSION_NUMBER
+ printf(GT_("WARNING: Compiled against LibreSSL, which is not a supported configuration.\n"));
+#endif
+#else
+ printf(GT_("WARNING: Compiled without SSL/TLS.\n"));
+#endif
puts("");
printcopyright(stdout);
puts("");