summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Faulhammer <opfer@gentoo.org>2007-03-27 05:47:24 +0000
committerChristian Faulhammer <opfer@gentoo.org>2007-03-27 05:47:24 +0000
commitc622795becc68466e6f99b7250f46fd6e56a9b97 (patch)
treebce968cf81ad7f35442f570a92560ffafe672815 /net-mail/dbmail/files
parentnet-mail/policyd-weight: moved over to portage (diff)
downloadsunrise-c622795becc68466e6f99b7250f46fd6e56a9b97.tar.gz
sunrise-c622795becc68466e6f99b7250f46fd6e56a9b97.tar.bz2
sunrise-c622795becc68466e6f99b7250f46fd6e56a9b97.zip
In Portage
svn path=/sunrise/; revision=3298
Diffstat (limited to 'net-mail/dbmail/files')
-rw-r--r--net-mail/dbmail/files/dbmail-2.2.4-removeversion.patch59
-rw-r--r--net-mail/dbmail/files/dbmail-imapd.initd40
-rw-r--r--net-mail/dbmail/files/dbmail-lmtpd.initd40
-rw-r--r--net-mail/dbmail/files/dbmail-pop3d.initd40
-rw-r--r--net-mail/dbmail/files/dbmail-timsieved.initd40
-rw-r--r--net-mail/dbmail/files/digest-dbmail-2.2.43
6 files changed, 0 insertions, 222 deletions
diff --git a/net-mail/dbmail/files/dbmail-2.2.4-removeversion.patch b/net-mail/dbmail/files/dbmail-2.2.4-removeversion.patch
deleted file mode 100644
index a08dd22cb..000000000
--- a/net-mail/dbmail/files/dbmail-2.2.4-removeversion.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-diff -ru dbmail-2.2.4.orig/imap4.c dbmail-2.2.4/imap4.c
---- dbmail-2.2.4.orig/imap4.c 2007-03-07 14:46:17.000000000 +0100
-+++ dbmail-2.2.4/imap4.c 2007-03-13 07:21:04.000000000 +0100
-@@ -115,8 +115,8 @@
-
- /* greet user */
- if (dbmail_imap_session_printf(session,
-- "* OK dbmail imap (protocol version 4r1) server %s "
-- "ready to run\r\n", IMAP_SERVER_VERSION) < 0) {
-+ "* OK imap (protocol version 4r1) server "
-+ "ready \r\n", IMAP_SERVER_VERSION) < 0) {
- dbmail_imap_session_delete(session);
- return EOF;
- }
-diff -ru dbmail-2.2.4.orig/imapcommands.c dbmail-2.2.4/imapcommands.c
---- dbmail-2.2.4.orig/imapcommands.c 2007-03-07 14:46:17.000000000 +0100
-+++ dbmail-2.2.4/imapcommands.c 2007-03-13 07:21:04.000000000 +0100
-@@ -115,7 +115,7 @@
- dbmail_imap_session_set_state(self,IMAPCS_LOGOUT);
- TRACE(TRACE_MESSAGE, "user (id:%llu) logging out @ [%s]", ud->userid, timestring);
-
-- dbmail_imap_session_printf(self, "* BYE dbmail imap server kisses you goodbye\r\n");
-+ dbmail_imap_session_printf(self, "* BYE\r\n");
-
- return 0;
- }
-diff -ru dbmail-2.2.4.orig/lmtp.c dbmail-2.2.4/lmtp.c
---- dbmail-2.2.4.orig/lmtp.c 2006-11-06 09:32:31.000000000 +0100
-+++ dbmail-2.2.4/lmtp.c 2007-03-13 07:21:04.000000000 +0100
-@@ -134,7 +134,7 @@
-
- if (ci->tx) {
- /* sending greeting */
-- ci_write(ci->tx, "220 %s DBMail LMTP service ready to rock\r\n", myhostname);
-+ ci_write(ci->tx, "220 %s LMTP service ready\r\n", myhostname);
- fflush(ci->tx);
- } else {
- TRACE(TRACE_MESSAGE, "TX stream is null!");
-diff -ru dbmail-2.2.4.orig/pop3.c dbmail-2.2.4/pop3.c
---- dbmail-2.2.4.orig/pop3.c 2007-02-26 09:23:25.000000000 +0100
-+++ dbmail-2.2.4/pop3.c 2007-03-13 07:21:04.000000000 +0100
-@@ -97,7 +97,7 @@
-
- if (ci->tx) {
- /* sending greeting */
-- fprintf(ci->tx, "+OK DBMAIL pop3 server ready to rock %s\r\n",
-+ fprintf(ci->tx, "+OK pop3 server ready\r\n",
- session.apop_stamp);
- fflush(ci->tx);
- } else {
-@@ -177,7 +177,7 @@
-
- /* if everything went well, write down everything and do a cleanup */
- db_update_pop(&session);
-- fprintf(ci->tx, "+OK see ya later\r\n");
-+ fprintf(ci->tx, "+OK bye\r\n");
- fflush(ci->tx);
- break;
-
diff --git a/net-mail/dbmail/files/dbmail-imapd.initd b/net-mail/dbmail/files/dbmail-imapd.initd
deleted file mode 100644
index 8f6984feb..000000000
--- a/net-mail/dbmail/files/dbmail-imapd.initd
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/sbin/runscript
-#
-
-PIDFILE="/var/run/dbmail-imapd.pid"
-
-depend() {
- need net
- use mysql
- use pgsql
- after mta
-}
-
-checkconfig() {
- if [ ! -e "/etc/dbmail/dbmail.conf" ]; then
- eerror "You need to create apropriate config"
- eerror "in /etc/dbmail/ . Example can be found in /etc/dbmail/dbmail.conf.dist"
- return 1
- fi
- # Avoid using root's TMPDIR
- unset TMPDIR
-}
-
-
-start() {
- checkconfig && \
- ebegin "Starting DBMail IMAP daemon"
- start-stop-daemon --start --quiet \
- --exec /usr/sbin/dbmail-imapd \
- --name dbmail-imapd \
- -- -p ${PIDFILE} -f /etc/dbmail/dbmail.conf 2>&1
- eend $?
-}
-
-stop() {
- ebegin "Stopping DBMail IMAP daemon"
- start-stop-daemon --stop --quiet --retry 5 \
- --pidfile ${PIDFILE}
- eend $?
-}
-
diff --git a/net-mail/dbmail/files/dbmail-lmtpd.initd b/net-mail/dbmail/files/dbmail-lmtpd.initd
deleted file mode 100644
index cea3da6dd..000000000
--- a/net-mail/dbmail/files/dbmail-lmtpd.initd
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/sbin/runscript
-#
-
-PIDFILE="/var/run/dbmail-lmtpd.pid"
-
-depend() {
- need net
- use mysql
- use pgsql
- after mta
-}
-
-checkconfig() {
- if [ ! -e "/etc/dbmail/dbmail.conf" ]; then
- eerror "You need to create apropriate config"
- eerror "in /etc/dbmail/ . Example can be found in /etc/dbmail/dbmail.conf.dist"
- return 1
- fi
- # Avoid using root's TMPDIR
- unset TMPDIR
-}
-
-
-start() {
- checkconfig && \
- ebegin "Starting DBMail LMTP daemon"
- start-stop-daemon --start --quiet \
- --exec /usr/sbin/dbmail-lmtpd \
- --name dbmail-lmtpd \
- -- -p ${PIDFILE} -f /etc/dbmail/dbmail.conf 2>&1
- eend $?
-}
-
-stop() {
- ebegin "Stopping DBMail LMTP daemon"
- start-stop-daemon --stop --quiet --retry 5 \
- --pidfile ${PIDFILE}
- eend $?
-}
-
diff --git a/net-mail/dbmail/files/dbmail-pop3d.initd b/net-mail/dbmail/files/dbmail-pop3d.initd
deleted file mode 100644
index 8c9e7b874..000000000
--- a/net-mail/dbmail/files/dbmail-pop3d.initd
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/sbin/runscript
-#
-
-PIDFILE="/var/run/dbmail-pop3d.pid"
-
-depend() {
- need net
- use mysql
- use pgsql
- after mta
-}
-
-checkconfig() {
- if [ ! -e "/etc/dbmail/dbmail.conf" ]; then
- eerror "You need to create apropriate config"
- eerror "in /etc/dbmail/ . Example can be found in /etc/dbmail/dbmail.conf.dist"
- return 1
- fi
- # Avoid using root's TMPDIR
- unset TMPDIR
-}
-
-
-start() {
- checkconfig && \
- ebegin "Starting DBMail POP3 daemon"
- start-stop-daemon --start --quiet \
- --exec /usr/sbin/dbmail-pop3d \
- --name dbmail-pop3d \
- -- -p ${PIDFILE} -f /etc/dbmail/dbmail.conf 2>&1
- eend $?
-}
-
-stop() {
- ebegin "Stopping DBMail POP3 daemon"
- start-stop-daemon --stop --quiet --retry 5 \
- --pidfile ${PIDFILE}
- eend $?
-}
-
diff --git a/net-mail/dbmail/files/dbmail-timsieved.initd b/net-mail/dbmail/files/dbmail-timsieved.initd
deleted file mode 100644
index 3fc4e047c..000000000
--- a/net-mail/dbmail/files/dbmail-timsieved.initd
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/sbin/runscript
-#
-
-PIDFILE="/var/run/dbmail-timsieved.pid"
-
-depend() {
- need net
- use mysql
- use pgsql
- after mta
-}
-
-checkconfig() {
- if [ ! -e "/etc/dbmail/dbmail.conf" ]; then
- eerror "You need to create apropriate config"
- eerror "in /etc/dbmail/ . Example can be found in /etc/dbmail/dbmail.conf.dist"
- return 1
- fi
- # Avoid using root's TMPDIR
- unset TMPDIR
-}
-
-
-start() {
- checkconfig && \
- ebegin "Starting DBMail SIEVE daemon"
- start-stop-daemon --start --quiet \
- --exec /usr/sbin/dbmail-timsieved \
- --name dbmail-timsieved \
- -- -p ${PIDFILE} -f /etc/dbmail/dbmail.conf 2>&1
- eend $?
-}
-
-stop() {
- ebegin "Stopping DBMail SIEVE daemon"
- start-stop-daemon --stop --quiet --retry 5 \
- --pidfile ${PIDFILE}
- eend $?
-}
-
diff --git a/net-mail/dbmail/files/digest-dbmail-2.2.4 b/net-mail/dbmail/files/digest-dbmail-2.2.4
deleted file mode 100644
index 5bc2668fb..000000000
--- a/net-mail/dbmail/files/digest-dbmail-2.2.4
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 b7f56437df764e7046438f81f4b7df18 dbmail-2.2.4.tar.gz 873538
-RMD160 06b9bf2ede178096d597a7291ca11075b612caa5 dbmail-2.2.4.tar.gz 873538
-SHA256 2fdf2f22e9d0437e8331d33a956f12ca85d7370651c943f09f8886e94a93f379 dbmail-2.2.4.tar.gz 873538