mirror of
https://github.com/vdukhovni/postfix
synced 2025-08-22 09:57:34 +00:00
postfix-2.8-20100603
This commit is contained in:
parent
9b6f945a4e
commit
31ff4331c2
@ -15811,7 +15811,7 @@ Apologies for any names omitted.
|
||||
|
||||
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.
|
||||
|
||||
Safety: Postfix processes log a warning when a matchlist
|
||||
|
@ -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-
|
||||
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:
|
||||
|
||||
|
@ -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
|
||||
names, separated by comma or whitespace. </p>
|
||||
|
||||
<p> This feature is available in Postfix 2.8. </p>
|
||||
|
||||
|
||||
</DD>
|
||||
|
||||
|
@ -421,10 +421,10 @@ ReliantUNIX-?.5.43) SYSTYPE=ReliantUnix543
|
||||
[1-6].*) CCARGS="$CCARGS -DNO_IPV6";;
|
||||
*) CCARGS="$CCARGS -DBIND_8_COMPAT -DNO_NETINFO";;
|
||||
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
|
||||
?.*) 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
|
||||
# kqueue and/or poll are broken up to and including MacOS X 10.5
|
||||
CCARGS="$CCARGS -DNO_KQUEUE"
|
||||
|
@ -20,7 +20,7 @@ standard input.
|
||||
|
||||
By default, \fBpostcat\fR(1) shows the envelope and message
|
||||
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).
|
||||
|
||||
Options:
|
||||
|
@ -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
|
||||
of non-whitelisted \fBpostscreen\fR(8) clients. Specify a list of domain
|
||||
names, separated by comma or whitespace.
|
||||
.PP
|
||||
This feature is available in Postfix 2.8.
|
||||
.SH postscreen_greet_action (default: continue)
|
||||
The action that \fBpostscreen\fR(8) takes when an SMTP client speaks
|
||||
before its turn within the time specified with the postscreen_greet_wait
|
||||
|
@ -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
|
||||
names, separated by comma or whitespace. </p>
|
||||
|
||||
<p> This feature is available in Postfix 2.8. </p>
|
||||
|
||||
%PARAM postscreen_dnsbl_action continue
|
||||
|
||||
<p>The action that postscreen(8) takes when an SMTP client is listed
|
||||
|
@ -22,8 +22,8 @@
|
||||
#ifdef RESOLVE_H_NEEDS_NAMESER8_COMPAT_H
|
||||
#include <nameser8_compat.h>
|
||||
#endif
|
||||
#ifdef RESOLVE_H_NEEDS_NAMESER_COMPAT_H
|
||||
#include <nameser_compat.h>
|
||||
#ifdef RESOLVE_H_NEEDS_ARPA_NAMESER_COMPAT_H
|
||||
#include <arpa/nameser_compat.h>
|
||||
#endif
|
||||
#include <resolv.h>
|
||||
|
||||
|
@ -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 "20100601"
|
||||
#define MAIL_RELEASE_DATE "20100603"
|
||||
#define MAIL_VERSION_NUMBER "2.8"
|
||||
|
||||
#ifdef SNAPSHOT
|
||||
|
@ -14,7 +14,7 @@
|
||||
/*
|
||||
/* By default, \fBpostcat\fR(1) shows the envelope and message
|
||||
/* 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).
|
||||
/*
|
||||
/* Options:
|
||||
|
Loading…
x
Reference in New Issue
Block a user