2
0
mirror of https://github.com/vdukhovni/postfix synced 2025-08-28 04:37:56 +00:00

postfix-2.8-20100603

This commit is contained in:
Wietse Venema 2010-06-03 00:00:00 -05:00 committed by Viktor Dukhovni
parent 9b6f945a4e
commit 31ff4331c2
10 changed files with 15 additions and 9 deletions

View File

@ -15811,7 +15811,7 @@ Apologies for any names omitted.
20100601 20100601
Feature: Postfix LDAP client support for RFC 2255 LDAP URLs. Cleanup: Postfix LDAP client support for RFC 2255 LDAP URLs.
Victor Duchovni. Files: proto/ldap_table global/dict_ldap.c. Victor Duchovni. Files: proto/ldap_table global/dict_ldap.c.
Safety: Postfix processes log a warning when a matchlist Safety: Postfix processes log a warning when a matchlist

View File

@ -20,7 +20,7 @@ POSTCAT(1) POSTCAT(1)
By default, <a href="postcat.1.html"><b>postcat</b>(1)</a> shows the envelope and message con- By default, <a href="postcat.1.html"><b>postcat</b>(1)</a> shows the envelope and message con-
tent, as if the options <b>-beh</b> were specified. To view mes- tent, as if the options <b>-beh</b> were specified. To view mes-
sage headers only, specify <b>-bh</b> (Postfix 2.7 and later). sage content only, specify <b>-bh</b> (Postfix 2.7 and later).
Options: Options:

View File

@ -6735,6 +6735,8 @@ the <a href="dnsblog.8.html">dnsblog(8)</a> daemon will query these domains with
of non-whitelisted <a href="postscreen.8.html">postscreen(8)</a> clients. Specify a list of domain of non-whitelisted <a href="postscreen.8.html">postscreen(8)</a> clients. Specify a list of domain
names, separated by comma or whitespace. </p> names, separated by comma or whitespace. </p>
<p> This feature is available in Postfix 2.8. </p>
</DD> </DD>

View File

@ -421,10 +421,10 @@ ReliantUNIX-?.5.43) SYSTYPE=ReliantUnix543
[1-6].*) CCARGS="$CCARGS -DNO_IPV6";; [1-6].*) CCARGS="$CCARGS -DNO_IPV6";;
*) CCARGS="$CCARGS -DBIND_8_COMPAT -DNO_NETINFO";; *) CCARGS="$CCARGS -DBIND_8_COMPAT -DNO_NETINFO";;
esac esac
# Darwin 10.3.0 no longer has <arpa/nameser8_compat.h>. # Darwin 10.3.0 no longer has <nameser8_compat.h>.
case $RELEASE in case $RELEASE in
?.*) CCARGS="$CCARGS -DRESOLVE_H_NEEDS_NAMESER8_COMPAT_H";; ?.*) CCARGS="$CCARGS -DRESOLVE_H_NEEDS_NAMESER8_COMPAT_H";;
*) CCARGS="$CCARGS -DRESOLVE_H_NEEDS_NAMESER_COMPAT_H";; *) CCARGS="$CCARGS -DRESOLVE_H_NEEDS_ARPA_NAMESER_COMPAT_H";;
esac esac
# kqueue and/or poll are broken up to and including MacOS X 10.5 # kqueue and/or poll are broken up to and including MacOS X 10.5
CCARGS="$CCARGS -DNO_KQUEUE" CCARGS="$CCARGS -DNO_KQUEUE"

View File

@ -20,7 +20,7 @@ standard input.
By default, \fBpostcat\fR(1) shows the envelope and message By default, \fBpostcat\fR(1) shows the envelope and message
content, as if the options \fB-beh\fR were specified. To content, as if the options \fB-beh\fR were specified. To
view message headers only, specify \fB-bh\fR (Postfix 2.7 view message content only, specify \fB-bh\fR (Postfix 2.7
and later). and later).
Options: Options:

View File

@ -3787,6 +3787,8 @@ Optional list of DNS blocklist domains. When the list is non-enpty,
the \fBdnsblog\fR(8) daemon will query these domains with the IP addresses the \fBdnsblog\fR(8) daemon will query these domains with the IP addresses
of non-whitelisted \fBpostscreen\fR(8) clients. Specify a list of domain of non-whitelisted \fBpostscreen\fR(8) clients. Specify a list of domain
names, separated by comma or whitespace. names, separated by comma or whitespace.
.PP
This feature is available in Postfix 2.8.
.SH postscreen_greet_action (default: continue) .SH postscreen_greet_action (default: continue)
The action that \fBpostscreen\fR(8) takes when an SMTP client speaks The action that \fBpostscreen\fR(8) takes when an SMTP client speaks
before its turn within the time specified with the postscreen_greet_wait before its turn within the time specified with the postscreen_greet_wait

View File

@ -12570,6 +12570,8 @@ the dnsblog(8) daemon will query these domains with the IP addresses
of non-whitelisted postscreen(8) clients. Specify a list of domain of non-whitelisted postscreen(8) clients. Specify a list of domain
names, separated by comma or whitespace. </p> names, separated by comma or whitespace. </p>
<p> This feature is available in Postfix 2.8. </p>
%PARAM postscreen_dnsbl_action continue %PARAM postscreen_dnsbl_action continue
<p>The action that postscreen(8) takes when an SMTP client is listed <p>The action that postscreen(8) takes when an SMTP client is listed

View File

@ -22,8 +22,8 @@
#ifdef RESOLVE_H_NEEDS_NAMESER8_COMPAT_H #ifdef RESOLVE_H_NEEDS_NAMESER8_COMPAT_H
#include <nameser8_compat.h> #include <nameser8_compat.h>
#endif #endif
#ifdef RESOLVE_H_NEEDS_NAMESER_COMPAT_H #ifdef RESOLVE_H_NEEDS_ARPA_NAMESER_COMPAT_H
#include <nameser_compat.h> #include <arpa/nameser_compat.h>
#endif #endif
#include <resolv.h> #include <resolv.h>

View File

@ -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 "20100601" #define MAIL_RELEASE_DATE "20100603"
#define MAIL_VERSION_NUMBER "2.8" #define MAIL_VERSION_NUMBER "2.8"
#ifdef SNAPSHOT #ifdef SNAPSHOT

View File

@ -14,7 +14,7 @@
/* /*
/* By default, \fBpostcat\fR(1) shows the envelope and message /* By default, \fBpostcat\fR(1) shows the envelope and message
/* content, as if the options \fB-beh\fR were specified. To /* content, as if the options \fB-beh\fR were specified. To
/* view message headers only, specify \fB-bh\fR (Postfix 2.7 /* view message content only, specify \fB-bh\fR (Postfix 2.7
/* and later). /* and later).
/* /*
/* Options: /* Options: