From 89ed901b851d9e70d308687c95c9e424bab32313c0dbd92173dca4ad95b589ac Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Mon, 22 Aug 2011 13:28:08 +0000 Subject: [PATCH 1/3] Updating link to change in openSUSE:Factory/postfix revision 77.0 OBS-URL: https://build.opensuse.org/package/show/server:mail/postfix?expand=0&rev=efbc29a3034204f1934d524da96d4e75 --- postfix.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postfix.spec b/postfix.spec index 732f475..964bb2f 100644 --- a/postfix.spec +++ b/postfix.spec @@ -21,7 +21,7 @@ Name: postfix Summary: A fast, secure, and flexible mailer Version: 2.8.4 -Release: 5 +Release: 7 License: IBM Public License .. Group: Productivity/Networking/Email/Servers Url: http://www.postfix.org/ From bd7f2dd9eef0c3b1e082e59ac32b0654e45627ef1ad8bc5b3d97ef2a74f6526b Mon Sep 17 00:00:00 2001 From: Peter Varkoly Date: Tue, 6 Sep 2011 15:35:26 +0000 Subject: [PATCH 2/3] Accepting request 81113 from home:computersalat:devel:mail update to 2.8.5 OBS-URL: https://build.opensuse.org/request/show/81113 OBS-URL: https://build.opensuse.org/package/show/server:mail/postfix?expand=0&rev=96 --- postfix-2.8.4.tar.bz2 | 3 --- postfix-2.8.5.tar.bz2 | 3 +++ postfix.changes | 8 ++++++++ postfix.spec | 7 ++----- 4 files changed, 13 insertions(+), 8 deletions(-) delete mode 100644 postfix-2.8.4.tar.bz2 create mode 100644 postfix-2.8.5.tar.bz2 diff --git a/postfix-2.8.4.tar.bz2 b/postfix-2.8.4.tar.bz2 deleted file mode 100644 index b2a3cb7..0000000 --- a/postfix-2.8.4.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8af7d9b3ca823b638779bf7c10707eb02bdaa9d9d68abd8e25c82f2c939e880f -size 2638385 diff --git a/postfix-2.8.5.tar.bz2 b/postfix-2.8.5.tar.bz2 new file mode 100644 index 0000000..70f62e2 --- /dev/null +++ b/postfix-2.8.5.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:456781cdf6e956e320f15c246286070825ac8b50560623aaa5fe67337af444ab +size 2638256 diff --git a/postfix.changes b/postfix.changes index 4b28317..f6a0e8e 100644 --- a/postfix.changes +++ b/postfix.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Tue Sep 6 14:49:47 UTC 2011 - chris@computersalat.de + +- update to 2.8.5 + * Bugfix: allow for Milters that send an SMTP server reply + without RFC 3463 enhanced status code. Reported by Vladimir + Vassiliev. File: milter/milter8.c. + ------------------------------------------------------------------- Mon Aug 22 09:31:02 UTC 2011 - varkoly@novell.com diff --git a/postfix.spec b/postfix.spec index 964bb2f..7745441 100644 --- a/postfix.spec +++ b/postfix.spec @@ -15,13 +15,10 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # -# norootforbuild - - Name: postfix Summary: A fast, secure, and flexible mailer -Version: 2.8.4 -Release: 7 +Version: 2.8.5 +Release: 1 License: IBM Public License .. Group: Productivity/Networking/Email/Servers Url: http://www.postfix.org/ From e86b4cb85a1c57ee22e663cc183ecebe0d7c6b8c0b97412c19a063943d14ef0b Mon Sep 17 00:00:00 2001 From: Peter Varkoly Date: Mon, 10 Oct 2011 06:27:24 +0000 Subject: [PATCH 3/3] Accepting request 87151 from home:elvigia:branches:server:mail - Use SSL_MODE_RELEASE_BUFFERS if available, see SSL_CTX_set_mode man page and http://www.imperialviolet.org/2010/06/25/overclocking-ssl.html for the full details. OBS-URL: https://build.opensuse.org/request/show/87151 OBS-URL: https://build.opensuse.org/package/show/server:mail/postfix?expand=0&rev=97 --- postfix-2.8.5-ssl-release-buffers.patch | 29 +++++++++++++++++++++++++ postfix.changes | 8 +++++++ postfix.spec | 4 ++++ 3 files changed, 41 insertions(+) create mode 100644 postfix-2.8.5-ssl-release-buffers.patch diff --git a/postfix-2.8.5-ssl-release-buffers.patch b/postfix-2.8.5-ssl-release-buffers.patch new file mode 100644 index 0000000..e47e1b6 --- /dev/null +++ b/postfix-2.8.5-ssl-release-buffers.patch @@ -0,0 +1,29 @@ +--- src/tls/tls_client.c.orig ++++ src/tls/tls_client.c +@@ -372,6 +372,12 @@ TLS_APPL_STATE *tls_client_init(const TL + return (0); + } + ++ /* Keep memory usage as low as possible */ ++ ++#ifdef SSL_MODE_RELEASE_BUFFERS ++ SSL_CTX_set_mode(client_ctx, SSL_MODE_RELEASE_BUFFERS); ++#endif ++ + /* + * See the verify callback in tls_verify.c + */ +--- src/tls/tls_server.c.orig ++++ src/tls/tls_server.c +@@ -381,6 +381,11 @@ TLS_APPL_STATE *tls_server_init(const TL + tls_print_errors(); + return (0); + } ++ ++ /* Keep memory usage as low as possible */ ++#ifdef SSL_MODE_RELEASE_BUFFERS ++ SSL_CTX_set_mode(server_ctx, SSL_MODE_RELEASE_BUFFERS); ++#endif + + /* + * See the verify callback in tls_verify.c diff --git a/postfix.changes b/postfix.changes index f6a0e8e..7488339 100644 --- a/postfix.changes +++ b/postfix.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Sun Oct 9 04:30:54 UTC 2011 - crrodriguez@opensuse.org + + - Use SSL_MODE_RELEASE_BUFFERS if available, see + SSL_CTX_set_mode man page and + http://www.imperialviolet.org/2010/06/25/overclocking-ssl.html + for the full details. + ------------------------------------------------------------------- Tue Sep 6 14:49:47 UTC 2011 - chris@computersalat.de diff --git a/postfix.spec b/postfix.spec index 7745441..c038d5f 100644 --- a/postfix.spec +++ b/postfix.spec @@ -15,6 +15,8 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + + Name: postfix Summary: A fast, secure, and flexible mailer Version: 2.8.5 @@ -36,6 +38,7 @@ Patch10: %{name}-2.8.3-main.cf.patch Patch11: %{name}-2.8.3-master.cf.patch Patch12: %{name}-2.8.3-post-install.patch Patch20: %{name}-vda-v10-2.8.3.patch +Patch21: postfix-2.8.5-ssl-release-buffers.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: %insserv_prereq %fillup_prereq PreReq: /usr/bin/getent @@ -145,6 +148,7 @@ PostgreSQL. %patch11 -p1 %patch12 -p1 %patch20 -p1 +%patch21 # --------------------------------------------------------------------------- %build