blob: 7e395412fc5d0b3d282e89b8ace0a348b27ce38c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/sbin/runscript
command="/usr/sbin/${RC_SVCNAME}"
command_args="${OPTS}"
pidfile="/var/run/${RC_SVCNAME}.pid"
description="SMTP proxy that signs outgoing messages"
depend() {
need net
after firewall
}
|