mirror of
https://github.com/vdukhovni/postfix
synced 2025-08-22 09:57:34 +00:00
postfix-2.10-20120627
This commit is contained in:
parent
6fa85acc3b
commit
77e88b517e
@ -17859,3 +17859,9 @@ Apologies for any names omitted.
|
||||
|
||||
Cleanup: don't clobber errno when logging a problem.
|
||||
File util/msg_output.c.
|
||||
|
||||
20120627
|
||||
|
||||
Bugfix (introduced: 20120531-617): in the postscreen module
|
||||
for HAproxy sypport, a VSTREAM buffer size request was not
|
||||
LP64-clean. File: postscreen/postscreen_haproxy.c.
|
||||
|
@ -666,7 +666,7 @@ CCARGS="$CCARGS -DSNAPSHOT"
|
||||
|
||||
# Non-production: needs thorough testing, or major changes are still
|
||||
# needed before the code stabilizes.
|
||||
CCARGS="$CCARGS -DNONPROD"
|
||||
#CCARGS="$CCARGS -DNONPROD"
|
||||
|
||||
sed 's/ / /g' <<EOF
|
||||
SYSTYPE = $SYSTYPE
|
||||
|
@ -20,7 +20,7 @@
|
||||
* Patches change both the patchlevel and the release date. Snapshots have no
|
||||
* patchlevel; they change the release date only.
|
||||
*/
|
||||
#define MAIL_RELEASE_DATE "20120621"
|
||||
#define MAIL_RELEASE_DATE "20120627"
|
||||
#define MAIL_VERSION_NUMBER "2.10"
|
||||
|
||||
#ifdef SNAPSHOT
|
||||
|
@ -145,7 +145,7 @@ static void psc_endpt_haproxy_event(int event, char *context)
|
||||
PSC_CLEAR_EVENT_REQUEST(vstream_fileno(state->stream),
|
||||
psc_endpt_haproxy_event, context);
|
||||
vstream_control(state->stream,
|
||||
VSTREAM_CTL_BUFSIZE, VSTREAM_BUFSIZE,
|
||||
VSTREAM_CTL_BUFSIZE, (ssize_t) VSTREAM_BUFSIZE,
|
||||
VSTREAM_CTL_END);
|
||||
state->notify(status, state->stream,
|
||||
&smtp_client_addr, &smtp_client_port,
|
||||
|
Loading…
x
Reference in New Issue
Block a user