qar-bufo generates the Qmail assign and recipients file based on unix groups.
Unlike with qmail-pw2u, you don't need your users in /etc/passwd. They can be stored any where that a NSS module allows. Just make all users who send or recieve mail a member of a specific group, and that group will be used to generate the assign and recipients file. PR: ports/110114 Submitted by: Zane C. Bowers
This commit is contained in:
parent
419210ee8c
commit
650384b896
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=186979
4 changed files with 52 additions and 0 deletions
|
@ -463,6 +463,7 @@
|
|||
SUBDIR += pygmy
|
||||
SUBDIR += pymsgauth
|
||||
SUBDIR += pyzor
|
||||
SUBDIR += qar-bufo
|
||||
SUBDIR += qconfirm
|
||||
SUBDIR += qmHandle
|
||||
SUBDIR += qmail
|
||||
|
|
41
mail/qar-bufo/Makefile
Normal file
41
mail/qar-bufo/Makefile
Normal file
|
@ -0,0 +1,41 @@
|
|||
# New ports collection makefile for: qar-bufo
|
||||
# Date created: 8 March 2007
|
||||
# Whom: Zane C. Bowers
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= qar-bufo
|
||||
PORTVERSION= 1.3.1
|
||||
CATEGORIES= mail
|
||||
MASTER_SITES= http://cpan.org/authors/id/M/MW/MWCZANECB/
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
||||
EXTRACT_SUFX=
|
||||
EXTRACT_ONLY=
|
||||
|
||||
MAINTAINER= vvelox@vvelox.net
|
||||
COMMENT= qar-bufo generates the Qmail assign and recipients file based on unix groups.
|
||||
|
||||
USE_PERL5= yes
|
||||
NO_WRKSUBDIR= yes
|
||||
|
||||
MAN1= qar-bufo.1
|
||||
|
||||
PLIST_FILES= bin/qar-bufo
|
||||
|
||||
post-extract:
|
||||
@${CP} -v ${DISTDIR}/${DISTNAME} ${WRKSRC}
|
||||
|
||||
#nothing to configure
|
||||
do-configure:
|
||||
@${ECHO} -n
|
||||
|
||||
do-build:
|
||||
@${EXEC} pod2man --section=1 --release=${PORTVERSION} --name=${PORTNAME} --center="${PORTNAME} user guide" ${WRKSRC}/${DISTNAME} ${WRKSRC}/${PORTNAME}.1
|
||||
|
||||
do-install:
|
||||
@${CP} -v ${WRKSRC}/${DISTNAME} ${PREFIX}/bin/${PORTNAME}
|
||||
@${CP} -v ${WRKSRC}/${PORTNAME}.1 ${PREFIX}/man/man1/${PORTNAME}.1
|
||||
@${CHMOD} +x ${PREFIX}/bin/qar-bufo
|
||||
|
||||
.include <bsd.port.mk>
|
3
mail/qar-bufo/distinfo
Normal file
3
mail/qar-bufo/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (qar-bufo-1.3.1) = a68cb5a72a026033fdce9fe2e983e483
|
||||
SHA256 (qar-bufo-1.3.1) = 6fa008ab90beef8342978e667a834d0856e750a4fa930495ae9e5041f511c7e0
|
||||
SIZE (qar-bufo-1.3.1) = 16079
|
7
mail/qar-bufo/pkg-descr
Normal file
7
mail/qar-bufo/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
|||
qar-bufo generates the Qmail assign and recipients file based on unix groups.
|
||||
|
||||
Unlike with qmail-pw2u, you don't need your users in /etc/passwd. They can be
|
||||
stored any where that a NSS module allows.
|
||||
|
||||
Just make all users who send or recieve mail a member of a specific group, and
|
||||
that group will be used to generate the assign and recipients file.
|
Loading…
Reference in a new issue