summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoy Marples <uberlord@gentoo.org>2005-12-14 23:32:08 +0000
committerRoy Marples <uberlord@gentoo.org>2005-12-14 23:32:08 +0000
commite1887adab0177f106affd3386a987911d03bda91 (patch)
tree00e2b3679be60fb1c8b090f3d3fc7dc9dcdb498f /net-mail/dovecot/files
parentx86; version bump (#115582) (diff)
downloadhistorical-e1887adab0177f106affd3386a987911d03bda91.tar.gz
historical-e1887adab0177f106affd3386a987911d03bda91.tar.bz2
historical-e1887adab0177f106affd3386a987911d03bda91.zip
nopop3d USE flag changed to pop3d - I hate double negatives
sasl USE flag dropped as dovecot has its own internal version - no need to depend on cyrus-sasl maildir USE flag dropped as -mbox implies maildir kerberos USE flag added init script is now more robust and should start after all authenticators Oh yeah - new upstream version too ;) Package-Manager: portage-2.0.51.22-r3
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 $?
}