Subversion Repositories prayer

Compare Revisions

Ignore whitespace Rev 154 → Rev 155

/tags/1.3.5-dfsg1-2/debian/Config
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer-accountd.install
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer-accountd.8
File deleted
/tags/1.3.5-dfsg1-2/debian/copyright
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer.NEWS
File deleted
/tags/1.3.5-dfsg1-2/debian/README.Debian
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer-templates-dev.install
File deleted
/tags/1.3.5-dfsg1-2/debian/control
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer.links
File deleted
/tags/1.3.5-dfsg1-2/debian/compat
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer.postinst
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer.default
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer-accountd.docs
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer-templates-dev.README.Debian
File deleted
/tags/1.3.5-dfsg1-2/debian/patches/unbrand_cam_template.patch
File deleted
/tags/1.3.5-dfsg1-2/debian/patches/sighandling.patch
File deleted
/tags/1.3.5-dfsg1-2/debian/patches/makefile_install_config.patch
File deleted
/tags/1.3.5-dfsg1-2/debian/patches/unbrand_accountd.patch
File deleted
/tags/1.3.5-dfsg1-2/debian/patches/templates_fallback_to_compiled.patch
File deleted
/tags/1.3.5-dfsg1-2/debian/patches/series
File deleted
/tags/1.3.5-dfsg1-2/debian/patches/template_sdk.patch
File deleted
/tags/1.3.5-dfsg1-2/debian/patches/dlopen_templates.patch
File deleted
/tags/1.3.5-dfsg1-2/debian/patches/hurd.patch
File deleted
/tags/1.3.5-dfsg1-2/debian/patches/no_db_version_check.patch
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer.manpages
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer-accountd.lintian-overrides
File deleted
/tags/1.3.5-dfsg1-2/debian/source/format
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer.logrotate
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer-templates-dev.docs
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer.dirs
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer.init
File deleted
/tags/1.3.5-dfsg1-2/debian/watch
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer.install
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer-templates-src.docs
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer.examples
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer.postrm
File deleted
/tags/1.3.5-dfsg1-2/debian/changelog
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer-templates-src.install
File deleted
/tags/1.3.5-dfsg1-2/debian/prayer.docs
File deleted
/tags/1.3.5-dfsg1-2/debian/rules
File deleted
Property changes:
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: tags/1.3.5-dfsg1-2/debian/prayer-accountd.manpages
===================================================================
--- tags/1.3.5-dfsg1-2/debian/prayer-accountd.manpages (revision 154)
+++ tags/1.3.5-dfsg1-2/debian/prayer-accountd.manpages (nonexistent)
@@ -1 +0,0 @@
-debian/prayer-accountd.8
Index: tags/1.3.5-dfsg1-2/debian/prayer.lintian-overrides
===================================================================
--- tags/1.3.5-dfsg1-2/debian/prayer.lintian-overrides (revision 154)
+++ tags/1.3.5-dfsg1-2/debian/prayer.lintian-overrides (nonexistent)
@@ -1 +0,0 @@
-prayer: possible-gpl-code-linked-with-openssl
Index: tags/1.3.5-dfsg1-2/debian/prayer-accountd.init
===================================================================
--- tags/1.3.5-dfsg1-2/debian/prayer-accountd.init (revision 154)
+++ tags/1.3.5-dfsg1-2/debian/prayer-accountd.init (nonexistent)
@@ -1,72 +0,0 @@
-#!/bin/sh
-#
-### BEGIN INIT INFO
-# Provides: prayer-accountd
-# Required-Start: $local_fs $remote_fs
-# Required-Stop: $local_fs $remote_fs
-# Should-Start:
-# Should-Stop:
-# Default-Start: 2 3 4 5
-# Default-Stop: 0 1 6
-# Short-Description: Prayer account helper daemon
-# Description: Lets users change passwords, manage filters and other things not supported by IMAP itself
-### END INIT INFO
-
-PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
-DAEMON=/usr/sbin/prayer-accountd
-PIDFILE=/var/run/prayer-accountd.pid
-DESC="Prayer account helper server"
-
-test -x $DAEMON || exit 0
-
-egrep -iq "^[[:space:]]*accountd_port[[:space:]]*=[[:space:]]*[[:digit:]]+[[:space:]]*$" /etc/prayer/accountd.cf || exit 0
-
-. /lib/lsb/init-functions
-
-# Include prayer defaults if available
-if [ -f /etc/default/prayer-accountd ] ; then
- . /etc/default/prayer-accountd
-fi
-
-set +e
-
-start() {
- log_daemon_msg "Starting $DESC" "accountd"
- start-stop-daemon --start --background --make-pidfile --pidfile $PIDFILE \
- --exec $DAEMON -- $DAEMON_OPTS
- log_end_msg $?
-}
-
-stop() {
- log_daemon_msg "Stopping $DESC"
- if [ -f "$PIDFILE" ]; then
- start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE
- log_progress_msg "accountd"
- fi
- rm -f "$PIDFILE"
- log_end_msg 0
-}
-
-case "$1" in
- start)
- start
- ;;
-
- stop)
- stop
- ;;
-
- restart|force-reload)
- stop
- sleep 1
- start
- ;;
- *)
- N=/etc/init.d/prayer-accountd
- # echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
- log_failure_msg "Usage: $N {start|stop|restart|force-reload}" >&2
- exit 1
- ;;
-esac
-
-exit 0
Index: tags/1.3.5-dfsg1-2/debian
===================================================================
--- tags/1.3.5-dfsg1-2/debian (revision 154)
+++ tags/1.3.5-dfsg1-2/debian (nonexistent)
/tags/1.3.5-dfsg1-2/debian
Property changes:
Deleted: mergeWithUpstream
## -1 +0,0 ##
-1
\ No newline at end of property
Index: tags/1.3.5-dfsg1-2
===================================================================
--- tags/1.3.5-dfsg1-2 (revision 154)
+++ tags/1.3.5-dfsg1-2 (nonexistent)
/tags/1.3.5-dfsg1-2
Property changes:
Deleted: svn:mergeinfo
## -0,3 +0,0 ##
Reverse-merged /tags/1.2.2.1-1:r47-51
Reverse-merged /branches/lenny:r52-71
Reverse-merged /tags/1.2.2.1-7:r53-72