]> Pileus Git - ~andy/fetchmail/commitdiff
Enable SSL by default.
authorMatthias Andree <matthias.andree@gmx.de>
Tue, 16 Aug 2011 13:52:44 +0000 (15:52 +0200)
committerMatthias Andree <matthias.andree@gmx.de>
Tue, 16 Aug 2011 13:55:03 +0000 (15:55 +0200)
NEWS
configure.ac

diff --git a/NEWS b/NEWS
index 0afc87f4e7dd2860121246b690af0e7f01bf5c28..8f16e848659bc9416648d7e3f5ed0eeb36ea1f1e 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -51,6 +51,8 @@ NOTE THIS IS AN ALPHA RELEASE THAT HAS NOT BEEN THOROUGHLY TESTED!
   Contributed by Rainer Weikusat, MAD Partners Ltd./MSS GmbH.
 * The POP3 code now always uses UIDL, except if "fetchall" is in effect.
   Fixes BerliOS Bug #16172. Fixes Debian Bug#345788.
+* Fetchmail now enables SSL support by default. If this is undesired,
+  ./configure --without-ssl should help.
 
 # FEATURES ADDED
 * Fetchmail can now retrieve credentials from PWMD. This needs to be enabled at
index d645d831502742abef3725bfe7418fe4ef35205c..7b074424a65e4c0d40be3adc5c2b9c811688cc51 100644 (file)
@@ -503,7 +503,7 @@ fi
 AC_ARG_WITH(ssl,
        [  --with-ssl=[DIR]        enable SSL support using libraries in DIR],
        [with_ssl=$withval],
-       [with_ssl=no])
+       [with_ssl=yes])
 test "$with_ssl" != "no" && AC_DEFINE(SSL_ENABLE,1,Define if you want SSL support compiled in)
 
 if test "$with_ssl" = "yes"