diff -u postfix-2.9.6/debian/changelog postfix-2.9.6/debian/changelog --- postfix-2.9.6/debian/changelog +++ postfix-2.9.6/debian/changelog @@ -1,3 +1,10 @@ +postfix (2.9.6-1~12.04.2) precise; urgency=medium + + * src/tls/tls_server.c: disable session tickets to fix a compatibility + issue with the openssl version in Ubuntu 12.04. (LP: #1356843) + + -- Marc Deslauriers Fri, 15 Aug 2014 14:48:13 -0400 + postfix (2.9.6-1~12.04.1) precise-proposed; urgency=low * New upstream micro-version release (LP: #1117761) only in patch2: unchanged: --- postfix-2.9.6.orig/src/tls/tls_server.c +++ postfix-2.9.6/src/tls/tls_server.c @@ -395,6 +395,9 @@ /* * Protocol work-arounds, OpenSSL version dependent. */ +#ifdef SSL_OP_NO_TICKET + off |= SSL_OP_NO_TICKET; +#endif off |= tls_bug_bits(); SSL_CTX_set_options(server_ctx, off);