#!/bin/sh

# 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="/usr/local/sbin/mps"

run_rc_command "$1"
