From: Wietse Venema Date: Thu, 31 Jan 2008 05:00:00 +0000 (-0500) Subject: postfix-2.6-20080131 X-Git-Tag: v2.6.0-RC1~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b04672271b4919c7d189bf2e3c3a626f5f3216c;p=thirdparty%2Fpostfix.git postfix-2.6-20080131 --- diff --git a/postfix/HISTORY b/postfix/HISTORY index fb457cbae..862d2f53c 100644 --- a/postfix/HISTORY +++ b/postfix/HISTORY @@ -14280,8 +14280,10 @@ Apologies for any names omitted. 20080125 - Bugfix: missing {} in the LDAP client. Victor Duchovni. - File: global/dict_ldap.c. + Bugfix: missing {} in the LDAP client broke OpenLDAP TLS. + The setting tls_require_cert=no was further broken because + Postfix used OpenLDAP incorrectly. Victor Duchovni. This + broke tls_require_cert=no File: global/dict_ldap.c. 20080126 @@ -14290,3 +14292,14 @@ Apologies for any names omitted. use since Postfix 2.1, but it was never enforced. The documentation for package maintainers has been updated accordingly. File: conf/post-install. + +20080130 + + Bugfix (introduced 20071204): wrong proxywrite process limit + in the default master.cf file. File: conf/master.cf. + +20080131 + + Bugfix (introduced 20080126): the new "do not execute + directly" test in post-install got broken during code + cleanup. File: conf/post-install. diff --git a/postfix/README_FILES/ADDRESS_VERIFICATION_README b/postfix/README_FILES/ADDRESS_VERIFICATION_README index cdb89fc6c..e27184138 100644 --- a/postfix/README_FILES/ADDRESS_VERIFICATION_README +++ b/postfix/README_FILES/ADDRESS_VERIFICATION_README @@ -245,7 +245,7 @@ NOTE 1: As of version 2.5, Postfix no longer uses root privileges when opening this file. The file should now be stored under the Postfix-owned data_directory. As a migration aid, an attempt to open the file under a non- Postfix directory is redirected to the Postfix-owned data_directory, and a -warning is logged. If you wish to continue using an pre-existing database file, +warning is logged. If you wish to continue using a pre-existing database file, move it to the data_directory, and change ownership to the account specified with the mail_owner parameter. diff --git a/postfix/conf/master.cf b/postfix/conf/master.cf index 0ec4c6604..b665952ff 100644 --- a/postfix/conf/master.cf +++ b/postfix/conf/master.cf @@ -32,7 +32,7 @@ trace unix - - n - 0 bounce verify unix - - n - 1 verify flush unix n - n 1000? 0 flush proxymap unix - - n - - proxymap -proxywrite unix - - n - - proxymap +proxywrite unix - - n - 1 proxymap smtp unix - - n - - smtp # When relaying mail as backup MX, disable fallback_relay to avoid MX loops relay unix - - n - - smtp diff --git a/postfix/conf/post-install b/postfix/conf/post-install index 2bc04a81f..833685c79 100644 --- a/postfix/conf/post-install +++ b/postfix/conf/post-install @@ -238,7 +238,7 @@ test -n "$create$upgrade_conf$first_install_reminder" || { for name in config_directory $MOST_PARAMETERS do - eval test -n \${$name} || { + eval test -n \"\${$name}\" || { echo "$0: Error: do not invoke this command directly" 1>&2 echo Re-run this command as: postfix $0 ... 1>&2 exit 1 diff --git a/postfix/html/ADDRESS_VERIFICATION_README.html b/postfix/html/ADDRESS_VERIFICATION_README.html index 09587e5c0..70c6e6f22 100644 --- a/postfix/html/ADDRESS_VERIFICATION_README.html +++ b/postfix/html/ADDRESS_VERIFICATION_README.html @@ -382,7 +382,7 @@ when opening this file. The file should now be stored under the Postfix-owned data_directory. As a migration aid, an attempt to open the file under a non-Postfix directory is redirected to the Postfix-owned data_directory, and a warning is logged. If you wish -to continue using an pre-existing database file, move it to the +to continue using a pre-existing database file, move it to the data_directory, and change ownership to the account specified with the mail_owner parameter.

diff --git a/postfix/proto/ADDRESS_VERIFICATION_README.html b/postfix/proto/ADDRESS_VERIFICATION_README.html index 861075688..f0b01d594 100644 --- a/postfix/proto/ADDRESS_VERIFICATION_README.html +++ b/postfix/proto/ADDRESS_VERIFICATION_README.html @@ -382,7 +382,7 @@ when opening this file. The file should now be stored under the Postfix-owned data_directory. As a migration aid, an attempt to open the file under a non-Postfix directory is redirected to the Postfix-owned data_directory, and a warning is logged. If you wish -to continue using an pre-existing database file, move it to the +to continue using a pre-existing database file, move it to the data_directory, and change ownership to the account specified with the mail_owner parameter.

diff --git a/postfix/src/global/mail_version.h b/postfix/src/global/mail_version.h index b3ce4e77b..44c2a6a39 100644 --- a/postfix/src/global/mail_version.h +++ b/postfix/src/global/mail_version.h @@ -20,7 +20,7 @@ * Patches change both the patchlevel and the release date. Snapshots have no * patchlevel; they change the release date only. */ -#define MAIL_RELEASE_DATE "20080127" +#define MAIL_RELEASE_DATE "20080131" #define MAIL_VERSION_NUMBER "2.6" #ifdef SNAPSHOT