mirror of
https://github.com/vdukhovni/postfix
synced 2025-08-25 03:18:41 +00:00
postfix-2.8-20101007
This commit is contained in:
parent
acd3f112c8
commit
aa4db80cf9
@ -16072,3 +16072,7 @@ Apologies for any names omitted.
|
|||||||
will no longer result in repeated delivery to other mailing
|
will no longer result in repeated delivery to other mailing
|
||||||
list members. Specify "reset_owner_alias = yes" for the
|
list members. Specify "reset_owner_alias = yes" for the
|
||||||
older behavior. File: local/alias.c.
|
older behavior. File: local/alias.c.
|
||||||
|
|
||||||
|
20101007
|
||||||
|
|
||||||
|
Bugfix (introduced: 2100923): duplicate "PASS OLD" logging.
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
* 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 "20101006"
|
#define MAIL_RELEASE_DATE "20101007"
|
||||||
#define MAIL_VERSION_NUMBER "2.8"
|
#define MAIL_VERSION_NUMBER "2.8"
|
||||||
|
|
||||||
#ifdef SNAPSHOT
|
#ifdef SNAPSHOT
|
||||||
|
@ -101,7 +101,8 @@ void ps_conclude(PS_STATE *state)
|
|||||||
/*
|
/*
|
||||||
* Log our final blessing when all unfinished tests were completed.
|
* Log our final blessing when all unfinished tests were completed.
|
||||||
*/
|
*/
|
||||||
if ((state->flags & PS_STATE_MASK_ANY_PASS) ==
|
if ((state->flags & PS_STATE_MASK_ANY_PASS) != 0
|
||||||
|
&& (state->flags & PS_STATE_MASK_ANY_PASS) ==
|
||||||
PS_STATE_FLAGS_TODO_TO_PASS(state->flags & PS_STATE_MASK_ANY_TODO))
|
PS_STATE_FLAGS_TODO_TO_PASS(state->flags & PS_STATE_MASK_ANY_TODO))
|
||||||
msg_info("PASS %s %s", (state->flags & PS_STATE_FLAG_NEW) == 0 ?
|
msg_info("PASS %s %s", (state->flags & PS_STATE_FLAG_NEW) == 0 ?
|
||||||
"OLD" : "NEW", state->smtp_client_addr);
|
"OLD" : "NEW", state->smtp_client_addr);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user