diff options
author | ume <ume@FreeBSD.org> | 2001-04-12 19:06:31 +0000 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2001-04-12 19:06:31 +0000 |
commit | 4cdd8e3f6c60fe03be29ea8641a7c8dffd13dc0f (patch) | |
tree | c97733264c4ce83adaa0f17a2a60943cc5e3589f /mail/cyrus-imapd2/files | |
parent | 45d23dbc0ea7c12efbf38f0eeb56062a6bbbcfac (diff) | |
download | FreeBSD-ports-4cdd8e3f6c60fe03be29ea8641a7c8dffd13dc0f.zip FreeBSD-ports-4cdd8e3f6c60fe03be29ea8641a7c8dffd13dc0f.tar.gz |
Since imapd.conf is installed into ${PREFIX}/etc, mkimap should
refer ${PREFIX}/etc/imapd.conf
Diffstat (limited to 'mail/cyrus-imapd2/files')
-rw-r--r-- | mail/cyrus-imapd2/files/imapd.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/cyrus-imapd2/files/imapd.sh b/mail/cyrus-imapd2/files/imapd.sh index 5453fc5..5230d76 100644 --- a/mail/cyrus-imapd2/files/imapd.sh +++ b/mail/cyrus-imapd2/files/imapd.sh @@ -1,5 +1,8 @@ #!/bin/sh +# Start or stop cyrus-imapd +# $FreeBSD$ + case "$1" in start) if [ -x /usr/local/cyrus/bin/master -a \ @@ -11,7 +14,6 @@ start) ;; stop) kill `ps -U cyrus | awk '/master/ {print $1}'` && echo -n ' imapd' - echo -n ' imapd' ;; *) echo "Usage: `basename $0` {start|stop}" >&2 |