aboutsummaryrefslogtreecommitdiff
path: root/mail/opendkim/files/opendkim.init
blob: 237cec7415764ef0c95d7e86d58156c83b4b1285 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh /etc/rc.common

START=54
STOP=54
USE_PROCD=1

start_service() {
	chown opendkim.opendkim /etc/opendkim/*.private
	procd_open_instance
	procd_set_param command /usr/sbin/opendkim -f
	procd_set_param respawn
	procd_set_param file /etc/opendkim.conf
	procd_close_instance
}