summaryrefslogtreecommitdiffstats
path: root/contrib/sendmail/src
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/sendmail/src')
-rw-r--r--contrib/sendmail/src/conf.c1
-rw-r--r--contrib/sendmail/src/headers.c1
-rw-r--r--contrib/sendmail/src/mci.c52
-rw-r--r--contrib/sendmail/src/sendmail.87
4 files changed, 7 insertions, 54 deletions
diff --git a/contrib/sendmail/src/conf.c b/contrib/sendmail/src/conf.c
index 66f80d6..654f52e 100644
--- a/contrib/sendmail/src/conf.c
+++ b/contrib/sendmail/src/conf.c
@@ -9,6 +9,7 @@
* forth in the LICENSE file which can be found at the top level of
* the sendmail distribution.
*
+ * $FreeBSD$
*/
#include <sendmail.h>
diff --git a/contrib/sendmail/src/headers.c b/contrib/sendmail/src/headers.c
index 892a2cf..ec0d376 100644
--- a/contrib/sendmail/src/headers.c
+++ b/contrib/sendmail/src/headers.c
@@ -9,6 +9,7 @@
* forth in the LICENSE file which can be found at the top level of
* the sendmail distribution.
*
+ * $FreeBSD$
*/
#include <sendmail.h>
diff --git a/contrib/sendmail/src/mci.c b/contrib/sendmail/src/mci.c
index 4ff7578..894c302 100644
--- a/contrib/sendmail/src/mci.c
+++ b/contrib/sendmail/src/mci.c
@@ -9,6 +9,7 @@
* forth in the LICENSE file which can be found at the top level of
* the sendmail distribution.
*
+ * $FreeBSD$
*/
#include <sendmail.h>
@@ -398,57 +399,6 @@ mci_get(host, m)
return mci;
}
-
-/*
-** MCI_CLOSE -- (forcefully) close files used for a connection.
-** Note: this is a last resort, usually smtpquit() or endmailer()
-** should be used to close a connection.
-**
-** Parameters:
-** mci -- the connection to close.
-** where -- where has this been called?
-**
-** Returns:
-** none.
-*/
-
-void
-mci_close(mci, where)
- MCI *mci;
- char *where;
-{
- bool dumped;
-
- if (mci == NULL)
- return;
- dumped = false;
- if (mci->mci_out != NULL)
- {
- if (tTd(56, 1))
- {
- sm_dprintf("mci_close: mci_out!=NULL, where=%s\n",
- where);
- mci_dump(sm_debug_file(), mci, false);
- dumped = true;
- }
- (void) sm_io_close(mci->mci_out, SM_TIME_DEFAULT);
- mci->mci_out = NULL;
- }
- if (mci->mci_in != NULL)
- {
- if (tTd(56, 1))
- {
- sm_dprintf("mci_close: mci_in!=NULL, where=%s\n",
- where);
- if (!dumped)
- mci_dump(sm_debug_file(), mci, false);
- }
- (void) sm_io_close(mci->mci_in, SM_TIME_DEFAULT);
- mci->mci_in = NULL;
- }
- mci->mci_state = MCIS_CLOSED;
-}
-
/*
** MCI_NEW -- allocate new MCI structure
**
diff --git a/contrib/sendmail/src/sendmail.8 b/contrib/sendmail/src/sendmail.8
index 2d0284a..65d37b0 100644
--- a/contrib/sendmail/src/sendmail.8
+++ b/contrib/sendmail/src/sendmail.8
@@ -724,13 +724,13 @@ collected statistics
/var/spool/mqueue/*
temp files
.SH SEE ALSO
-binmail(1),
mail(1),
-rmail(1),
syslog(3),
aliases(5),
mailaddr(7),
-rc(8)
+mail.local(8),
+rc(8),
+rmail(8)
.PP
DARPA
Internet Request For Comments
@@ -746,3 +746,4 @@ The
.B sendmail
command appeared in
4.2BSD.
+.\" $FreeBSD$
OpenPOWER on IntegriCloud