masqmail

changeset 364:72653295b75d

Enabled auth support per default
author markus schnalke <meillo@marmaro.de>
date Wed, 14 Sep 2011 12:19:02 +0200
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 diff
     1.1 --- a/INSTALL	Wed Sep 14 12:07:34 2011 +0200
     1.2 +++ b/INSTALL	Wed Sep 14 12:19:02 2011 +0200
     1.3 @@ -66,9 +66,6 @@
     1.4  prefer another location than /etc/masqmail/.
     1.5  
     1.6  
     1.7 ---enable-auth
     1.8 -enables ESMTP AUTH support (disabled by default)
     1.9 -
    1.10  --enable-ident
    1.11  enables RFC 1413 support. If you have the libident dynamic library
    1.12  installed, this will be linked, otherwise it will be statically linked
    1.13 @@ -84,6 +81,9 @@
    1.14  uses only gethostbyname() to resolve DNS names, and you cannot send
    1.15  mail without a smart host. Not recommended.
    1.16  
    1.17 +--disable-auth
    1.18 +disables ESMTP AUTH support (enabled by default)
    1.19 +
    1.20  
    1.21  --disable-debug
    1.22  disables debugging; setting it on the command line or in the
     2.1 --- a/configure	Wed Sep 14 12:07:34 2011 +0200
     2.2 +++ b/configure	Wed Sep 14 12:19:02 2011 +0200
     2.3 @@ -1353,7 +1353,7 @@
     2.4    --enable-dependency-tracking   do not reject slow dependency extractors
     2.5    --disable-resolver      disable resolver support
     2.6    --disable-debug         disable debugging
     2.7 -  --enable-auth           enable AUTH (RFC 2554) client support
     2.8 +  --disable-auth          disable AUTH (RFC 2554) client support
     2.9    --enable-ident          enable ident (RFC 1413) support
    2.10  
    2.11  Optional Packages:
    2.12 @@ -5160,6 +5160,9 @@
    2.13    enableval=$enable_auth; if test "x$enable_auth" != 'xno'; then
    2.14  		auth_enabled='yes'
    2.15  	fi
    2.16 +else
    2.17 +  auth_enabled='yes'
    2.18 +
    2.19  fi
    2.20  
    2.21  if test "x$auth_enabled" = xyes; then
     3.1 --- a/configure.ac	Wed Sep 14 12:07:34 2011 +0200
     3.2 +++ b/configure.ac	Wed Sep 14 12:19:02 2011 +0200
     3.3 @@ -122,12 +122,13 @@
     3.4  MD5_LIBS=''
     3.5  BASE64_LIBS=''
     3.6  
     3.7 -dnl auth support (default is to not use it)
     3.8 +dnl auth support (default: use it)
     3.9  AC_ARG_ENABLE(auth,
    3.10 -	[  --enable-auth           enable AUTH (RFC 2554) client support],
    3.11 +	[  --disable-auth          disable AUTH (RFC 2554) client support],
    3.12  	if test "x$enable_auth" != 'xno'; then
    3.13  		auth_enabled='yes'
    3.14  	fi,
    3.15 +	auth_enabled='yes'
    3.16  	)
    3.17  if test "x$auth_enabled" = xyes; then
    3.18  	AC_DEFINE(ENABLE_AUTH, 1, [If AUTH is enabled])
     4.1 --- a/docs/INSTALL.linux	Wed Sep 14 12:07:34 2011 +0200
     4.2 +++ b/docs/INSTALL.linux	Wed Sep 14 12:19:02 2011 +0200
     4.3 @@ -8,7 +8,7 @@
     4.4  
     4.5  	./configure --with-liblockfile
     4.6  
     4.7 -(You probably like to add `--enable-auth and --enable-ident'.)
     4.8 +(You might like to add `--enable-ident'.)
     4.9  
    4.10  You can also build your own Debian package with
    4.11  
     5.1 --- a/docs/simple-local-setup	Wed Sep 14 12:07:34 2011 +0200
     5.2 +++ b/docs/simple-local-setup	Wed Sep 14 12:19:02 2011 +0200
     5.3 @@ -18,7 +18,7 @@
     5.4  
     5.5  A common configure call would be:
     5.6  
     5.7 -    ./configure --enable-auth --enable-ident
     5.8 +    ./configure --enable-ident
     5.9  
    5.10  
    5.11  Configuration
     6.1 --- a/docs/simple-relay-setup	Wed Sep 14 12:07:34 2011 +0200
     6.2 +++ b/docs/simple-relay-setup	Wed Sep 14 12:19:02 2011 +0200
     6.3 @@ -19,7 +19,7 @@
     6.4  
     6.5  A common configure call would be:
     6.6  
     6.7 -    ./configure --enable-auth --enable-ident
     6.8 +    ./configure --enable-ident
     6.9  
    6.10  
    6.11  Configuration
     7.1 --- a/examples/example.route	Wed Sep 14 12:07:34 2011 +0200
     7.2 +++ b/examples/example.route	Wed Sep 14 12:19:02 2011 +0200
     7.3 @@ -75,7 +75,6 @@
     7.4  map_h_from_addresses = "okurth: Oliver Kurth <kurth@innominate.de>"
     7.5  
     7.6  # if your mail server outside uses the AUTH machanism, set the following.
     7.7 -# You need to compile masqmail with AUTH support (--enable-auth option for ./configure):
     7.8  # for auth_name, only 'cram-md5' and 'login' are supported.
     7.9  # see also: man 5 masqmail.route
    7.10