blob: fce084360b03d702238fd24ba119afd32faaca8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: mps
# REQUIRE: LOGIN
#
# Add the following line to /etc/rc.conf to enable mps:
# mps_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable Missey POP3 Server.
#
. /etc/rc.subr
name="mps"
rcvar=mps_enable
load_rc_config $name
: ${mps_enable="NO"}
command="%%PREFIX%%/sbin/mps"
run_rc_command "$1"
|