a736d8b744
Based on PR#44939 by Susumu Miwa. Modified by Makoto Fujiwawa and me in pkgsrc-wip. Quickml server provides very-easy-to-use mailing list service. It was too open in this age, some limitation is provided in this package. The original code is written by Satoru Takabayashi.
22 lines
438 B
Bash
22 lines
438 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: quickml.sh,v 1.1.1.1 2011/06/19 10:01:53 obache Exp $
|
|
#
|
|
# PROVIDE: quickml
|
|
# REQUIRE: LOGIN
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable this service:
|
|
#
|
|
# quickml=YES
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="quickml"
|
|
rcvar=$name
|
|
command="@PREFIX@/sbin/${name}"
|
|
command_interpreter="@RUBY@"
|
|
pidfile="@VARBASE@/run/${name}.pid"
|
|
required_files=@PKG_SYSCONFDIR@/quickmlrc
|
|
|
|
load_rc_config ${name}
|
|
run_rc_command "$1"
|