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

postfix-2.4.5

This commit is contained in:
Wietse Venema 2007-07-31 00:00:00 -05:00 committed by Viktor Dukhovni
parent 752dec0ed7
commit 38417607ae
3 changed files with 8 additions and 2 deletions

View File

@ -13534,3 +13534,9 @@ Apologies for any names omitted.
cleanup server would get out of sync with the milter when cleanup server would get out of sync with the milter when
a milter replied with ACCEPT at the DATA command. Files: a milter replied with ACCEPT at the DATA command. Files:
cleanup/cleanup_envelope.c, smtpd/smtpd.c, milter/milters.c. cleanup/cleanup_envelope.c, smtpd/smtpd.c, milter/milters.c.
20070731
Bugfix: the loopback TCP performance workaround was ineffective
due to a wetware bit-flip during code cleanup. File:
util/vstream_tweak.c.

View File

@ -21,7 +21,7 @@
* patchlevel; they change the release date only. * patchlevel; they change the release date only.
*/ */
#define MAIL_RELEASE_DATE "20070731" #define MAIL_RELEASE_DATE "20070731"
#define MAIL_VERSION_NUMBER "2.4.4" #define MAIL_VERSION_NUMBER "2.4.5"
#ifdef SNAPSHOT #ifdef SNAPSHOT
# define MAIL_VERSION_DATE "-" MAIL_RELEASE_DATE # define MAIL_VERSION_DATE "-" MAIL_RELEASE_DATE

View File

@ -128,7 +128,7 @@ int vstream_tweak_tcp(VSTREAM *fp)
*/ */
#else #else
if (mss > VSTREAM_BUFSIZE) { if (mss > VSTREAM_BUFSIZE) {
int nodelay = 0; int nodelay = 1;
if ((err = setsockopt(vstream_fileno(fp), IPPROTO_TCP, TCP_NODELAY, if ((err = setsockopt(vstream_fileno(fp), IPPROTO_TCP, TCP_NODELAY,
(char *) &nodelay, sizeof(nodelay))) < 0) (char *) &nodelay, sizeof(nodelay))) < 0)