From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 25 07:40:06 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 79336DD5 for ; Sun, 25 May 2014 07:40:06 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 665DE2747 for ; Sun, 25 May 2014 07:40:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4P7e6iD003267 for ; Sun, 25 May 2014 07:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4P7e6LL003266; Sun, 25 May 2014 07:40:06 GMT (envelope-from gnats) Date: Sun, 25 May 2014 07:40:06 GMT Message-Id: <201405250740.s4P7e6LL003266@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/184480: commit references a PR Reply-To: dfilter@FreeBSD.ORG (dfilter service) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2014 07:40:06 -0000 The following reply was made to PR ports/184480; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184480: commit references a PR Date: Sun, 25 May 2014 07:34:02 +0000 (UTC) Author: miwi Date: Sun May 25 07:33:58 2014 New Revision: 355135 URL: http://svnweb.freebsd.org/changeset/ports/355135 QAT: https://qat.redports.org/buildarchive/r355135/ Log: 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 PR: ports/184480 Submitted by: Uffe Jakobsen Added: head/mail/dot-forward/ head/mail/dot-forward/Makefile (contents, props changed) head/mail/dot-forward/distinfo (contents, props changed) head/mail/dot-forward/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Sun May 25 07:33:03 2014 (r355134) +++ head/mail/Makefile Sun May 25 07:33:58 2014 (r355135) @@ -94,6 +94,7 @@ SUBDIR += dkfilter SUBDIR += dkimproxy SUBDIR += dma + SUBDIR += dot-forward SUBDIR += dovecot SUBDIR += dovecot-antispam SUBDIR += dovecot-managesieve Added: head/mail/dot-forward/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/dot-forward/Makefile Sun May 25 07:33:58 2014 (r355135) @@ -0,0 +1,35 @@ +# Created by: Uffe Jakobsen +# $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 Added: head/mail/dot-forward/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/dot-forward/distinfo Sun May 25 07:33:58 2014 (r355135) @@ -0,0 +1,2 @@ +SHA256 (dot-forward-0.71.tar.gz) = 18086b59edf113aaeb02a770afb5429c3200e8637d06ce15094247416fc6e258 +SIZE (dot-forward-0.71.tar.gz) = 26352 Added: head/mail/dot-forward/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/dot-forward/pkg-descr Sun May 25 07:33:58 2014 (r355135) @@ -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 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"