2
0
mirror of https://github.com/vdukhovni/postfix synced 2025-08-30 13:48:06 +00:00

postfix-2.4.10

This commit is contained in:
Wietse Venema
2009-01-03 00:00:00 -05:00
committed by Viktor Dukhovni
parent 61fae4f061
commit 5e391ee0a6
3 changed files with 14 additions and 3 deletions

View File

@@ -13248,7 +13248,7 @@ Apologies for any names omitted.
cleanup/cleanup_final.c, cleanup/cleanup_bounce.c, cleanup/cleanup_final.c, cleanup/cleanup_bounce.c,
cleanup/cleanup_api.c. cleanup/cleanup_api.c.
20050217 20070217
Streamline the compile time selection of event handling Streamline the compile time selection of event handling
styles, replacing multiple on/off macros by just one styles, replacing multiple on/off macros by just one
@@ -13657,3 +13657,9 @@ Apologies for any names omitted.
implement a denial of service attack on Postfix. Data implement a denial of service attack on Postfix. Data
confidentiality and integrity are not affected. File: confidentiality and integrity are not affected. File:
util/events.c. util/events.c.
20081203
Cleanup: adjust the VSTREAM buffer strategy when reusing
an SMTP connection with a large TCP MSS value. File:
smtp/smtp_reuse.c.

View File

@@ -20,8 +20,8 @@
* Patches change both the patchlevel and the release date. Snapshots have no * Patches change both the patchlevel and the release date. Snapshots have no
* patchlevel; they change the release date only. * patchlevel; they change the release date only.
*/ */
#define MAIL_RELEASE_DATE "20080902" #define MAIL_RELEASE_DATE "20090103"
#define MAIL_VERSION_NUMBER "2.4.9" #define MAIL_VERSION_NUMBER "2.4.10"
#ifdef SNAPSHOT #ifdef SNAPSHOT
# define MAIL_VERSION_DATE "-" MAIL_RELEASE_DATE # define MAIL_VERSION_DATE "-" MAIL_RELEASE_DATE

View File

@@ -213,6 +213,11 @@ static SMTP_SESSION *smtp_reuse_common(SMTP_STATE *state, int fd,
return (state->session = 0); return (state->session = 0);
} }
/*
* Avoid poor performance when TCP MSS > VSTREAM_BUFSIZE.
*/
vstream_tweak_sock(session->stream);
/* /*
* Update the list of used cached addresses. * Update the list of used cached addresses.
*/ */