]> git.ipfire.org Git - thirdparty/postfix.git/commitdiff
postfix-3.0.6 v3.0.6
authorWietse Venema <wietse@porcupine.org>
Sun, 28 Aug 2016 05:00:00 +0000 (00:00 -0500)
committerViktor Dukhovni <postfix-users@dukhovni.org>
Sun, 28 Aug 2016 00:19:29 +0000 (20:19 -0400)
postfix/HISTORY
postfix/makedefs
postfix/src/global/mail_params.h
postfix/src/global/mail_version.h

index d56d40eb29e9b4525a0c5471283f7e0d2c9c8887..220e0c5acf762a1911c29d4410a80cf7f7d9f9c1 100644 (file)
@@ -21761,3 +21761,16 @@ Apologies for any names omitted.
 20160515
 
        Portability: OpenBSD 6.0. Files: makedefs, util/sys_defs.h.
+
+20160819
+
+       Bugfix (introduced: Postfix 3.0): the makedefs script ignored
+       readme_directory=pathname overrides. Fix by Todd C. Olson.
+       File: makedefs.
+
+20160821
+
+       Bugfix (introduced: Postfix 3.0): the tls_session_ticket_cipher
+       documentation says aes-256-cbc, but the implementation was
+       using aes-128-cbc (note that Postfix SMTP server and client
+       processes have a limited life time).
index 318d76db7ea16694f9ab0976ae6cca54ba156a3f..27b32492a1768da385251406a44c0d8280e70ebc 100644 (file)
@@ -942,7 +942,7 @@ html_directory_macro=DEF_HTML_DIR
 manpage_directory_macro=DEF_MANPAGE_DIR
 readme_directory_macro=DEF_README_DIR
 
-for parm_name in html_directory manpage_directory
+for parm_name in html_directory manpage_directory readme_directory
 do
     eval parm_val=\"\$$parm_name\"
     eval parm_macro=\"\$${parm_name}_macro\"
index 09753f4961a181a0a28c1a5d308b8af308a63948..481949ea8e47587539bb5c3c2b9bf1d16e713f96 100644 (file)
@@ -3183,7 +3183,7 @@ extern char *var_tls_bug_tweaks;
 extern char *var_tls_ssl_options;
 
 #define VAR_TLS_TKT_CIPHER     "tls_session_ticket_cipher"
-#define DEF_TLS_TKT_CIPHER     "aes-128-cbc"
+#define DEF_TLS_TKT_CIPHER     "aes-256-cbc"
 extern char *var_tls_tkt_cipher;
 
 #define VAR_TLS_BC_PKEY_FPRINT "tls_legacy_public_key_fingerprints"
index 964aa2b47ce0ba4cc47dc275f089b863c59fcedc..bfcaadf912a12f0e0c63c03e7f78407b86bed61d 100644 (file)
@@ -20,8 +20,8 @@
   * Patches change both the patchlevel and the release date. Snapshots have no
   * patchlevel; they change the release date only.
   */
-#define MAIL_RELEASE_DATE      "20160515"
-#define MAIL_VERSION_NUMBER    "3.0.5"
+#define MAIL_RELEASE_DATE      "20160828"
+#define MAIL_VERSION_NUMBER    "3.0.6"
 
 #ifdef SNAPSHOT
 #define MAIL_VERSION_DATE      "-" MAIL_RELEASE_DATE