aboutsummaryrefslogtreecommitdiff
path: root/mail/dma/files/dma_flushq.in
blob: 44eb52ee795348f919032236a21774e5298e5e12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh

# PROVIDE: dma mail
# REQUIRE: LOGIN cleanvar
# KEYWORD: shutdown
#
# Add the following line to /etc/rc.conf to enable dma mailq flushing on
# startup or before shutdown:
# dma_flushq_enable (bool): Set it to "YES" to flush mailq on startup
#                           or before shutdown
#                           Default is "NO".
#

. /etc/rc.subr

name="dma_flushq"
rcvar=dma_flushq_enable

load_rc_config ${name}

: ${dma_flushq_enable:="NO"}

start_cmd=${name}
stop_cmd=${name}

dma_flushq() {
    %%PREFIX%%/libexec/dma -q
}

run_rc_command "$1"