aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--configure.ac3
2 files changed, 5 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 626fabb2..8d719dea 100644
--- a/NEWS
+++ b/NEWS
@@ -113,6 +113,9 @@ fetchmail-6.3.22 (not yet released):
* The Python-related Makefile.am parts were simplified to avoid an automake
1.11.X bug around noinst_PYTHON, Automake Bug #10995.
+* Configuring fetchmail without SSL now triggers a configure warning,
+ and asks the user to consider running configure --with-ssl.
+
# WORKAROUND
* Some servers, notably Zimbra, return A1234 987 FETCH () in response to
a header request, in the face of message corruption. fetchmail now treats
diff --git a/configure.ac b/configure.ac
index 5bc25fb0..56a60b0e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -796,7 +796,8 @@ then
dnl XXX FIXME: use pkg-config if available!
AC_DEFINE(SSL_ENABLE)
else
- AC_MSG_NOTICE(Disabling SSL support.)
+ AC_MSG_WARN(Disabling SSL support.)
+ AC_MSG_WARN(Consider re-running configure --with-ssl.)
fi
case "$LIBS" in *-lssl*)