diff options
author | zuntum <zuntum@pkgsrc.org> | 2001-03-12 09:05:45 +0000 |
---|---|---|
committer | zuntum <zuntum@pkgsrc.org> | 2001-03-12 09:05:45 +0000 |
commit | 32cd19b5326ee23f5f5465d3767b9e7c1016db3f (patch) | |
tree | 661b8142d5ad7fc8992572a3a4a09c4bbd3dc380 | |
parent | 1a02489c1369d288ee0197f9712f7931dc0ff3a6 (diff) | |
download | pkgsrc-32cd19b5326ee23f5f5465d3767b9e7c1016db3f.tar.gz |
Initial import of qcheck.
This is a quick utility to check if there are new mails
on any un*x system running qmail with Maildir. It won't work
for someone running mailboxes in mbox format and I can't be
bothered to add that. Do it yourself if you need to support
this old and crappy format.
The responsible for that tool is my friend Stampel who told
me that my system sucked because it didn't display the number
of unread mails when logging in. Oh well, this just took 5
minutes to add.
-rw-r--r-- | mail/qcheck/Makefile | 20 | ||||
-rw-r--r-- | mail/qcheck/files/md5 | 3 | ||||
-rw-r--r-- | mail/qcheck/pkg/DESCR | 10 | ||||
-rw-r--r-- | mail/qcheck/pkg/PLIST | 2 |
4 files changed, 35 insertions, 0 deletions
diff --git a/mail/qcheck/Makefile b/mail/qcheck/Makefile new file mode 100644 index 00000000000..bf19df90625 --- /dev/null +++ b/mail/qcheck/Makefile @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/03/12 09:05:45 zuntum Exp $ +# + +DISTNAME= qcheck +PKGNAME= qcheck-1.0 +CATEGORIES= mail +MASTER_SITES= ftp://ftp.meanmachine.ch/pub/unix/qmail/ + +MAINTAINER= zuntum@netbsd.org +COMMENT= Text-only biff by David Gerber _with Maildir support_ + +NO_CONFIGURE= YES + +do-build: + ${CC} ${CFLAGS} ${WRKDIR}/qcheck/qcheck.c -o ${WRKDIR}/qcheck/qcheck + +do-install: + ${INSTALL_PROGRAM} ${WRKDIR}/qcheck/qcheck ${PREFIX}/bin/qcheck + +.include "../../mk/bsd.pkg.mk" diff --git a/mail/qcheck/files/md5 b/mail/qcheck/files/md5 new file mode 100644 index 00000000000..a042063e55d --- /dev/null +++ b/mail/qcheck/files/md5 @@ -0,0 +1,3 @@ +$NetBSD: md5,v 1.1.1.1 2001/03/12 09:05:45 zuntum Exp $ + +SHA1 (qcheck.tar.gz) = a2308bd8c79386f5f6f829a0bbff012e5d3e12d2 diff --git a/mail/qcheck/pkg/DESCR b/mail/qcheck/pkg/DESCR new file mode 100644 index 00000000000..f298dcd5a0c --- /dev/null +++ b/mail/qcheck/pkg/DESCR @@ -0,0 +1,10 @@ +This is a quick utility to check if there are new mails +on any un*x system running qmail with Maildir. It won't work +for someone running mailboxes in mbox format and I can't be +bothered to add that. Do it yourself if you need to support +this old and crappy format. + +The responsible for that tool is my friend Stampel who told +me that my system sucked because it didn't display the number +of unread mails when logging in. Oh well, this just took 5 +minutes to add. diff --git a/mail/qcheck/pkg/PLIST b/mail/qcheck/pkg/PLIST new file mode 100644 index 00000000000..acece7a3c43 --- /dev/null +++ b/mail/qcheck/pkg/PLIST @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2001/03/12 09:05:45 zuntum Exp $ +bin/qcheck |