summaryrefslogtreecommitdiff
blob: 11240ab0c5dfdebe2eb1c6a7b01727111f02a7d2 (plain)
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
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/mail-mta/qmail-ldap/files/qmail-control,v 1.2 2004/07/14 22:34:32 agriffis Exp $

opts="start stop restart reload"

start() {
    ebegin "Starting qmail mta ..."
    svc -u /var/qmail/supervise/*
    eend $?
    ebegin "Starting qmail mta logging ..."
    svc -u /var/qmail/supervise/*/log
    eend $?
}

stop() {
    ebegin "Stopping qmail mta ..."
    svc -d /var/qmail/supervise/*
    eend $?
    ebegin "Stopping qmail mta logging ..."
    svc -d /var/qmail/supervise/*/log
    eend $?
}

reload() {
    ebegin "Reloading 'locals' and 'virtualdomains' control files."
    svc -h /var/qmail/supervise/qmail-send
    eend $?
}