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:
committed by
Viktor Dukhovni
parent
752dec0ed7
commit
38417607ae
@@ -13534,3 +13534,9 @@ Apologies for any names omitted.
|
||||
cleanup server would get out of sync with the milter when
|
||||
a milter replied with ACCEPT at the DATA command. Files:
|
||||
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.
|
||||
|
@@ -21,7 +21,7 @@
|
||||
* patchlevel; they change the release date only.
|
||||
*/
|
||||
#define MAIL_RELEASE_DATE "20070731"
|
||||
#define MAIL_VERSION_NUMBER "2.4.4"
|
||||
#define MAIL_VERSION_NUMBER "2.4.5"
|
||||
|
||||
#ifdef SNAPSHOT
|
||||
# define MAIL_VERSION_DATE "-" MAIL_RELEASE_DATE
|
||||
|
@@ -128,7 +128,7 @@ int vstream_tweak_tcp(VSTREAM *fp)
|
||||
*/
|
||||
#else
|
||||
if (mss > VSTREAM_BUFSIZE) {
|
||||
int nodelay = 0;
|
||||
int nodelay = 1;
|
||||
|
||||
if ((err = setsockopt(vstream_fileno(fp), IPPROTO_TCP, TCP_NODELAY,
|
||||
(char *) &nodelay, sizeof(nodelay))) < 0)
|
||||
|
Reference in New Issue
Block a user