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.
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>.
<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.
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 :-)"
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
* 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
/* 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 :-)"
/* 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
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:
}
}
+ /*
+ * Workaround: produce no output when verbose delivery is requested in
+ * mail.rc.
+ */
+ if (msg_verbose > 0)
+ msg_verbose--;
+
/*
* Look for conflicting options and arguments.
*/