2
0
mirror of https://github.com/vdukhovni/postfix synced 2025-08-30 05:38:06 +00:00

postfix-1.1.12-20021202

This commit is contained in:
Wietse Venema 2002-12-02 00:00:00 -05:00 committed by Viktor Dukhovni
parent 713aa6b5ec
commit 1524f628fa
5 changed files with 43 additions and 5 deletions

View File

@ -7251,6 +7251,16 @@ Apologies for any names omitted.
SMTP clients. Files: smtp/smtp_connect.c, lmtp/lmtp_connect.c,
util/host_port.[hc].
20021201
Compatibility: ignore the new Sendmail -A option. File:
sendmail/sendmail.c.
Workaround: sendmail -v now produces no output. You need
to specify -v -v instead. This is to avoid problems when
people request verbose mail delivery in their mail.rc file.
File: sendmail/sendmail.c.
Open problems:
Low: revise other local delivery agent duplicate filters.

View File

@ -57,6 +57,13 @@ SENDMAIL(1) SENDMAIL(1)
The following options are recognized:
<b>-Am</b> (ignored)
<b>-Ac</b> (ignored)
Postfix sendmail uses the same configuration file
regardless of whether or not a message is an ini-
tial sumbission.
<b>-B</b> <i>body_type</i>
The message body MIME type: <b>7BIT</b> or <b>8BITMIME</b>.
@ -202,7 +209,9 @@ SENDMAIL(1) SENDMAIL(1)
<b>-v</b> Enable verbose logging for debugging purposes. Mul-
tiple <b>-v</b> options make the software increasingly
verbose.
verbose. For compatibility with mailx and other
mail submission software, a single <b>-v</b> option pro-
duces no output.
<b>SECURITY</b>
By design, this program is not set-user (or group) id.

View File

@ -55,6 +55,10 @@ appropriate combination of command-line options. Some features are
controlled by parameters in the \fBmain.cf\fR configuration file.
The following options are recognized:
.IP "\fB-Am\fR (ignored)"
.IP "\fB-Ac\fR (ignored)"
Postfix sendmail uses the same configuration file regardless of
whether or not a message is an initial sumbission.
.IP "\fB-B \fIbody_type\fR"
The message body MIME type: \fB7BIT\fR or \fB8BITMIME\fR.
.IP "\fB-C \fIconfig_file\fR (ignored :-)"
@ -171,7 +175,9 @@ Extract recipients from message headers. This requires that no
recipients be specified on the command line.
.IP \fB-v\fR
Enable verbose logging for debugging purposes. Multiple \fB-v\fR
options make the software increasingly verbose.
options make the software increasingly verbose. For compatibility
with mailx and other mail submission software, a single \fB-v\fR
option produces no output.
.SH SECURITY
.na
.nf

View File

@ -20,7 +20,7 @@
* Patches change the patchlevel and the release date. Snapshots change the
* release date only, unless they include the same bugfix as a patch release.
*/
#define MAIL_RELEASE_DATE "20021130"
#define MAIL_RELEASE_DATE "20021202"
#define VAR_MAIL_VERSION "mail_version"
#define DEF_MAIL_VERSION "1.1.12-" MAIL_RELEASE_DATE

View File

@ -49,6 +49,10 @@
/* controlled by parameters in the \fBmain.cf\fR configuration file.
/*
/* The following options are recognized:
/* .IP "\fB-Am\fR (ignored)"
/* .IP "\fB-Ac\fR (ignored)"
/* Postfix sendmail uses the same configuration file regardless of
/* whether or not a message is an initial sumbission.
/* .IP "\fB-B \fIbody_type\fR"
/* The message body MIME type: \fB7BIT\fR or \fB8BITMIME\fR.
/* .IP "\fB-C \fIconfig_file\fR (ignored :-)"
@ -165,7 +169,9 @@
/* recipients be specified on the command line.
/* .IP \fB-v\fR
/* Enable verbose logging for debugging purposes. Multiple \fB-v\fR
/* options make the software increasingly verbose.
/* options make the software increasingly verbose. For compatibility
/* with mailx and other mail submission software, a single \fB-v\fR
/* option produces no output.
/* SECURITY
/* .ad
/* .fi
@ -656,7 +662,7 @@ int main(int argc, char **argv)
optind++;
continue;
}
if ((c = GETOPT(argc, argv, "B:C:F:GIL:N:R:UV:X:b:ce:f:h:imno:p:r:q:tvx")) <= 0)
if ((c = GETOPT(argc, argv, "A:B:C:F:GIL:N:R:UV:X:b:ce:f:h:imno:p:r:q:tvx")) <= 0)
break;
switch (c) {
default:
@ -767,6 +773,13 @@ int main(int argc, char **argv)
}
}
/*
* Workaround: produce no output when verbose delivery is requested in
* mail.rc.
*/
if (msg_verbose > 0)
msg_verbose--;
/*
* Look for conflicting options and arguments.
*/