diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2014-05-25 07:33:58 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2014-05-25 07:33:58 +0000 |
commit | 5ffc2c172d9f612e75ea94e91d94af001e0a4294 (patch) | |
tree | 6211e0b59ba31bb477d7491f1c3dfc2e4d8a4d0f /mail/dot-forward | |
parent | af4d94b920851d83da5867c2839c3e4368b7ab09 (diff) |
Notes
Diffstat (limited to 'mail/dot-forward')
-rw-r--r-- | mail/dot-forward/Makefile | 35 | ||||
-rw-r--r-- | mail/dot-forward/distinfo | 2 | ||||
-rw-r--r-- | mail/dot-forward/pkg-descr | 11 |
3 files changed, 48 insertions, 0 deletions
diff --git a/mail/dot-forward/Makefile b/mail/dot-forward/Makefile new file mode 100644 index 000000000000..0d92e9e2e248 --- /dev/null +++ b/mail/dot-forward/Makefile @@ -0,0 +1,35 @@ +# Created by: Uffe Jakobsen <uffe@uffe.org> +# $FreeBSD$ + +PORTNAME= dot-forward +PORTVERSION= 0.71 +CATEGORIES= mail +MASTER_SITES= http://cr.yp.to/software/ + +MAINTAINER= uffe@uffe.org +COMMENT= Dot-forward reads sendmail's .forward files under qmail + +USES= gmake + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +ALL_TARGET= default + +PLIST_FILES= bin/dot-forward \ + man/man1/dot-forward.1.gz \ + man/cat1/dot-forward.0.gz + +do-install: +.for binfile in dot-forward + ${INSTALL_PROGRAM} ${WRKSRC}/${binfile} ${STAGEDIR}${PREFIX}/bin/${binfile} +.endfor + +.for manfile in dot-forward.1 + ${INSTALL_MAN} ${WRKSRC}/${manfile} ${STAGEDIR}${PREFIX}/man/man1/${manfile} +.endfor + +.for catfile in dot-forward.0 + ${INSTALL_MAN} ${WRKSRC}/${catfile} ${STAGEDIR}${MAN1PREFIX}/man/cat1/${catfile} +.endfor + +.include <bsd.port.mk> diff --git a/mail/dot-forward/distinfo b/mail/dot-forward/distinfo new file mode 100644 index 000000000000..b8bb34807788 --- /dev/null +++ b/mail/dot-forward/distinfo @@ -0,0 +1,2 @@ +SHA256 (dot-forward-0.71.tar.gz) = 18086b59edf113aaeb02a770afb5429c3200e8637d06ce15094247416fc6e258 +SIZE (dot-forward-0.71.tar.gz) = 26352 diff --git a/mail/dot-forward/pkg-descr b/mail/dot-forward/pkg-descr new file mode 100644 index 000000000000..8d7cd9a6f98f --- /dev/null +++ b/mail/dot-forward/pkg-descr @@ -0,0 +1,11 @@ +dot-forward reads sendmail's .forward files under qmail. +You can run it in the qmail startup script to support all +your existing .forward files automatically. +Individual users can switch to the .qmail mechanism at their leisure. + +dot-forward supports forwarding, program deliveries, and comments. +It does not support file deliveries or :include:. +(However, it recognizes file delivery attempts, +and defers delivery to give you a chance to set up a .qmail file.) + +WWW: http://cr.yp.to/dot-forward.html |