changeset 364:72653295b75d

Enabled auth support per default
author markus schnalke <meillo@marmaro.de>
date Wed, 14 Sep 2011 12:19:02 +0200 (2011-09-14)
parents 02bc0331e390
children 934a223e4ee8
files INSTALL configure configure.ac docs/INSTALL.linux docs/simple-local-setup docs/simple-relay-setup examples/example.route
diffstat 7 files changed, 13 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/INSTALL	Wed Sep 14 12:07:34 2011 +0200
+++ b/INSTALL	Wed Sep 14 12:19:02 2011 +0200
@@ -66,9 +66,6 @@
 prefer another location than /etc/masqmail/.
 
 
---enable-auth
-enables ESMTP AUTH support (disabled by default)
-
 --enable-ident
 enables RFC 1413 support. If you have the libident dynamic library
 installed, this will be linked, otherwise it will be statically linked
@@ -84,6 +81,9 @@
 uses only gethostbyname() to resolve DNS names, and you cannot send
 mail without a smart host. Not recommended.
 
+--disable-auth
+disables ESMTP AUTH support (enabled by default)
+
 
 --disable-debug
 disables debugging; setting it on the command line or in the
--- a/configure	Wed Sep 14 12:07:34 2011 +0200
+++ b/configure	Wed Sep 14 12:19:02 2011 +0200
@@ -1353,7 +1353,7 @@
   --enable-dependency-tracking   do not reject slow dependency extractors
   --disable-resolver      disable resolver support
   --disable-debug         disable debugging
-  --enable-auth           enable AUTH (RFC 2554) client support
+  --disable-auth          disable AUTH (RFC 2554) client support
   --enable-ident          enable ident (RFC 1413) support
 
 Optional Packages:
@@ -5160,6 +5160,9 @@
   enableval=$enable_auth; if test "x$enable_auth" != 'xno'; then
 		auth_enabled='yes'
 	fi
+else
+  auth_enabled='yes'
+
 fi
 
 if test "x$auth_enabled" = xyes; then
--- a/configure.ac	Wed Sep 14 12:07:34 2011 +0200
+++ b/configure.ac	Wed Sep 14 12:19:02 2011 +0200
@@ -122,12 +122,13 @@
 MD5_LIBS=''
 BASE64_LIBS=''
 
-dnl auth support (default is to not use it)
+dnl auth support (default: use it)
 AC_ARG_ENABLE(auth,
-	[  --enable-auth           enable AUTH (RFC 2554) client support],
+	[  --disable-auth          disable AUTH (RFC 2554) client support],
 	if test "x$enable_auth" != 'xno'; then
 		auth_enabled='yes'
 	fi,
+	auth_enabled='yes'
 	)
 if test "x$auth_enabled" = xyes; then
 	AC_DEFINE(ENABLE_AUTH, 1, [If AUTH is enabled])
--- a/docs/INSTALL.linux	Wed Sep 14 12:07:34 2011 +0200
+++ b/docs/INSTALL.linux	Wed Sep 14 12:19:02 2011 +0200
@@ -8,7 +8,7 @@
 
 	./configure --with-liblockfile
 
-(You probably like to add `--enable-auth and --enable-ident'.)
+(You might like to add `--enable-ident'.)
 
 You can also build your own Debian package with
 
--- a/docs/simple-local-setup	Wed Sep 14 12:07:34 2011 +0200
+++ b/docs/simple-local-setup	Wed Sep 14 12:19:02 2011 +0200
@@ -18,7 +18,7 @@
 
 A common configure call would be:
 
-    ./configure --enable-auth --enable-ident
+    ./configure --enable-ident
 
 
 Configuration
--- a/docs/simple-relay-setup	Wed Sep 14 12:07:34 2011 +0200
+++ b/docs/simple-relay-setup	Wed Sep 14 12:19:02 2011 +0200
@@ -19,7 +19,7 @@
 
 A common configure call would be:
 
-    ./configure --enable-auth --enable-ident
+    ./configure --enable-ident
 
 
 Configuration
--- a/examples/example.route	Wed Sep 14 12:07:34 2011 +0200
+++ b/examples/example.route	Wed Sep 14 12:19:02 2011 +0200
@@ -75,7 +75,6 @@
 map_h_from_addresses = "okurth: Oliver Kurth <kurth@innominate.de>"
 
 # if your mail server outside uses the AUTH machanism, set the following.
-# You need to compile masqmail with AUTH support (--enable-auth option for ./configure):
 # for auth_name, only 'cram-md5' and 'login' are supported.
 # see also: man 5 masqmail.route