4a2c5ec38e
The milter-checkrcpt plugin can be used with the milter API of sendmail(8) to filter mails with invalid recipients. The validity of a recipient address is determined by querying another mail server over SMTP. ok ajacoutot@
28 lines
633 B
Makefile
28 lines
633 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/07/11 12:12:53 okan Exp $
|
|
|
|
COMMENT= sendmail milter plugin for recipient checking
|
|
|
|
DISTNAME= milter-checkrcpt-0.1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.benzedrine.cx/
|
|
|
|
HOMEPAGE= http://www.benzedrine.cx/milter-checkrcpt.html
|
|
|
|
MAINTAINER= Okan Demirmen <okan@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= c pthread milter
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/milter-checkrcpt ${PREFIX}/libexec
|
|
${INSTALL_MAN} ${WRKSRC}/milter-checkrcpt.8 ${PREFIX}/man/man8
|
|
|
|
.include <bsd.port.mk>
|