summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-mail/dovecot/files')
-rw-r--r--net-mail/dovecot/files/digest-dovecot-1.0_alpha51
-rw-r--r--net-mail/dovecot/files/dovecot.init10
2 files changed, 7 insertions, 4 deletions
diff --git a/net-mail/dovecot/files/digest-dovecot-1.0_alpha5 b/net-mail/dovecot/files/digest-dovecot-1.0_alpha5
new file mode 100644
index 000000000000..ea0e08ee481d
--- /dev/null
+++ b/net-mail/dovecot/files/digest-dovecot-1.0_alpha5
@@ -0,0 +1 @@
+MD5 a3277835f04d73485ff5ce3cc3daeea7 dovecot-1.0.alpha5.tar.gz 1266342
diff --git a/net-mail/dovecot/files/dovecot.init b/net-mail/dovecot/files/dovecot.init
index b6f15295e8a5..54746cba5a9e 100644
--- a/net-mail/dovecot/files/dovecot.init
+++ b/net-mail/dovecot/files/dovecot.init
@@ -1,23 +1,25 @@
#!/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/net-mail/dovecot/files/dovecot.init,v 1.2 2004/07/14 23:49:56 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/files/dovecot.init,v 1.3 2005/12/14 23:32:08 uberlord Exp $
depend() {
need net
- after saslauthd
+ after saslauthd ldap slapd postgresql mysql
use logger
}
start() {
ebegin "Starting dovecot"
- start-stop-daemon --start --quiet --exec /usr/sbin/dovecot
+ start-stop-daemon --start --exec /usr/sbin/dovecot \
+ --pidfile /var/run/dovecot/master.pid
eend $?
}
stop() {
ebegin "Stopping dovecot"
- start-stop-daemon --stop --quiet --exec /usr/sbin/dovecot
+ start-stop-daemon --stop --exec /usr/sbin/dovecot \
+ --pidfile /var/run/dovecot/master.pid
eend $?
}