aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2022-11-14 08:06:10 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2022-11-14 08:08:37 +0000
commit616f32ea6da7f46eca5cbae757543bab45889791 (patch)
treed96e83efa7738096fc4b21bceb42560147793a18 /libexec
parent3a13b5ac83a100ebb5a0da0579e418f19b3b630b (diff)
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rc/rc.conf2
-rw-r--r--libexec/rc/rc.d/Makefile4
-rwxr-xr-xlibexec/rc/rc.d/othermta18
3 files changed, 0 insertions, 24 deletions
diff --git a/libexec/rc/rc.conf b/libexec/rc/rc.conf
index 50fed07df127..63832505eade 100644
--- a/libexec/rc/rc.conf
+++ b/libexec/rc/rc.conf
@@ -593,8 +593,6 @@ allscreens_kbdflags="" # Set this kbdcontrol mode for all virtual screens
### Mail Transfer Agent (MTA) options ######################
##############################################################
-mta_start_script="/etc/rc.sendmail"
- # Script to start your chosen MTA, called by /etc/rc.
# Settings for /etc/rc.d/sendmail:
sendmail_enable="NO" # Run the sendmail inbound daemon (YES/NO/NONE).
# If NONE, don't start any sendmail processes.
diff --git a/libexec/rc/rc.d/Makefile b/libexec/rc/rc.d/Makefile
index 0f0d87bdde80..36b86a6636d9 100644
--- a/libexec/rc/rc.d/Makefile
+++ b/libexec/rc/rc.d/Makefile
@@ -255,10 +255,6 @@ VAR_HEMIDAL= /var/heimdal
VAR_HEMIDAL_MODE= 700
.endif
-.if ${MK_MAIL} != "no"
-CONFS+= othermta
-.endif
-
.if ${MK_NS_CACHING} != "no"
_nscd= nscd
.endif
diff --git a/libexec/rc/rc.d/othermta b/libexec/rc/rc.d/othermta
deleted file mode 100755
index 36292ae3f7b7..000000000000
--- a/libexec/rc/rc.d/othermta
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-# PROVIDE: mail
-# REQUIRE: LOGIN
-
-# XXX - TEMPORARY SCRIPT UNTIL YOU WRITE YOUR OWN REPLACEMENT.
-#
-. /etc/rc.subr
-
-load_rc_config
-
-if [ -n "${mta_start_script}" ]; then
- [ "${mta_start_script}" != "/etc/rc.sendmail" ] && \
- sh ${mta_start_script} "$1"
-fi