]> git.pld-linux.org Git - packages/dovecot.git/commitdiff
- init and pam stuff
authorTomek Orzechowski <orzech@pld-linux.org>
Tue, 8 Jul 2003 12:36:00 +0000 (12:36 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    dovecot.init -> 1.1
    dovecot.pamd -> 1.1
    dovecot.sysconfig -> 1.1

dovecot.init [new file with mode: 0644]
dovecot.pamd [new file with mode: 0644]
dovecot.sysconfig [new file with mode: 0644]

diff --git a/dovecot.init b/dovecot.init
new file mode 100644 (file)
index 0000000..4e1a029
--- /dev/null
@@ -0,0 +1,64 @@
+#!/bin/sh
+# IMAP Daemon
+#
+# chkconfig:   345 80 20
+# description: IMAP Daemon
+
+# Source function library
+. /etc/rc.d/init.d/functions
+
+# Get network config
+. /etc/sysconfig/network
+
+# Get service config
+[ -f /etc/sysconfig/dovecot ] && . /etc/sysconfig/dovecot
+
+# Check that networking is up.
+if is_yes "${NETWORKING}"; then
+       if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
+               msg_network_down "Dovecot"
+               exit 1
+       fi
+else
+       exit 0
+fi
+
+RETVAL=0
+# See how we were called.
+case "$1" in
+  start)
+       # Check if the service is already running?
+       if [ ! -f /var/lock/subsys/dovecot ]; then
+               msg_starting "Dovecot"
+               daemon /usr/sbin/dovecot
+               RETVAL=$?
+               [ $RETVAL -eq 0 ] && touch /var/lock/subsys/dovecot
+       else
+               msg_already_running "Dovecot"
+               exit 1
+       fi
+       ;;
+  stop)
+       if [ -f /var/lock/subsys/dovecot ]; then
+               msg_stopping "Dovecot"
+               killproc dovecot
+               rm -f /var/lock/subsys/dovecot
+       else
+               msg_not_running "Dovecot"
+       fi
+       ;;
+  restart)
+       $0 stop
+       $0 start
+       exit $?
+       ;;
+  status)
+       status dovecot
+       exit $?
+       ;;
+  *)
+       msg_usage "$0 {start|stop|restart|force-reload|status}"
+       exit 3
+esac
+
+exit $RETVAL
diff --git a/dovecot.pamd b/dovecot.pamd
new file mode 100644 (file)
index 0000000..85438ed
--- /dev/null
@@ -0,0 +1,9 @@
+#%PAM-1.0
+auth           required        /lib/security/pam_listfile.so item=user sense=deny file=/etc/security/blacklist onerr=succeed
+auth           required        /lib/security/pam_listfile.so item=user sense=deny file=/etc/security/blacklist.imap onerr=succeed
+auth           required        /lib/security/pam_unix.so
+auth           required        /lib/security/pam_tally.so file=/var/log/faillog onerr=succeed no_magic_root
+auth           required        /lib/security/pam_nologin.so
+account                required        /lib/security/pam_tally.so deny=0 file=/var/log/faillog onerr=succeed no_magic_root
+account                required        /lib/security/pam_unix.so
+session                required        /lib/security/pam_unix.so
diff --git a/dovecot.sysconfig b/dovecot.sysconfig
new file mode 100644 (file)
index 0000000..3449370
--- /dev/null
@@ -0,0 +1,5 @@
+# Customized setings for dovecot
+
+# Define nice level for dovecot
+SERVICE_RUN_NICE_LEVEL="+0"
+
This page took 0.101258 seconds and 4 git commands to generate.