You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/mail-filter/spambayes/files/spambayespop3proxy.rc

24 lines
705 B

#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/spambayes/files/spambayespop3proxy.rc,v 1.2 2004/07/14 22:29:23 agriffis Exp $
customize_ini=/etc/bayescustomize.ini
depend() {
need net
}
start() {
ebegin "Starting SpamBayes POP3 Proxy daemon"
export BAYESCUSTOMIZE="${customize_ini}"
start-stop-daemon --start --quiet --background --pidfile /var/run/spambayes.pid --make-pidfile --exec /usr/bin/sb_server.py
eend $?
}
stop() {
ebegin "Stopping SpamBayes POP3 Proxy daemon"
start-stop-daemon --stop --quiet --pidfile /var/run/spambayes.pid --name sb_server.py
eend $?
}