forked from pool/courier-imap
This commit is contained in:
parent
dc05804c3b
commit
b22e5aa305
@ -91,8 +91,11 @@ case "$1" in
|
|||||||
;;
|
;;
|
||||||
status)
|
status)
|
||||||
echo -n "Checking for Courier-IMAP (SSL)"
|
echo -n "Checking for Courier-IMAP (SSL)"
|
||||||
/sbin/checkproc -p $SSLPIDFILE /usr/sbin/courierlogger
|
/sbin/checkproc -k -p $PIDFILE /usr/sbin/courierlogger
|
||||||
rc_status -v
|
if [ $? -eq 7 ]; then
|
||||||
|
rc_failed 3
|
||||||
|
fi;
|
||||||
|
rc_status -v
|
||||||
;;
|
;;
|
||||||
probe)
|
probe)
|
||||||
test /etc/courier/imapd -nt $SSLPIDFILE && echo restart
|
test /etc/courier/imapd -nt $SSLPIDFILE && echo restart
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 22 08:53:39 CET 2007 - mskibbe@suse.de
|
||||||
|
|
||||||
|
- checkproc uses -p parameter not as specified in man page
|
||||||
|
(#230806)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Sep 11 13:05:45 CEST 2006 - tpatzig@suse.de
|
Mon Sep 11 13:05:45 CEST 2006 - tpatzig@suse.de
|
||||||
|
|
||||||
|
@ -79,8 +79,11 @@ case "$1" in
|
|||||||
;;
|
;;
|
||||||
status)
|
status)
|
||||||
echo -n "Checking for Courier-IMAP "
|
echo -n "Checking for Courier-IMAP "
|
||||||
/sbin/checkproc -p $PIDFILE /usr/sbin/courierlogger
|
/sbin/checkproc -k -p $PIDFILE /usr/sbin/courierlogger
|
||||||
rc_status -v
|
if [ $? -eq 7 ]; then
|
||||||
|
rc_failed 3
|
||||||
|
fi;
|
||||||
|
rc_status -v
|
||||||
;;
|
;;
|
||||||
probe)
|
probe)
|
||||||
test /etc/courier/imapd -nt $PIDFILE && echo restart
|
test /etc/courier/imapd -nt $PIDFILE && echo restart
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package courier-imap (Version 4.1.1)
|
# spec file for package courier-imap (Version 4.1.1)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
@ -15,8 +15,8 @@ BuildRequires: courier-authlib-devel fam-devel gcc-c++ libstdc++-devel openssl-
|
|||||||
URL: http://www.courier-mta.org/imap/
|
URL: http://www.courier-mta.org/imap/
|
||||||
Summary: An IMAP and POP3 Server for Maildir MTAs
|
Summary: An IMAP and POP3 Server for Maildir MTAs
|
||||||
Version: 4.1.1
|
Version: 4.1.1
|
||||||
Release: 5
|
Release: 29
|
||||||
License: GPL
|
License: GNU General Public License (GPL)
|
||||||
Conflicts: imap qpopper
|
Conflicts: imap qpopper
|
||||||
Group: Productivity/Networking/Email/Servers
|
Group: Productivity/Networking/Email/Servers
|
||||||
Obsoletes: %{name}-ldap
|
Obsoletes: %{name}-ldap
|
||||||
@ -175,6 +175,9 @@ exit 0
|
|||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%changelog -n courier-imap
|
%changelog -n courier-imap
|
||||||
|
* Mon Jan 22 2007 - mskibbe@suse.de
|
||||||
|
- checkproc uses -p parameter not as specified in man page
|
||||||
|
(#230806)
|
||||||
* Mon Sep 11 2006 - tpatzig@suse.de
|
* Mon Sep 11 2006 - tpatzig@suse.de
|
||||||
- Add Conflict to qpopper
|
- Add Conflict to qpopper
|
||||||
* Tue Aug 01 2006 - mskibbe@suse.de
|
* Tue Aug 01 2006 - mskibbe@suse.de
|
||||||
|
@ -90,8 +90,11 @@ case "$1" in
|
|||||||
;;
|
;;
|
||||||
status)
|
status)
|
||||||
echo -n "Checking for Courier-POP3 (SSL)"
|
echo -n "Checking for Courier-POP3 (SSL)"
|
||||||
/sbin/checkproc -p $SSLPIDFILE /usr/sbin/courierlogger
|
/sbin/checkproc -k -p $PIDFILE /usr/sbin/courierlogger
|
||||||
rc_status -v
|
if [ $? -eq 7 ]; then
|
||||||
|
rc_failed 3
|
||||||
|
fi;
|
||||||
|
rc_status -v
|
||||||
;;
|
;;
|
||||||
probe)
|
probe)
|
||||||
test /etc/courier/pop3d -nt $SSLPIDFILE && echo restart
|
test /etc/courier/pop3d -nt $SSLPIDFILE && echo restart
|
||||||
|
@ -76,8 +76,11 @@ case "$1" in
|
|||||||
;;
|
;;
|
||||||
status)
|
status)
|
||||||
echo -n "Checking for Courier-POP3 "
|
echo -n "Checking for Courier-POP3 "
|
||||||
/sbin/checkproc -p $PIDFILE /usr/sbin/courierlogger
|
/sbin/checkproc -k -p $PIDFILE /usr/sbin/courierlogger
|
||||||
rc_status -v
|
if [ $? -eq 7 ]; then
|
||||||
|
rc_failed 3
|
||||||
|
fi;
|
||||||
|
rc_status -v
|
||||||
;;
|
;;
|
||||||
probe)
|
probe)
|
||||||
test /etc/courier/pop3d -nt $PIDFILE && echo restart
|
test /etc/courier/pop3d -nt $PIDFILE && echo restart
|
||||||
|
Loading…
Reference in New Issue
Block a user