fix conflicts

This commit is contained in:
rpaulo 2006-08-27 00:47:08 +00:00
parent a41b242909
commit 955d5b2d54
6 changed files with 25 additions and 8 deletions

View File

@ -11,6 +11,13 @@ instead, a new snapshot is released.
The mail_release_date configuration parameter (format: yyyymmdd) The mail_release_date configuration parameter (format: yyyymmdd)
specifies the release date of a stable release or snapshot release. specifies the release date of a stable release or snapshot release.
Incompatible changes with Postfix 2.3.3
---------------------------------------
Postfix no longer announces its name in delivery status notifications.
Users believe that Wietse provides a free help desk service that
solves all their email problems.
Critical notes Critical notes
-------------- --------------

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# $NetBSD: post-install,v 1.9 2006/07/19 01:35:39 rpaulo Exp $ # $NetBSD: post-install,v 1.10 2006/08/27 00:47:08 rpaulo Exp $
# #
# To view the formatted manual page of this file, type: # To view the formatted manual page of this file, type:
@ -645,6 +645,7 @@ EOF
ed $config_directory/master.cf <<EOF || exit 1 ed $config_directory/master.cf <<EOF || exit 1
/^tlsmgr[ ]*fifo[ ]/ /^tlsmgr[ ]*fifo[ ]/
s/fifo/unix/ s/fifo/unix/
s/[0-9][0-9]*/&?/
p p
w w
q q

View File

@ -122,6 +122,8 @@ case "$SYSTEM.$RELEASE" in
;; ;;
OpenBSD.3*) SYSTYPE=OPENBSD3 OpenBSD.3*) SYSTYPE=OPENBSD3
;; ;;
OpenBSD.4*) SYSTYPE=OPENBSD4
;;
ekkoBSD.1*) SYSTYPE=EKKOBSD1 ekkoBSD.1*) SYSTYPE=EKKOBSD1
;; ;;
NetBSD.1*) SYSTYPE=NETBSD1 NetBSD.1*) SYSTYPE=NETBSD1

View File

@ -1,4 +1,4 @@
.\" $NetBSD: postconf.5,v 1.8 2006/08/01 00:12:42 rpaulo Exp $ .\" $NetBSD: postconf.5,v 1.9 2006/08/27 00:47:08 rpaulo Exp $
.\" .\"
.TH POSTCONF 5 .TH POSTCONF 5
.SH NAME .SH NAME
@ -3021,6 +3021,10 @@ default is to report only the most serious problems. The paranoid
may wish to turn on the policy (UCE and mail relaying) and protocol may wish to turn on the policy (UCE and mail relaying) and protocol
error (broken mail software) reports. error (broken mail software) reports.
.PP .PP
NOTE: postmaster notifications may contain confidential information
such as SASL passwords or message content. It is the system
administrator's responsibility to treat such information with care.
.PP
The error classes are: The error classes are:
.IP "\fBbounce\fR (also implies \fB2bounce\fR)" .IP "\fBbounce\fR (also implies \fB2bounce\fR)"
Send the postmaster copies of the headers of bounced mail, and Send the postmaster copies of the headers of bounced mail, and
@ -7166,7 +7170,8 @@ message contains no To: or Cc: message header.
.SH unknown_address_reject_code (default: 450) .SH unknown_address_reject_code (default: 450)
The numerical Postfix SMTP server response code when a sender or The numerical Postfix SMTP server response code when a sender or
recipient address is rejected by the reject_unknown_sender_domain recipient address is rejected by the reject_unknown_sender_domain
or reject_unknown_recipient_domain restriction. or reject_unknown_recipient_domain restriction. The response is
always 450 in case of a temporary DNS error.
.PP .PP
Do not change this unless you have a complete understanding of RFC 821. Do not change this unless you have a complete understanding of RFC 821.
.SH unknown_client_reject_code (default: 450) .SH unknown_client_reject_code (default: 450)

View File

@ -1,4 +1,4 @@
/* $NetBSD: smtpd.c,v 1.16 2006/08/01 00:12:42 rpaulo Exp $ */ /* $NetBSD: smtpd.c,v 1.17 2006/08/27 00:47:09 rpaulo Exp $ */
/*++ /*++
/* NAME /* NAME
@ -2645,9 +2645,11 @@ static int data_cmd(SMTPD_STATE *state, int argc, SMTPD_TOKEN *unused_argv)
&& (state->proxy == 0 ? (++start, --len) == 0 : len == 1)) && (state->proxy == 0 ? (++start, --len) == 0 : len == 1))
break; break;
if (state->err == CLEANUP_STAT_OK) { if (state->err == CLEANUP_STAT_OK) {
if (var_message_limit > 0 && var_message_limit - state->act_size < len + 2) if (var_message_limit > 0 && var_message_limit - state->act_size < len + 2) {
state->err = CLEANUP_STAT_SIZE; state->err = CLEANUP_STAT_SIZE;
else { msg_warn("%s: queue file size limit exceeded",
state->queue_id ? state->queue_id : "NOQUEUE");
} else {
state->act_size += len + 2; state->act_size += len + 2;
if (out_record(out_stream, curr_rec_type, start, len) < 0) if (out_record(out_stream, curr_rec_type, start, len) < 0)
state->err = out_error; state->err = out_error;

View File

@ -1,4 +1,4 @@
/* $NetBSD: sys_defs.h,v 1.19 2006/07/19 01:35:40 rpaulo Exp $ */ /* $NetBSD: sys_defs.h,v 1.20 2006/08/27 00:47:09 rpaulo Exp $ */
#ifndef _SYS_DEFS_H_INCLUDED_ #ifndef _SYS_DEFS_H_INCLUDED_
#define _SYS_DEFS_H_INCLUDED_ #define _SYS_DEFS_H_INCLUDED_
@ -28,7 +28,7 @@
#if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \ #if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \
|| defined(FREEBSD5) || defined(FREEBSD6) \ || defined(FREEBSD5) || defined(FREEBSD6) \
|| defined(BSDI2) || defined(BSDI3) || defined(BSDI4) \ || defined(BSDI2) || defined(BSDI3) || defined(BSDI4) \
|| defined(OPENBSD2) || defined(OPENBSD3) \ || defined(OPENBSD2) || defined(OPENBSD3) || defined(OPENBSD4) \
|| defined(NETBSD1) || defined(NETBSD2) || defined(NETBSD3) \ || defined(NETBSD1) || defined(NETBSD2) || defined(NETBSD3) \
|| defined(EKKOBSD1) || defined(EKKOBSD1)
#define SUPPORTED #define SUPPORTED