From fe3cfe167f61c46b1a0ae98a55c06ca7b8f376d1 Mon Sep 17 00:00:00 2001 From: "Fernando J. Pereda" Date: Tue, 7 Mar 2006 21:07:20 +0000 Subject: Add saslauthd to the init script, fixes bug #125376 (Portage version: 2.0.54) --- mail-mta/postfix/files/postfix.rc6.2.2.9 | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 mail-mta/postfix/files/postfix.rc6.2.2.9 (limited to 'mail-mta/postfix/files') diff --git a/mail-mta/postfix/files/postfix.rc6.2.2.9 b/mail-mta/postfix/files/postfix.rc6.2.2.9 new file mode 100644 index 000000000000..2e222ff47f7e --- /dev/null +++ b/mail-mta/postfix/files/postfix.rc6.2.2.9 @@ -0,0 +1,29 @@ +#!/sbin/runscript +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/files/postfix.rc6.2.2.9,v 1.1 2006/03/07 21:07:20 ferdy Exp $ + +opts="${opts} reload" + +depend() { + use logger dns ypbind amavisd mysql postgresql antivirus postfix_greylist net saslauthd + provide mta +} + +start() { + ebegin "Starting postfix" + /usr/sbin/postfix start &>/dev/null + eend $? +} + +stop() { + ebegin "Stopping postfix" + /usr/sbin/postfix stop &>/dev/null + eend $? +} + +reload() { + ebegin "Reloading postfix" + /usr/sbin/postfix reload &>/dev/null + eend $? +} -- cgit v1.2.3-65-gdbad