]> git.ipfire.org Git - thirdparty/postfix.git/commitdiff
postfix-2.6-20080131
authorWietse Venema <wietse@porcupine.org>
Thu, 31 Jan 2008 05:00:00 +0000 (00:00 -0500)
committerViktor Dukhovni <viktor@dukhovni.org>
Tue, 5 Feb 2013 06:33:55 +0000 (06:33 +0000)
postfix/HISTORY
postfix/README_FILES/ADDRESS_VERIFICATION_README
postfix/conf/master.cf
postfix/conf/post-install
postfix/html/ADDRESS_VERIFICATION_README.html
postfix/proto/ADDRESS_VERIFICATION_README.html
postfix/src/global/mail_version.h

index fb457cbae9953d1bd24f247d1abc19593edfab20..862d2f53c691b11453b60a6a82d245db9008c416 100644 (file)
@@ -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.
index cdb89fc6c1ec8959870d3b068948b3959a80e252..e27184138eb74dbfd470406ed7c61878e0e7a9cb 100644 (file)
@@ -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.
 
index 0ec4c660478f1c77077411972562eaad2c9f1fb9..b665952ff4960df74630695fd09808a1317d2ba0 100644 (file)
@@ -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
index 2bc04a81fbcb4b1efefb701e25e9612bff3ea65b..833685c790bf5a39fac69a098ff3ad9f36968522 100644 (file)
@@ -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
index 09587e5c0b0f43984ea4fc987b3dca8b52d8ba6c..70c6e6f22a40a3cf4e318d8bcbc8d244735bfdda 100644 (file)
@@ -382,7 +382,7 @@ when opening this file. The file should now be stored under the
 Postfix-owned <a href="postconf.5.html#data_directory">data_directory</a>. As a migration aid, an attempt to
 open the file under a non-Postfix directory is redirected to the
 Postfix-owned <a href="postconf.5.html#data_directory">data_directory</a>, 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
 <a href="postconf.5.html#data_directory">data_directory</a>, and change ownership to the account specified with
 the <a href="postconf.5.html#mail_owner">mail_owner</a> parameter.  </p>
 
index 8610756888955af72f8630652896d916404393d3..f0b01d594d7601c73cede5c722c8ce6f6644effc 100644 (file)
@@ -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.  </p>
 
index b3ce4e77b5744dc80bb1c9082162f38d2cdd6958..44c2a6a395be93c4882494ce59f4cf497a7e1d13 100644 (file)
@@ -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