mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 01:26:38 +02:00
renamed upstream to amavis development moved to gitlab.com add perl-mail-spamassassin to depends add -openrc subpackage
17 lines
274 B
Bash
17 lines
274 B
Bash
#!/sbin/openrc-run
|
|
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
name="amavisd"
|
|
command="/usr/sbin/$name"
|
|
command_args="-c /etc/amavisd.conf foreground"
|
|
command_background="yes"
|
|
|
|
start_stop_daemon_args="--user $user:$group"
|
|
|
|
depend() {
|
|
need net
|
|
use logger
|
|
use antivirus
|
|
before mta
|
|
}
|