blob: 1649f66da702c1da9c6c044e0a3d3139863a66d0 (
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 verifies signature on incomming messages"
depend() {
need net
after firewall
}
|