From: Wietse Venema Date: Sun, 28 Aug 2016 05:00:00 +0000 (-0500) Subject: postfix-3.0.6 X-Git-Tag: v3.0.6^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=063f69da4fe1659bfa2d6ca3aaed81a4a428e572;p=thirdparty%2Fpostfix.git postfix-3.0.6 --- diff --git a/postfix/HISTORY b/postfix/HISTORY index d56d40eb2..220e0c5ac 100644 --- a/postfix/HISTORY +++ b/postfix/HISTORY @@ -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). diff --git a/postfix/makedefs b/postfix/makedefs index 318d76db7..27b32492a 100644 --- a/postfix/makedefs +++ b/postfix/makedefs @@ -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\" diff --git a/postfix/src/global/mail_params.h b/postfix/src/global/mail_params.h index 09753f496..481949ea8 100644 --- a/postfix/src/global/mail_params.h +++ b/postfix/src/global/mail_params.h @@ -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" diff --git a/postfix/src/global/mail_version.h b/postfix/src/global/mail_version.h index 964aa2b47..bfcaadf91 100644 --- a/postfix/src/global/mail_version.h +++ b/postfix/src/global/mail_version.h @@ -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