blob: 915e36a740e316ed35cd4e3d95a1cda8929c17f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/sbin/openrc-run
# Upper case variables are here only for backward compatibility.
: ${cfgfile:=${CONFIGFILE:-"/etc/dkimproxy/dkimproxy_in.conf"}}
: ${user:="root"} # root is default just for backward compatibility
: ${group:="$user"}
description="SMTP proxy that verifies signature on incoming messages"
command="/usr/sbin/dkimproxy.in"
command_args="--conf_file=$cfgfile ${command_args:-${OPTS:-}}"
command_background="yes"
pidfile="/run/$RC_SVCNAME.pid"
start_stop_daemon_args="--user $user --group $group"
required_files="$cfgfile"
depend() {
need net
before opensmtpd postfix smtpd
after firewall
}
|