# HG changeset patch # User markus schnalke # Date 1315995542 -7200 # Node ID 72653295b75d6151832cd7177fcab716c3041194 # Parent 02bc0331e390b1e912a6bf2776305a7576de5320 Enabled auth support per default diff -r 02bc0331e390 -r 72653295b75d INSTALL --- 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 diff -r 02bc0331e390 -r 72653295b75d configure --- 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 diff -r 02bc0331e390 -r 72653295b75d configure.ac --- 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]) diff -r 02bc0331e390 -r 72653295b75d docs/INSTALL.linux --- 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 diff -r 02bc0331e390 -r 72653295b75d docs/simple-local-setup --- 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 diff -r 02bc0331e390 -r 72653295b75d docs/simple-relay-setup --- 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 diff -r 02bc0331e390 -r 72653295b75d examples/example.route --- 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 " # 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