diff options
author | mich <mich@FreeBSD.org> | 2003-08-22 13:33:50 +0000 |
---|---|---|
committer | mich <mich@FreeBSD.org> | 2003-08-22 13:33:50 +0000 |
commit | ec01a25cd6a2a96dad5a963604bff76e83c1b3e8 (patch) | |
tree | 9a9d3bdc3ff292327c91b8ddad2df899b463711c | |
parent | 4b1bff6d34c428669ae3ee56769d1b84189cf666 (diff) | |
download | FreeBSD-ports-ec01a25cd6a2a96dad5a963604bff76e83c1b3e8.zip FreeBSD-ports-ec01a25cd6a2a96dad5a963604bff76e83c1b3e8.tar.gz |
New port: Useful tool for sorting mbox style mailboxes after date.
PR: 55860
Submitted by: Lasse L. Johnsen <lasse@freebsdcluster.org>
Approved by: roberto (mentor)
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/sortmail/Makefile | 30 | ||||
-rw-r--r-- | mail/sortmail/distinfo | 1 | ||||
-rw-r--r-- | mail/sortmail/pkg-descr | 15 | ||||
-rw-r--r-- | mail/sortmail/pkg-plist | 3 |
5 files changed, 50 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index c276677..ce10520 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -304,6 +304,7 @@ SUBDIR += smtprc SUBDIR += smunge SUBDIR += solidpop3d + SUBDIR += sortmail SUBDIR += spamass-milter SUBDIR += spambnc SUBDIR += spamoracle diff --git a/mail/sortmail/Makefile b/mail/sortmail/Makefile new file mode 100644 index 0000000..aed0e98 --- /dev/null +++ b/mail/sortmail/Makefile @@ -0,0 +1,30 @@ +# Ports collection makefile for: sortmail +# Date created: Thu August 21, 2003 +# Whom: Lasse L. Johnsen (lasse@freebsdcluster.org) +# +# $FreeBSD$ +# + +PORTNAME= sortmail +PORTVERSION= 1.20 +CATEGORIES= mail +MASTER_SITES= http://www.freebsdcluster.org/~lasse/software/ \ + ${MASTER_SITE_LOCAL} + +MAINTAINER= lasse@freebsdcluster.org +COMMENT= Useful tool for sorting mbox style mailboxes after date + +NO_WRKSUBDIR= yes +MAN1= recomposemail.1 decomposemail.1 sortmail.1 +NO_BUILD= yes + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/recomposemail ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/decomposemail ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/sortmail ${PREFIX}/bin + + ${INSTALL_MAN} ${WRKSRC}/recomposemail.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/decomposemail.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/sortmail.1 ${PREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/mail/sortmail/distinfo b/mail/sortmail/distinfo new file mode 100644 index 0000000..e3a95e7 --- /dev/null +++ b/mail/sortmail/distinfo @@ -0,0 +1 @@ +MD5 (sortmail-1.20.tar.gz) = c37932c8056b8bf4c7dbeb4c61b5acc3 diff --git a/mail/sortmail/pkg-descr b/mail/sortmail/pkg-descr new file mode 100644 index 0000000..74b06bc --- /dev/null +++ b/mail/sortmail/pkg-descr @@ -0,0 +1,15 @@ +sortmail - sort email messages by date/time + +sortmail is a front end for decomposemail(1) and recom- +posemail(1). Each mailbox argument is disassembled into +its component messages, then these messages are reassem- +bled into new mailboxes based on command line selection +criteria. Some additional functionality is provided, such +as backup copies, recursion, etc. + +Software written by: Daniel E. Singer (a.k.a. Toolman) + +WWW: http://www.cs.duke.edu/~des/scripts/sortmail_article.html + + Lasse L. Johnsen + lasse@freebsdcluster.org diff --git a/mail/sortmail/pkg-plist b/mail/sortmail/pkg-plist new file mode 100644 index 0000000..4fb4a21 --- /dev/null +++ b/mail/sortmail/pkg-plist @@ -0,0 +1,3 @@ +bin/recomposemail +bin/decomposemail +bin/sortmail |