5923432800
* Add "foo_log" booleans to enable or disable logging (enabled by default). * Always run loggers as the "qmaill" user. This makes it simpler to define alternate loggers.
45 lines
1.2 KiB
Bash
45 lines
1.2 KiB
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: qmailqread.sh,v 1.6 2005/04/15 05:17:02 schmonz Exp $
|
|
#
|
|
# @PKGNAME@ script to control a service providing local non-root
|
|
# users access to see the queue. Adapted from a script by Steinar Haug.
|
|
#
|
|
|
|
# PROVIDE: qmailqread mail
|
|
# REQUIRE: qmailsend
|
|
|
|
name="qmailqread"
|
|
|
|
# User-settable rc.conf variables and their default values:
|
|
: ${qmailqread_log:="YES"}
|
|
: ${qmailqread_logcmd:="logger -t nb${name} -p mail.info"}
|
|
: ${qmailqread_nologcmd:="@LOCALBASE@/bin/multilog -*"}
|
|
|
|
if [ -f /etc/rc.subr ]; then
|
|
. /etc/rc.subr
|
|
fi
|
|
|
|
rcvar=${name}
|
|
command="@LOCALBASE@/bin/tcpserver"
|
|
procname=${name}
|
|
start_precmd="qmailqread_precmd"
|
|
|
|
qmailqread_precmd()
|
|
{
|
|
if [ -f /etc/rc.subr ]; then
|
|
checkyesno qmailqread_log || qmailqread_logcmd=${qmailqread_nologcmd}
|
|
fi
|
|
command="@SETENV@ - @LOCALBASE@/bin/argv0 @LOCALBASE@/bin/tcpserver ${name} -R -1 -u `@ID@ -u qmails` -g `@ID@ -g qmails` 127.0.0.1 20025 @LOCALBASE@/bin/qmail-qread 2>&1 | @LOCALBASE@/bin/setuidgid qmaill ${qmailqread_logcmd}"
|
|
command_args="&"
|
|
rc_flags=""
|
|
}
|
|
|
|
if [ -f /etc/rc.subr ]; then
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|
|
else
|
|
@ECHO_N@ " ${name}"
|
|
qmailqread_precmd
|
|
eval ${command} ${qmailqread_flags} ${command_args}
|
|
fi
|