diff options
author | miwi <miwi@FreeBSD.org> | 2008-02-16 09:53:30 +0000 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-02-16 09:53:30 +0000 |
commit | d671cf8b5c03ff0920dd0f66be5cec12bcd3cc7e (patch) | |
tree | c38d0a9df348d10621f4ba488e06f9b590893b0d /mail | |
parent | 7b95c7b350b844ce6b8e086786c954fb8aaa83e3 (diff) | |
download | FreeBSD-ports-d671cf8b5c03ff0920dd0f66be5cec12bcd3cc7e.zip FreeBSD-ports-d671cf8b5c03ff0920dd0f66be5cec12bcd3cc7e.tar.gz |
The script processes mail log files that are to be passed to pflogsumm
or awstats disregarding the lines relating to the re-injection of
messages into postfix.
It is very useful for a postfix setup which uses amavis for virus filtering.
WWW: http://www.gufonero.com/postfix/prepflog.html
PR: ports/119646
Submitted by: Terry Sposato
Diffstat (limited to 'mail')
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/prepflog/Makefile | 25 | ||||
-rw-r--r-- | mail/prepflog/distinfo | 6 | ||||
-rw-r--r-- | mail/prepflog/pkg-descr | 7 |
4 files changed, 39 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index 1183a02..2d3cb6a 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -471,6 +471,7 @@ SUBDIR += postilion SUBDIR += prayer SUBDIR += premail + SUBDIR += prepflog SUBDIR += procmail SUBDIR += prom-wl SUBDIR += pronto diff --git a/mail/prepflog/Makefile b/mail/prepflog/Makefile new file mode 100644 index 0000000..eda665c --- /dev/null +++ b/mail/prepflog/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: prepflog +# Date created: 14 January 2008 +# Whom: Terry Sposato +# +# $FreeBSD$ +# + +PORTNAME= prepflog +PORTVERSION= 0.3 +CATEGORIES= mail +MASTER_SITES= http://www.gufonero.com/postfix/ +EXTRACT_SUFX= .tgz + +MAINTAINER= terry@sucked-in.com +COMMENT= Prepares logfiles in a sanitised format for pflogsumm and awstats + +PLIST_FILES= bin/prepflog + +NO_BUILD= yes +USE_PERL5= yes + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${PREFIX}/bin/${PORTNAME} + +.include <bsd.port.mk> diff --git a/mail/prepflog/distinfo b/mail/prepflog/distinfo new file mode 100644 index 0000000..10b4212 --- /dev/null +++ b/mail/prepflog/distinfo @@ -0,0 +1,6 @@ +MD5 (prepflog-0.3.tgz) = 28549d84742b99e1be3cd61516ce31bb +SHA256 (prepflog-0.3.tgz) = 7f13cc976717a84a2c3f185d76c3dddeb139265ca2e7b29d1453168b8f425140 +SIZE (prepflog-0.3.tgz) = 5601 +MD5 (pflogsumm-patch.diff) = a01235f6115ab8f563715e66f96cb29b +SHA256 (pflogsumm-patch.diff) = 8b1fcaac79145393a13178edb6993859cf2f75db89afd86d3c0089065c169244 +SIZE (pflogsumm-patch.diff) = 582 diff --git a/mail/prepflog/pkg-descr b/mail/prepflog/pkg-descr new file mode 100644 index 0000000..0afdead --- /dev/null +++ b/mail/prepflog/pkg-descr @@ -0,0 +1,7 @@ +The script processes mail log files that are to be passed to pflogsumm +or awstats disregarding the lines relating to the re-injection of +messages into postfix. + +It is very useful for a postfix setup which uses amavis for virus filtering. + +WWW: http://www.gufonero.com/postfix/prepflog.html |