Accepting request 87391 from server:mail

update to 2.8.5

OBS-URL: https://build.opensuse.org/request/show/87391
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postfix?expand=0&rev=78
This commit is contained in:
Lars Vogdt 2011-10-11 15:16:36 +00:00 committed by Git OBS Bridge
commit 0825a8e98f
5 changed files with 52 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8af7d9b3ca823b638779bf7c10707eb02bdaa9d9d68abd8e25c82f2c939e880f
size 2638385

View File

@ -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

3
postfix-2.8.5.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:456781cdf6e956e320f15c246286070825ac8b50560623aaa5fe67337af444ab
size 2638256

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
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
- 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

View File

@ -15,13 +15,12 @@
# 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/
@ -39,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
@ -148,6 +148,7 @@ PostgreSQL.
%patch11 -p1
%patch12 -p1
%patch20 -p1
%patch21
# ---------------------------------------------------------------------------
%build